-
Notifications
You must be signed in to change notification settings - Fork 0
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
Feat/add decipher shop #21
base: main
Are you sure you want to change the base?
Conversation
assets/UI/energy_orb.png.import
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
*.import files even uit de PR halen, we hebben die in .gitignore gestoken
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Aha check
var decode_ui = get_node("/root/Main/Combat/UI/DecodeUI") | ||
if decode_ui and decode_ui.visible: | ||
var decode_ui = get_node_or_null("/root/Main/Combat/UI/DecodeUI") | ||
if decode_ui and decode_ui.visible and decode_ui.has_method("update_points"): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
De decode_ui best ook nog even in de UI folder steken, i.p.v. rechtstreeks in de scripts folder. Ik ben aan het proberen om geen .gd files meer rechtstreeks onder de scripts folder te hebben staan.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
check
No description provided.