└── addons └── GodotECS ├── Packer ├── bytes.gd ├── bytes.gd.uid ├── pack.gd ├── pack.gd.uid ├── packer.gd └── packer.gd.uid ├── Serialization ├── archive.gd ├── archive.gd.uid ├── inout_archive.gd ├── inout_archive.gd.uid ├── input_archive.gd ├── input_archive.gd.uid ├── output_archive.gd ├── output_archive.gd.uid ├── serialize.gd └── serialize.gd.uid ├── command.gd ├── command.gd.uid ├── component.gd ├── component.gd.uid ├── data_component.gd ├── data_component.gd.uid ├── debug_entity.gd ├── debug_entity.gd.uid ├── entity.gd ├── entity.gd.uid ├── event.gd ├── event.gd.uid ├── event_center.gd ├── event_center.gd.uid ├── system.gd ├── system.gd.uid ├── test.gd ├── test.gd.uid ├── view_component.gd ├── view_component.gd.uid ├── world.gd └── world.gd.uid /addons/GodotECS/Packer/bytes.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baiXfeng/godot-ecs/HEAD/addons/GodotECS/Packer/bytes.gd -------------------------------------------------------------------------------- /addons/GodotECS/Packer/bytes.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bsso1lpn5w06d 2 | -------------------------------------------------------------------------------- /addons/GodotECS/Packer/pack.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baiXfeng/godot-ecs/HEAD/addons/GodotECS/Packer/pack.gd -------------------------------------------------------------------------------- /addons/GodotECS/Packer/pack.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c51aebb4ijpc1 2 | -------------------------------------------------------------------------------- /addons/GodotECS/Packer/packer.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baiXfeng/godot-ecs/HEAD/addons/GodotECS/Packer/packer.gd -------------------------------------------------------------------------------- /addons/GodotECS/Packer/packer.gd.uid: -------------------------------------------------------------------------------- 1 | uid://diyflcisp3hjp 2 | -------------------------------------------------------------------------------- /addons/GodotECS/Serialization/archive.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baiXfeng/godot-ecs/HEAD/addons/GodotECS/Serialization/archive.gd -------------------------------------------------------------------------------- /addons/GodotECS/Serialization/archive.gd.uid: -------------------------------------------------------------------------------- 1 | uid://d3pb4eywcovw1 2 | -------------------------------------------------------------------------------- /addons/GodotECS/Serialization/inout_archive.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baiXfeng/godot-ecs/HEAD/addons/GodotECS/Serialization/inout_archive.gd -------------------------------------------------------------------------------- /addons/GodotECS/Serialization/inout_archive.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bi02j1r8n8dni 2 | -------------------------------------------------------------------------------- /addons/GodotECS/Serialization/input_archive.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baiXfeng/godot-ecs/HEAD/addons/GodotECS/Serialization/input_archive.gd -------------------------------------------------------------------------------- /addons/GodotECS/Serialization/input_archive.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dk10ml21txoic 2 | -------------------------------------------------------------------------------- /addons/GodotECS/Serialization/output_archive.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baiXfeng/godot-ecs/HEAD/addons/GodotECS/Serialization/output_archive.gd -------------------------------------------------------------------------------- /addons/GodotECS/Serialization/output_archive.gd.uid: -------------------------------------------------------------------------------- 1 | uid://ccb5i2lh81yf0 2 | -------------------------------------------------------------------------------- /addons/GodotECS/Serialization/serialize.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baiXfeng/godot-ecs/HEAD/addons/GodotECS/Serialization/serialize.gd -------------------------------------------------------------------------------- /addons/GodotECS/Serialization/serialize.gd.uid: -------------------------------------------------------------------------------- 1 | uid://d0ykhj71x30u0 2 | -------------------------------------------------------------------------------- /addons/GodotECS/command.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baiXfeng/godot-ecs/HEAD/addons/GodotECS/command.gd -------------------------------------------------------------------------------- /addons/GodotECS/command.gd.uid: -------------------------------------------------------------------------------- 1 | uid://di6wcyxw2exf6 2 | -------------------------------------------------------------------------------- /addons/GodotECS/component.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baiXfeng/godot-ecs/HEAD/addons/GodotECS/component.gd -------------------------------------------------------------------------------- /addons/GodotECS/component.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c80nl65h4i7kr 2 | -------------------------------------------------------------------------------- /addons/GodotECS/data_component.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baiXfeng/godot-ecs/HEAD/addons/GodotECS/data_component.gd -------------------------------------------------------------------------------- /addons/GodotECS/data_component.gd.uid: -------------------------------------------------------------------------------- 1 | uid://xyunj8oqloye 2 | -------------------------------------------------------------------------------- /addons/GodotECS/debug_entity.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baiXfeng/godot-ecs/HEAD/addons/GodotECS/debug_entity.gd -------------------------------------------------------------------------------- /addons/GodotECS/debug_entity.gd.uid: -------------------------------------------------------------------------------- 1 | uid://chr6l6k45wtxp 2 | -------------------------------------------------------------------------------- /addons/GodotECS/entity.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baiXfeng/godot-ecs/HEAD/addons/GodotECS/entity.gd -------------------------------------------------------------------------------- /addons/GodotECS/entity.gd.uid: -------------------------------------------------------------------------------- 1 | uid://4rgq5u8rc5ek 2 | -------------------------------------------------------------------------------- /addons/GodotECS/event.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baiXfeng/godot-ecs/HEAD/addons/GodotECS/event.gd -------------------------------------------------------------------------------- /addons/GodotECS/event.gd.uid: -------------------------------------------------------------------------------- 1 | uid://blq7akvuf5o3c 2 | -------------------------------------------------------------------------------- /addons/GodotECS/event_center.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baiXfeng/godot-ecs/HEAD/addons/GodotECS/event_center.gd -------------------------------------------------------------------------------- /addons/GodotECS/event_center.gd.uid: -------------------------------------------------------------------------------- 1 | uid://ow0kjmhe3se8 2 | -------------------------------------------------------------------------------- /addons/GodotECS/system.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baiXfeng/godot-ecs/HEAD/addons/GodotECS/system.gd -------------------------------------------------------------------------------- /addons/GodotECS/system.gd.uid: -------------------------------------------------------------------------------- 1 | uid://clm05xfs6hg2g 2 | -------------------------------------------------------------------------------- /addons/GodotECS/test.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baiXfeng/godot-ecs/HEAD/addons/GodotECS/test.gd -------------------------------------------------------------------------------- /addons/GodotECS/test.gd.uid: -------------------------------------------------------------------------------- 1 | uid://crohktujvnp0 2 | -------------------------------------------------------------------------------- /addons/GodotECS/view_component.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baiXfeng/godot-ecs/HEAD/addons/GodotECS/view_component.gd -------------------------------------------------------------------------------- /addons/GodotECS/view_component.gd.uid: -------------------------------------------------------------------------------- 1 | uid://rmhtxv1qnn57 2 | -------------------------------------------------------------------------------- /addons/GodotECS/world.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baiXfeng/godot-ecs/HEAD/addons/GodotECS/world.gd -------------------------------------------------------------------------------- /addons/GodotECS/world.gd.uid: -------------------------------------------------------------------------------- 1 | uid://crioydxwwwjue 2 | --------------------------------------------------------------------------------