Open CarpenterBlue opened 1 day ago
This is very similar to Source engine's point entity system. While I like working with them in the Hammer editor, I'm not sure Godot needs this out of the box. Most games can likely make do with Marker nodes instead, or just Node if it's something that doesn't need a position in the level. You'd also need to support both 2d and 3d for completeness.
Can you explain Source's point entity system? How does it differ? How is it similar?
You'd also need to support both 2d and 3d for completeness.
I considered that but in 3D it's much less of a problem since things don't really overlap all that often.
Markers could have different render modes like in Blender:
Would help if you could choose a picture for 2d nodes (which would cover this proposal) and a mesh for 3d nodes (I believe unreal engine has that because I remember cameras being drawn as complex shaded meshes)
Would also be very useful if one of those draw modes was "Node Name" which would draw a label with the node's name, I loved that in Unity:
Describe the project you are working on
Horror sidescroller, a point and click adventure game to promote a webcomic. The game is groundhog day loop mostly happening in a single room with small changes happening depending on the player's actions.
Describe the problem or limitation you are having in your project
I have moderately large main scene with ton of sprites and other nodes everywhere. Lot of semi transparent overlays and Area2D's and Other Physics Objects. The tree is basically useless for navigation now because it is so large and sprawling, currently, the only remedy is use the editor's 2D view to locate the nodes visually however that is now growing also hard to do when lot of the logic nodes are blocked by semi transparent overlays sprites and CollisionShapes.
What you can't see is a Shader overlay that slowly colorshifts the hue of parts of the scene, several control nodes that serve as clickable areas. All of these are in the way.
Describe the feature / enhancement and how it helps to overcome the problem or limitation
What is a
LogicNode
?This will ensure that making logic for the game never becomes overwhelming battle against million nodes.
Describe how your proposal will work, with code, pseudo-code, mock-ups, and/or diagrams
If this enhancement will not be used often, can it be worked around with a few lines of script?
No this proposal requires to add new selection tool, possibly extend Sprite2D to hide when the game is Run. That is already non-trivial amount of code, especially if you realize it's boilerplate you have to do each project. It would require custom editor plugin.
Is there a reason why this should be core and not an add-on in the asset library?
This is currently a major usability issue in Godot, un-adressed hole in the user experience and something likely even simple projects face.