#need help with scene/level setup

1 messages · Page 1 of 1 (latest)

exotic geode
#

im severely dum and have no clue what i should be doing to get different levels/scenes to show up and load and i just kinda dont understand how scenes work that much... please forgive me if this is the stupidest question known to man (i really suck at searching the correct things and names so i kinda dont know what to look up to even get the answer i need.)

civic spear
#

There's no set workflow.
Since a "level" could be anything from a bunch of Sprites to a whole set of light occluders and collision.

But generally you'd want to respect the Objet Oriented Programming aspect of Godot and encapsulate your stuff.

Make the player its own scene, make enemies their own scene, make the geometry of the level its own scene, etc.
Maybe split that geometry in smaller scenes so you can re use it later.

Then you can have a "main" scene where you add the level and characters by "isntancing" their scenes onto the main one.
By instancing you basically make a copy that updates when the original does.

hollow hinge
exotic geode
#

thank you to both of you

#

didnt expect this quick of a response

exotic geode