This repository has been archived on 2025-09-28. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
rectangular/levels/levels_def.gd

20 lines
357 B
GDScript3
Raw Normal View History

2024-10-16 20:23:53 +02:00
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)),
}