0.462.0.416719
This commit is contained in:
@ -181,7 +181,7 @@ namespace RobloxFiles.DataTypes
|
||||
internal CFrame(Attribute attr)
|
||||
{
|
||||
Vector3 pos = new Vector3(attr);
|
||||
byte rawOrientId = attr.readByte();
|
||||
byte rawOrientId = attr.ReadByte();
|
||||
|
||||
if (rawOrientId > 0)
|
||||
{
|
||||
|
@ -21,8 +21,8 @@ namespace RobloxFiles.DataTypes
|
||||
|
||||
internal Vector2int16(Attribute attr)
|
||||
{
|
||||
X = attr.readShort();
|
||||
Y = attr.readShort();
|
||||
X = attr.ReadShort();
|
||||
Y = attr.ReadShort();
|
||||
}
|
||||
|
||||
private delegate Vector2int16 Operator(Vector2int16 a, Vector2int16 b);
|
||||
|
@ -27,9 +27,9 @@ namespace RobloxFiles.DataTypes
|
||||
|
||||
internal Vector3int16(Attribute attr)
|
||||
{
|
||||
X = attr.readShort();
|
||||
Y = attr.readShort();
|
||||
Z = attr.readShort();
|
||||
X = attr.ReadShort();
|
||||
Y = attr.ReadShort();
|
||||
Z = attr.ReadShort();
|
||||
}
|
||||
|
||||
private delegate Vector3int16 Operator(Vector3int16 a, Vector3int16 b);
|
||||
|
Reference in New Issue
Block a user