-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DirAccess.new() crashed Godot v4 #5
Comments
(do you mind chatting @ Discord ?) |
I'm very rarely on Discord tbh. You have a good point about res vs user, I never noticed as the project is basically constantly worked on and no one playtested before :P |
We can discuss a little @ Discord to prevent an influx of issue/ define a 'stressless' workflow? BTW: my interest is the computer generated scenes/meshes. And can give feedback on design patterns / singletons. |
DM me on Discord then - I'm on Godot engine server as Zireael#5759 I will be happy to help out with generating meshes, this is the part of this project I love the most |
I gave you access to a private repo of mine. So now I can reference a piece of code there :-p ... I do prefer Discord for that :-O |
res://car/replay_system.gd
usesvar dir = DirAccess.new()
which cannot be used.See https://docs.godotengine.org/en/latest/classes/class_diraccess.html
tries to make a directory in
res://
but should be 'user://' as it is runtime.See https://docs.godotengine.org/en/latest/tutorials/scripting/filesystem.html#user-path
The text was updated successfully, but these errors were encountered: