Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
RobertPoienar committed Sep 18, 2024
1 parent dd8076a commit 39f6f4e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Assets/AltTester/Runtime/AltDriver/Common/AltObjectLight.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,17 @@ public class AltObjectLight
public int idCamera;
public int transformParentId;
public int transformId;
public string type;

public AltObjectLight(string name, int id = 0, bool enabled = true, int idCamera = 0, int transformParentId = 0, int transformId = 0)
public AltObjectLight(string name, string type = "", int id = 0, bool enabled = true, int idCamera = 0, int transformParentId = 0, int transformId = 0)
{
this.name = name;
this.id = id;
this.enabled = enabled;
this.idCamera = idCamera;
this.transformParentId = transformParentId;
this.transformId = transformId;
this.type = type;
}
}
}

0 comments on commit 39f6f4e

Please sign in to comment.