Revert incorrect uct.

This commit is contained in:
2022-12-22 12:30:57 +08:00
parent c5571e7d17
commit da2313ab57
2 changed files with 4 additions and 4 deletions

View File

@@ -52,9 +52,9 @@ namespace Cryville.Crtr.Components {
static readonly ArrayPool<Vector2> _shapePool = new ArrayPool<Vector2>(0x100, 0x10000);
public PolygonSGO() {
SubmitProperty("head", new PropOp.String(v => head.FrameName = v), 2);
SubmitProperty("body", new PropOp.String(v => body.FrameName = v), 2);
SubmitProperty("tail", new PropOp.String(v => tail.FrameName = v), 2);
SubmitProperty("head", new PropOp.String(v => head.FrameName = v));
SubmitProperty("body", new PropOp.String(v => body.FrameName = v));
SubmitProperty("tail", new PropOp.String(v => tail.FrameName = v));
SubmitProperty("shape", new op_set_shape(this), 2);
}