0.489.1.4890338
This commit is contained in:
parent
ffe75acacf
commit
712f1c438c
@ -1,5 +1,5 @@
|
|||||||
// Auto-generated list of creatable Roblox classes.
|
// Auto-generated list of creatable Roblox classes.
|
||||||
// Updated as of 0.487.1.426995
|
// Updated as of 0.489.1.4890338
|
||||||
|
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
@ -903,6 +903,11 @@ namespace RobloxFiles
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public class DataStoreOptions : Instance
|
||||||
|
{
|
||||||
|
public bool AllScopes;
|
||||||
|
}
|
||||||
|
|
||||||
public class DataStoreService : Instance
|
public class DataStoreService : Instance
|
||||||
{
|
{
|
||||||
public DataStoreService()
|
public DataStoreService()
|
||||||
@ -1148,11 +1153,6 @@ namespace RobloxFiles
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public class GetDataStoreOptions : Instance
|
|
||||||
{
|
|
||||||
public bool AllScopes;
|
|
||||||
}
|
|
||||||
|
|
||||||
public class GroupService : Instance
|
public class GroupService : Instance
|
||||||
{
|
{
|
||||||
public GroupService()
|
public GroupService()
|
||||||
@ -2595,6 +2595,11 @@ namespace RobloxFiles
|
|||||||
public float ZOffset;
|
public float ZOffset;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public class PathfindingModifier : Instance
|
||||||
|
{
|
||||||
|
public string ModifierId = "";
|
||||||
|
}
|
||||||
|
|
||||||
public class PathfindingService : Instance
|
public class PathfindingService : Instance
|
||||||
{
|
{
|
||||||
public PathfindingService()
|
public PathfindingService()
|
||||||
|
Binary file not shown.
@ -124,7 +124,7 @@ namespace RobloxFiles
|
|||||||
{
|
{
|
||||||
if (Attributes.TryGetValue(key, out RbxAttribute attr))
|
if (Attributes.TryGetValue(key, out RbxAttribute attr))
|
||||||
{
|
{
|
||||||
if (attr.Value is T result)
|
if (attr?.Value is T result)
|
||||||
{
|
{
|
||||||
value = result;
|
value = result;
|
||||||
return true;
|
return true;
|
||||||
@ -152,6 +152,12 @@ namespace RobloxFiles
|
|||||||
if (key.StartsWith("RBX", StringComparison.InvariantCulture))
|
if (key.StartsWith("RBX", StringComparison.InvariantCulture))
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
if (value == null)
|
||||||
|
{
|
||||||
|
Attributes[key] = null;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
Type type = value.GetType();
|
Type type = value.GetType();
|
||||||
|
|
||||||
if (!RbxAttribute.SupportsType(type))
|
if (!RbxAttribute.SupportsType(type))
|
||||||
|
Loading…
Reference in New Issue
Block a user