Removed TODOs related to native script component (which was removed)

This commit is contained in:
Simon Lübeß
2023-12-10 12:52:49 +01:00
parent bedbc696c3
commit 13cb043cf4
@@ -138,8 +138,6 @@ class SceneSerializer
Serialize.Value(writer, "FixedAspectRatio", camera.FixedAspectRatio);
});
// TODO: native script component
SerializeComponent<LightComponent>(writer, entity, "LightComponent", scope (component) =>
{
SceneLight light = component.SceneLight;
@@ -501,7 +499,6 @@ class SceneSerializer
return .Ok;
}));
// TODO: native script component
case "LightComponent":
Try!(DeserializeComponent<LightComponent>(reader, entity, scope (component) =>
{
@@ -788,8 +785,6 @@ class SceneSerializer
Serialize.Value(writer, "FixedAspectRatio", camera.FixedAspectRatio);
});
// TODO: native script component
SerializeComponent<LightComponent>(writer, entity, "LightComponent", scope (component) =>
{