thank you for the clarification!
enjoy your weekend everyone
thank you for the clarification!
enjoy your weekend everyone
It’s nice to see something in the release notes knowing that you were involved in it:
Likely early staging. Maybe we’ll see a beta in the next 2-3 months?
Sometimes fixes or changes gets marked as live even when they’re not, for example this bug fix got marked as live even though it’s not rolled out yet. This can be very confusing and misleading especially since no Roblox engineer responded to the bug report of this issue in the devforum.
Also this fix appeared again on the release notes of version 630 even though it first appeared on the release notes of version 626.
I always love to see the new changes made to Roblox Studio. The teams have brought amazing features in the past months, and I look forward to the future!
I’m not really familiar with some terms within the coding community. What does this mean, and what are the possible benefits? I’m intrigued.
pretty sure it’s related to this one
Uh, so there’s an issue where if you join a Roblox game the textures and user interface appear low quality. I hope this gets fixed.
Here is an example:
Right now:
Normally:
You can see that the second image is a lot more clearer and of more quality than the first one. The textures on the characters are blurrier in the first image and so is the logo of the game which is a GUI.
Luau annotations has me the most excited out of all of this
I think this is dependent on your gpu and how much overload it has since guis render on gpu.
Attributes are a feature of Luau that allows you to add what’s essentially metadata to functions. You can read the RFC for it here but it’s a bit technical in nature. The idea is that you’ll be able to control things like the compiler and script analyzer a bit better using them.
The @native
attribute (proposed in this RFC) is the first of these attributes and it allows you to tell the compiler to make a specific function compile with ‘native code generation’. You don’t need to know the exact details, but the idea behind native code generation is that it will make code very fast by making it run directly on the CPU instead of inside the Luau interpreter.
Not every function benefits from native code generation though. It mostly impacts very math-heavy code. Even if the code doesn’t get anything from it though, it adds some extra memory usage and extra startup time to the code. So, it’s desirable to only natively compile the functions that actually benefit from it. Thus, @native
!
This is a fix for negative seed values basically not working on a majority of mobile devices: NextInteger always returning same number, despite different inputs (ONLY ON MOBILE)
Wasn’t that one fixed like, a month ago? I don’t recall when I submitted my bug report but it was definitively at least before 627
This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.