add LdtkFieldInstance and LdtkEntityMap classes; update LdtkSceneBuilder to support entity mapping

This commit is contained in:
2025-09-23 02:21:18 +02:00
parent 22271e741d
commit 43e5bfcdce
11 changed files with 278 additions and 10 deletions

View File

@@ -0,0 +1,11 @@
using Godot;
using Godot.Collections;
namespace CSharpLdtkImporter;
[Tool]
[GlobalClass]
public partial class LdtkEntityMap : Resource
{
[Export] public Dictionary<string, PackedScene> EntitySceneMap { get; set; } = new();
}