fix _Del gen fo ecs component

This commit is contained in:
madpwnhammer 2023-06-07 23:09:45 +03:00
parent e45ed9da91
commit 2be6c78d5d
1 changed files with 1 additions and 1 deletions

View File

@ -726,7 +726,7 @@ Script_{{o.name|norm_name}}.Method_{{m.name}}.ReturnValue(frm, stack
EcsEntity e = default;
stack.PopRelease().Decode(ref e);
e.Del<{{o.name}}>();
e.Del<ecs.{{o.name}}>();
return null;
}