many small changes, and few big ones

This commit is contained in:
ChaoticByte 2024-10-16 20:23:53 +02:00
parent e8985f4e79
commit a3ca623258
No known key found for this signature in database
32 changed files with 391 additions and 247 deletions

19
levels/levels_def.gd Normal file
View file

@ -0,0 +1,19 @@
extends Node
const SCENES = {
"menu": "uid://bqmpoix37kutp",
"intro": "uid://c6w7lrydi43ts",
"test": "uid://dqf665b540tfg",
}
var ENTRYPOINTS = {
"intro_start": LevelsCore.Entrypoint.new(
"intro",
Vector2(-1440, 56),
false, Vector2.ZERO,
true),
"test": LevelsCore.Entrypoint.new(
"test",
Vector2(1680, 200),
false, Vector2(0, -500)),
}