You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I cannot recreate the following gdscript code in rust: @export_range(0, 10000, 1, "or_greater", "suffix:ms") var delay: int = 1000
Specifically this part __________________________^^^^^^^
I have tried to find how to do this in the documentation, but it is very empty, devoid of examples and still very unhelpful right now.
Is there a way to support this? Maybe something like this? #[export(range=(0,1000,1,or_greater), suffix="ms")]
But I hope you understand I have no clue exactly how attributes work or how this feature could be implemented.
The text was updated successfully, but these errors were encountered:
I cannot recreate the following gdscript code in rust:
@export_range(0, 10000, 1, "or_greater", "suffix:ms") var delay: int = 1000
Specifically this part __________________________^^^^^^^
I have tried to find how to do this in the documentation, but it is very empty, devoid of examples and still very unhelpful right now.
Is there a way to support this? Maybe something like this?
#[export(range=(0,1000,1,or_greater), suffix="ms")]
But I hope you understand I have no clue exactly how attributes work or how this feature could be implemented.
The text was updated successfully, but these errors were encountered: