Buildbox 3.0.2 Beta 2 #3243

Discussion in 'Official Announcements' started by Sean Buildbox, Oct 9, 2019.

  1. volcank

    volcank Serious Boxer

    Joined:
    Oct 8, 2015
    Messages:
    794
    Likes Received:
    391
    Hi @Sean Buildbox Can you give a little bit pre info on easy ad integration if possible. Like which ad networks will be added and will we be able to use rewarded ads with all of them individually or will we again be have to integrate some kind of mediation to use rewarded ads.
    Thank you
     
  2. Sean Buildbox

    Sean Buildbox Serious Boxer

    Joined:
    Sep 24, 2015
    Messages:
    902
    Likes Received:
    1,076
    I can't say right now exactly which networks will be included quite yet. We will announce this very soon so stay tuned. I can confirm it will work easily with monetization nodes/rewarded videos ;)
     
    itzonator, volcank and sebb121 like this.
  3. Jaro

    Jaro Avid Boxer

    Joined:
    Sep 21, 2018
    Messages:
    387
    Likes Received:
    126
    Is there any plan to replace Heyzap with something working in 2.3.8 ??
     
  4. Ivan Perfetti

    Ivan Perfetti Avid Boxer

    Joined:
    Sep 9, 2018
    Messages:
    203
    Likes Received:
    181
    Hi, I don't know if that may be your case but I've experienced similar problems, even with purchased models and sometimes it depended on the model quality. Sometimes models contains errors you can fix. A useful tool to fix/repair is Meshlab, free and open source: http://www.meshlab.net/
     
  5. volcank

    volcank Serious Boxer

    Joined:
    Oct 8, 2015
    Messages:
    794
    Likes Received:
    391
    Thanks a lot @Sean Buildbox knowing there will be rewarded ads is great news.
     
    Hue Buildbox and Sean Buildbox like this.
  6. Hue Buildbox

    Hue Buildbox Administrator Staff Member

    Joined:
    May 11, 2017
    Messages:
    455
    Likes Received:
    208
    I've never had any issues importing obj's from Blender. But like Ivan said, it must be free of errors.
    2019-11-04_23h06_47.png Here's an example w/objects that have holes in it, which was exported from Blender then dragged into Buildbox.
     
    Sean Buildbox likes this.
  7. shahar.m192

    shahar.m192 Avid Boxer

    Joined:
    Oct 7, 2018
    Messages:
    204
    Likes Received:
    44
    Thank you guys for the reply will check those things
     
  8. B. Victor Cha

    B. Victor Cha Boxer

    Joined:
    Feb 24, 2019
    Messages:
    3
    Likes Received:
    0
    I can't wait to see upcoming Master Collection 2.0, which has been shown as Coming Soon for a couple of months. Would you tell us when Master Collection 2.0 would be released?
     
  9. Sean Buildbox

    Sean Buildbox Serious Boxer

    Joined:
    Sep 24, 2015
    Messages:
    902
    Likes Received:
    1,076
    Master Collection 2.0 we've sold previously. There are updates coming to it and different ways to purchase/acquire them than in the past. We'll have more announcements regarding this soon
     
    Hue Buildbox likes this.
  10. volcank

    volcank Serious Boxer

    Joined:
    Oct 8, 2015
    Messages:
    794
    Likes Received:
    391
    Hi @Sean Buildbox GameCenter doesn't seem to be working. I tried Points collected and also Coins Collected. (Changed the Add Point Node to Coin Setup so that works fine) but either way it doesn't register points to Gamecenter. GameCenter btw log ins without a problem but the score is always 0 no matter what happens. Also I am using the previouse versiob of BB3 which is #3194 just to let you know but I am sure problem still is also in this one since Game Center was not mentioned in the list of this new update. I would appreciate if there is a way to connect the gamecenter. Thank you.
     
  11. menanche

    menanche Boxer

    Joined:
    Nov 1, 2018
    Messages:
    57
    Likes Received:
    21
    Fit to width does not work! (Project Settings Menu)
    This is necessary for my game, could it be a priority for 3.0.2. final?
    A very big problem comes with a phone like the iphone 11 pro, because of the zoom, it literally cuts out 10% of the game, on the sides.

    picture 1 -> http://prnt.sc/ptcznr
    picture 2 -> http://prnt.sc/ptd2a3
    picture 3 -> http://prnt.sc/ptd2kz
    [​IMG]
     
    Last edited: Nov 6, 2019
  12. Tars Tarkas

    Tars Tarkas Avid Boxer

    Joined:
    Jul 17, 2018
    Messages:
    303
    Likes Received:
    228
    It does not work. It only works for UI elements. It keeps the same height. Move the camera till your happy with all screens. That's what I do. But sometimes this does not help either. Bummer
     
  13. menanche

    menanche Boxer

    Joined:
    Nov 1, 2018
    Messages:
    57
    Likes Received:
    21
    Yep. If I set it to work for 16: 9 then it doesn't look nice for 20: 9 and vice versa.
    Somehow I hope this fixes ..
     
  14. Sean Buildbox

    Sean Buildbox Serious Boxer

    Joined:
    Sep 24, 2015
    Messages:
    902
    Likes Received:
    1,076
    Currently the Screen Adjustment Settings are mainly for UI elements in Buildbox 3. We're working on ways to help 3D with different aspect ratios but currently critical design is needed
     
  15. menanche

    menanche Boxer

    Joined:
    Nov 1, 2018
    Messages:
    57
    Likes Received:
    21
    I found a solution for this. It's not very fluid, but it works.
    Go from portrait to landscape mode, then rotate the camera 90% (around its axis, second button at the top right of the editor scene). Now the height is the width and vice versa ..
    It should only be done before export .. so as not to interfere while making the game.
     
    Last edited: Nov 8, 2019
    Sean Buildbox likes this.
  16. particles

    particles Avid Boxer

    Joined:
    Aug 31, 2018
    Messages:
    337
    Likes Received:
    242
    Hi @Sean Buildbox,

    Supporting Haptic Feedback for devices older than iPhone 7.

    As I reported this earlier, BB3's Haptic Feedback is working from iPhone 7 onwards. So it is not working in my iPhone 6s.
    But games developed in Unity's Haptic Feedback is also working for iPhone 6s.

    To fix this issue in BB3, need to add the following method. So that it will work on all devices. Unity must be done similar method internally to support all devices.


    UIDevice.currentDevice().valueForKey("_feedbackSupportLevel");
    it returns 2 for devices with haptic feedback - iPhone 7/7+ so you can easily use this to generate Haptic feedback:

    let generator =UIImpactFeedbackGenerator(style:.heavy)
    generator.prepare()
    generator.impactOccurred()
    returns 1 for iPhone 6S, here's a fallback to generate taptic:

    importAudioToolbox

    AudioServicesPlaySystemSound(1519)// Actuate `Peek` feedback (weak boom)
    AudioServicesPlaySystemSound(1520)// Actuate `Pop` feedback (strong boom)
    AudioServicesPlaySystemSound(1521)// Actuate `Nope` feedback (series of three weak booms)
    and returns 0 for iPhone 6 or older devices.

    More details: http://www.mikitamanko.com/blog/2017/01/29/haptic-feedback-with-uifeedbackgenerator/
     
    Last edited: Nov 11, 2019
  17. Ivan Perfetti

    Ivan Perfetti Avid Boxer

    Joined:
    Sep 9, 2018
    Messages:
    203
    Likes Received:
    181
    Hi @Sean Buildbox , I've just realized the version I'm using is B#3252, this the one which can be downloaded right now.
    Is there any relevant difference between this and B#3243 published one month ago? Maybe I missed a post? Thanks.
     
  18. shahar.m192

    shahar.m192 Avid Boxer

    Joined:
    Oct 7, 2018
    Messages:
    204
    Likes Received:
    44
    Any news for upcoming beta or something?
     
  19. particles

    particles Avid Boxer

    Joined:
    Aug 31, 2018
    Messages:
    337
    Likes Received:
    242
    Issue:
    Lable inside an Asset in World is always sorted on Top, need to be sorted based on where that asset positioned inside the Scene.
     
  20. Sean Buildbox

    Sean Buildbox Serious Boxer

    Joined:
    Sep 24, 2015
    Messages:
    902
    Likes Received:
    1,076
    See latest update in Official Announcements. 3252 if officially 3.0.2 now.

    Is this in 3.0.2 #3252 as well? Will DM you
     

Share This Page