@@ -963,6 +963,11 @@ function CoreObjectInstance:SetCustomProperty(propertyName, propertyValue) end
963
963
--- @return boolean
964
964
function CoreObjectInstance :SetNetworkedCustomProperty (propertyName , propertyValue ) end
965
965
966
+ --- Returns `true` if the named custom property exists and is marked as dynamic. Otherwise, returns `false`.
967
+ --- @param propertyName string
968
+ --- @return boolean
969
+ function CoreObjectInstance :IsCustomPropertyDynamic (propertyName ) end
970
+
966
971
--- @param typeName string
967
972
--- @return boolean
968
973
function CoreObjectInstance :IsA (typeName ) end
@@ -1703,6 +1708,11 @@ function InventoryItemInstance:GetCustomProperty(propertyName) end
1703
1708
--- @return table
1704
1709
function InventoryItemInstance :GetCustomProperties () end
1705
1710
1711
+ --- Returns `true` if the named custom property exists and is marked as dynamic. Otherwise, returns `false`.
1712
+ --- @param propertyName string
1713
+ --- @return boolean
1714
+ function InventoryItemInstance :IsCustomPropertyDynamic (propertyName ) end
1715
+
1706
1716
--- @param typeName string
1707
1717
--- @return boolean
1708
1718
function InventoryItemInstance :IsA (typeName ) end
@@ -4125,6 +4135,19 @@ function Input.IsInputTypeEnabled(inputType) end
4125
4135
--- @return table<number , string>
4126
4136
function Input .GetActions () end
4127
4137
4138
+ --- Enables the specified action, if the action exists.
4139
+ --- @param action string
4140
+ function Input .EnableAction (action ) end
4141
+
4142
+ --- Disables the specified action, if the action exists. If the action is currently held, this will also release the action.
4143
+ --- @param action string
4144
+ function Input .DisableAction (action ) end
4145
+
4146
+ --- Returns `true` if the specified action is enabled. Returns `false` if the action is disabled or does not exist.
4147
+ --- @param action string
4148
+ --- @return boolean
4149
+ function Input .IsActionEnabled (action ) end
4150
+
4128
4151
--- @class Leaderboards
4129
4152
local LeaderboardsInstance = {}
4130
4153
--- @class GlobalLeaderboards
0 commit comments