File tree Expand file tree Collapse file tree 2 files changed +13
-2
lines changed Expand file tree Collapse file tree 2 files changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -62,6 +62,16 @@ public enum NodeAttributes : uint
62
62
/// <summary>
63
63
/// Node uses a quaternion instead of euler angle for rotation information.
64
64
/// </summary>
65
- UseQuaternionRotation = Flag32 . B10
65
+ UseQuaternionRotation = Flag32 . B10 ,
66
+
67
+ /// <summary>
68
+ /// Cache rotation data before the object is processed
69
+ /// </summary>
70
+ CacheRotation = Flag32 . B11 ,
71
+
72
+ /// <summary>
73
+ /// Use cached rotation data (see <see cref="CacheRotation"/>)
74
+ /// </summary>
75
+ ApplyCachedRotation = Flag32 . B12
66
76
}
67
77
}
Original file line number Diff line number Diff line change 1
-
1
+ SA3D.Modeling.ObjectData.Enums.NodeAttributes.ApplyCachedRotation = 4096 -> SA3D.Modeling.ObjectData.Enums.NodeAttributes
2
+ SA3D.Modeling.ObjectData.Enums.NodeAttributes.CacheRotation = 2048 -> SA3D.Modeling.ObjectData.Enums.NodeAttributes
You can’t perform that action at this time.
0 commit comments