Version 2.15.0 is here!
-
Congratulations! Thank you for your work!
-
Great stuff! Asset folders are very welcome. I'm watching from my lunch break at work but am excited to check this all out. Hopefully my games still work! But nice to know there's support, as ever :)
-
Looks great and missiles still works :)
-
@LinkCraft I should hope so it's in the Showcase Gallery!
-
@Dave said in Version 2.15.0 is here!:
- Holding down the Enter key on the on-screen keyboard when entering a name for a new project will cause a minor UI & audio glitch
Note: It's not just in the New project UI. The same thing happens when using input() within a game...
-
@pianofire said in Version 2.15.0 is here!:
@LinkCraft I should hope so it's in the Showcase Gallery!
Too bad Twitter is blocked on my phone lol
I’ll probably see it in 7 hours 😀
#restrictiveparents -
Should we add bug reports in this thread, or in a separate one?
-
Let's keep bug reporting here: https://fuzearena.com/forum/category/8/bug-reporting but tag them as 2.15.0
-
I just got home from school and I found the showcase gallery. Why can’t we have all the submitted games show up like this?
-
The Show Case games will also appear on the Fuze Player so there has to be some quality control. We do intend to add a lot more games to it though
-
So it will have more then 9 games at a time at some point?
-
I had some weird bug with the camera in 3D space where the screen turned black at a certain angle; I wanted to post about it but then you just casually dropped the update and the bug is gone now
proves how important even the smaller fixes are! -
Good update. I'm particularly enjoying the new game included as a sample program. Amazing what can be achieved in professional hands! The update seems to have restored some files I previously deleted, so are files never truly deleted? On a loosely related topic, I was trying to free up some space on my Switch the other day and I noticed my save file is exactly the same size as my son's despite us having made and downloaded different programs. Does this mean there is a fixed amount of space for user programs and we will eventually fill it?
-
I can second @CasualTie5 's report: 3D objects that previously disappeared based on camera angle, stay visible now!
I am also enjoying the folder-organized assets and Showcase Gallery!
Thank you, FUZE team!
-
@Richard I think it's a fixed INITIAL size.
-
I've mentioned it on Discord but I think this needs to be mentioned on the forum:
In FUZE 0.2.14 sometimes you would assign to a variable by reference, and sometimes by value. Sometimes it would appear consistent by reference and sometimes it would appear consistent by value.
In FUZE 2.15 it appears to be always consistent by value. For example:
data = [.val = 1] copy = data copy.val = 2 print(data.val, " ", copy.val) // prints "1 2" update() sleep(100)
I think this example would have printed "2 2" most of the time in 0.2.14, but would sometimes print "2 2" anyway.
So I think this will be a breaking change for some programs, and I'm doubting that there is an easy fix for every situation. In any case, I think it deserves a mention in the https://fuzearena.com/forum/topic/1245/2-15-potentially-breaking-changes threat?
-
Can't edit my original post, but obviously I meant one of the "2 2" to be "1 2"
-
@PB____ ...and in 2.15 it prints ”1 2”?
-
@vinicity yes, that's what I'm seeing