this post was submitted on 01 Oct 2023
10 points (100.0% liked)
Godot
5894 readers
41 users here now
Welcome to the programming.dev Godot community!
This is a place where you can discuss about anything relating to the Godot game engine. Feel free to ask questions, post tutorials, show off your godot game, etc.
Make sure to follow the Godot CoC while chatting
We have a matrix room that can be used for chatting with other members of the community here
Links
Other Communities
- !inat@programming.dev
- !play_my_game@programming.dev
- !destroy_my_game@programming.dev
- !voxel_dev@programming.dev
- !roguelikedev@programming.dev
- !game_design@programming.dev
- !gamedev@programming.dev
Rules
- Posts need to be in english
- Posts with explicit content must be tagged with nsfw
- We do not condone harassment inside the community as well as trolling or equivalent behaviour
- Do not post illegal materials or post things encouraging actions such as pirating games
We have a four strike system in this community where you get warned the first time you break a rule, then given a week ban, then given a year ban, then a permanent ban. Certain actions may bypass this and go straight to permanent ban if severe enough and done with malicious intent
Wormhole
Credits
- The icon is a modified version of the official godot engine logo (changing the colors to a gradient and black background)
- The banner is from Godot Design
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Had to look up how to do that, as apparently the docs don't have that kind of information. I did come across this SO question. So, the solution would be:
And that would create this new, readily accessible class throughout the project, correct?
@ICastFist also yes, the docs aren't that great at providing info on this in the reference.
There *is* a good page in the manual, however: https://docs.godotengine.org/en/stable/tutorials/scripting/gdscript/static_typing.html
OP @Bezier you probably want to check this out if you haven't found it already by now, specifically the "Custom variable types" section.
@ICastFist more or less, but you still probably want your Anchor to extend something, be it Object, Node, Node2D, Control, etc.
If your anchors are going to be part of the scene tree, as in you're adding them as node children of (an)other node(s), then you will need to at least extend
Node
. If you want your anchors to have a position, then Node2D (or 3D depending on how you need it to behave). If your anchors are part of your ui, then Control might directly be the best, and so on.If your anchors are not going to be part of the tree itself, but just stored and/or passed around by nodes as data, I would encourage you to give this page of the docs a read: https://docs.godotengine.org/en/stable/tutorials/best_practices/node_alternatives.html
Thanks for that link, I now have learned why it didn't originally work (and that other features like reference counting aren't employed by default!).
The solution, if anyone needs this in the future:
It adds namespace pollution, but I'll deal with it by prefixing it with the original script's class.
@Bezier yeah it's good to know about the differences between Object and RefCounted when you're making custom data containers.
Personally, I've been suffixing my custom/"game object" resources with "-Rs", as in I have
PlayerRs
,FileRs
,DownloadRs
, etc.The namespace pollution is definitely part of the trade-off from just preloading wherever you need the class.