Fix bug with CFrame.Position

._.
This commit is contained in:
Max 2022-06-13 17:12:27 -05:00
parent 62a15ff940
commit 39b56b12ee
3 changed files with 3 additions and 11 deletions

View File

@ -17,7 +17,7 @@ namespace RobloxFiles.DataTypes
public float Y => m24; public float Y => m24;
public float Z => m34; public float Z => m34;
public Vector3 Position => new Vector3(m41, m42, m43); public Vector3 Position => new Vector3(X, Y, Z);
public CFrame Rotation => (this - Position); public CFrame Rotation => (this - Position);
public Vector3 XVector => new Vector3(m11, m21, m31); public Vector3 XVector => new Vector3(m11, m21, m31);

View File

@ -1,5 +1,5 @@
// Auto-generated list of creatable Roblox classes. // Auto-generated list of creatable Roblox classes.
// Updated as of 0.529.1.5290370 // Updated as of 0.530.0.5300290
using System; using System;
@ -3772,14 +3772,6 @@ namespace RobloxFiles
public bool CustomizedTeleportUI; public bool CustomizedTeleportUI;
} }
public class TemporaryCageMeshProvider : Instance
{
public TemporaryCageMeshProvider()
{
IsService = true;
}
}
public class TemporaryScriptService : Instance public class TemporaryScriptService : Instance
{ {
public TemporaryScriptService() public TemporaryScriptService()

View File

@ -1,5 +1,5 @@
// Auto-generated list of Roblox enums. // Auto-generated list of Roblox enums.
// Updated as of 0.529.1.5290370 // Updated as of 0.530.0.5300290
namespace RobloxFiles.Enums namespace RobloxFiles.Enums
{ {