cluaupp 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +20 -0
- package/LICENSE +21 -0
- package/README.md +119 -0
- package/bin/cluau.js +4 -0
- package/bin/cluaupp.js +4 -0
- package/docs/README.md +20 -0
- package/docs/architecture.md +110 -0
- package/docs/cli.md +69 -0
- package/docs/comparison.md +37 -0
- package/docs/config.md +31 -0
- package/docs/cpp-advanced.md +71 -0
- package/docs/cpp-const.md +52 -0
- package/docs/cpp-organization.md +61 -0
- package/docs/cpp-safety.md +58 -0
- package/docs/cpp-types.md +66 -0
- package/docs/getting-started.md +169 -0
- package/docs/intro.md +37 -0
- package/docs/libraries.md +77 -0
- package/docs/roblox-api.md +81 -0
- package/docs/syntax.md +131 -0
- package/include/cluaupp/datatypes.hpp +581 -0
- package/include/cluaupp/generated/enums.hpp +4920 -0
- package/include/cluaupp/generated/instances.hpp +12489 -0
- package/include/cluaupp/libs/chrono.hpp +26 -0
- package/include/cluaupp/libs/cmdr.hpp +16 -0
- package/include/cluaupp/libs/dataservice.hpp +141 -0
- package/include/cluaupp/libs/display.hpp +13 -0
- package/include/cluaupp/libs/ezvisual.hpp +18 -0
- package/include/cluaupp/libs/formatnumber.hpp +15 -0
- package/include/cluaupp/libs/fusion.hpp +41 -0
- package/include/cluaupp/libs/iris.hpp +40 -0
- package/include/cluaupp/libs/janitor.hpp +35 -0
- package/include/cluaupp/libs/math.hpp +14 -0
- package/include/cluaupp/libs/module3d.hpp +25 -0
- package/include/cluaupp/libs/net.hpp +42 -0
- package/include/cluaupp/libs/promise.hpp +30 -0
- package/include/cluaupp/libs/spring.hpp +18 -0
- package/include/cluaupp/libs/statemachine.hpp +19 -0
- package/include/cluaupp/libs/stickybillboard.hpp +14 -0
- package/include/cluaupp/libs/topbarplus.hpp +29 -0
- package/include/cluaupp/libs/twinkle.hpp +15 -0
- package/include/cluaupp/libs/vfx.hpp +13 -0
- package/include/cluaupp/libs.hpp +25 -0
- package/include/cluaupp/roblox.hpp +28 -0
- package/package.json +65 -0
- package/runtime/ArrayIndexer/init.luau +144 -0
- package/runtime/Chrono/Client/ClientClock.luau +202 -0
- package/runtime/Chrono/Client/InterpolationBuffer.luau +74 -0
- package/runtime/Chrono/Client/ModelResolver.luau +53 -0
- package/runtime/Chrono/Client/Player.luau +113 -0
- package/runtime/Chrono/Client/Receiver.luau +395 -0
- package/runtime/Chrono/Client/Replicate.luau +333 -0
- package/runtime/Chrono/Client/Sender.luau +205 -0
- package/runtime/Chrono/LICENSE +21 -0
- package/runtime/Chrono/Server/EntityGrid.luau +299 -0
- package/runtime/Chrono/Server/Player.luau +141 -0
- package/runtime/Chrono/Server/Receiver.luau +287 -0
- package/runtime/Chrono/Server/Replicate.luau +415 -0
- package/runtime/Chrono/Server/Sender.luau +306 -0
- package/runtime/Chrono/Server/ServerClock.luau +50 -0
- package/runtime/Chrono/Shared/ApplyMounts.luau +137 -0
- package/runtime/Chrono/Shared/Bin.luau +31 -0
- package/runtime/Chrono/Shared/ClockUnwrap.luau +70 -0
- package/runtime/Chrono/Shared/Config.luau +264 -0
- package/runtime/Chrono/Shared/Entity.luau +1016 -0
- package/runtime/Chrono/Shared/Events.luau +39 -0
- package/runtime/Chrono/Shared/Holder.luau +210 -0
- package/runtime/Chrono/Shared/InterpolationMath.luau +51 -0
- package/runtime/Chrono/Shared/ModelHelper.luau +122 -0
- package/runtime/Chrono/Shared/Remotes/ClientClockRelay.model.json +3 -0
- package/runtime/Chrono/Shared/Remotes/ClientHeartbeat.model.json +3 -0
- package/runtime/Chrono/Shared/Remotes/ClientLoaded.model.json +3 -0
- package/runtime/Chrono/Shared/Remotes/Death.model.json +3 -0
- package/runtime/Chrono/Shared/Remotes/Heartbeat.model.json +3 -0
- package/runtime/Chrono/Shared/Remotes/Replicate.model.json +3 -0
- package/runtime/Chrono/Shared/Remotes/ReplicateFull.model.json +3 -0
- package/runtime/Chrono/Shared/Remotes/SafeReplicate.model.json +3 -0
- package/runtime/Chrono/Shared/ReplicationRules.luau +122 -0
- package/runtime/Chrono/Shared/Signal.luau +219 -0
- package/runtime/Chrono/Shared/Snapshots.luau +218 -0
- package/runtime/Chrono/Shared/Stats.luau +204 -0
- package/runtime/Chrono/Shared/Ticker.luau +112 -0
- package/runtime/Chrono/Shared/Types.luau +247 -0
- package/runtime/Chrono/Shared/Warn.luau +33 -0
- package/runtime/Chrono/Shared/_CUSTOM_MODEL_REP/init.model.json +3 -0
- package/runtime/Chrono/_impl/Client/ClientClock.luau +202 -0
- package/runtime/Chrono/_impl/Client/InterpolationBuffer.luau +74 -0
- package/runtime/Chrono/_impl/Client/ModelResolver.luau +53 -0
- package/runtime/Chrono/_impl/Client/Player.luau +113 -0
- package/runtime/Chrono/_impl/Client/Receiver.luau +395 -0
- package/runtime/Chrono/_impl/Client/Replicate.luau +333 -0
- package/runtime/Chrono/_impl/Client/Sender.luau +205 -0
- package/runtime/Chrono/_impl/LICENSE +21 -0
- package/runtime/Chrono/_impl/Server/EntityGrid.luau +299 -0
- package/runtime/Chrono/_impl/Server/Player.luau +141 -0
- package/runtime/Chrono/_impl/Server/Receiver.luau +287 -0
- package/runtime/Chrono/_impl/Server/Replicate.luau +415 -0
- package/runtime/Chrono/_impl/Server/Sender.luau +306 -0
- package/runtime/Chrono/_impl/Server/ServerClock.luau +50 -0
- package/runtime/Chrono/_impl/Shared/ApplyMounts.luau +137 -0
- package/runtime/Chrono/_impl/Shared/Bin.luau +31 -0
- package/runtime/Chrono/_impl/Shared/ClockUnwrap.luau +70 -0
- package/runtime/Chrono/_impl/Shared/Config.luau +264 -0
- package/runtime/Chrono/_impl/Shared/Entity.luau +1016 -0
- package/runtime/Chrono/_impl/Shared/Events.luau +39 -0
- package/runtime/Chrono/_impl/Shared/Holder.luau +210 -0
- package/runtime/Chrono/_impl/Shared/InterpolationMath.luau +51 -0
- package/runtime/Chrono/_impl/Shared/ModelHelper.luau +122 -0
- package/runtime/Chrono/_impl/Shared/Remotes/ClientClockRelay.model.json +3 -0
- package/runtime/Chrono/_impl/Shared/Remotes/ClientHeartbeat.model.json +3 -0
- package/runtime/Chrono/_impl/Shared/Remotes/ClientLoaded.model.json +3 -0
- package/runtime/Chrono/_impl/Shared/Remotes/Death.model.json +3 -0
- package/runtime/Chrono/_impl/Shared/Remotes/Heartbeat.model.json +3 -0
- package/runtime/Chrono/_impl/Shared/Remotes/Replicate.model.json +3 -0
- package/runtime/Chrono/_impl/Shared/Remotes/ReplicateFull.model.json +3 -0
- package/runtime/Chrono/_impl/Shared/Remotes/SafeReplicate.model.json +3 -0
- package/runtime/Chrono/_impl/Shared/ReplicationRules.luau +122 -0
- package/runtime/Chrono/_impl/Shared/Signal.luau +219 -0
- package/runtime/Chrono/_impl/Shared/Snapshots.luau +218 -0
- package/runtime/Chrono/_impl/Shared/Stats.luau +204 -0
- package/runtime/Chrono/_impl/Shared/Ticker.luau +112 -0
- package/runtime/Chrono/_impl/Shared/Types.luau +247 -0
- package/runtime/Chrono/_impl/Shared/Warn.luau +33 -0
- package/runtime/Chrono/_impl/Shared/_CUSTOM_MODEL_REP/init.model.json +3 -0
- package/runtime/Chrono/_impl/init.luau +96 -0
- package/runtime/Chrono/init.luau +14 -0
- package/runtime/Cmdr/BuiltInCommands/Admin/announce.luau +21 -0
- package/runtime/Cmdr/BuiltInCommands/Admin/announceServer.luau +17 -0
- package/runtime/Cmdr/BuiltInCommands/Admin/ban.luau +59 -0
- package/runtime/Cmdr/BuiltInCommands/Admin/banServer.luau +30 -0
- package/runtime/Cmdr/BuiltInCommands/Admin/gotoPlace.luau +35 -0
- package/runtime/Cmdr/BuiltInCommands/Admin/gotoPlaceServer.luau +17 -0
- package/runtime/Cmdr/BuiltInCommands/Admin/kick.luau +19 -0
- package/runtime/Cmdr/BuiltInCommands/Admin/kickServer.luau +27 -0
- package/runtime/Cmdr/BuiltInCommands/Admin/kill.luau +13 -0
- package/runtime/Cmdr/BuiltInCommands/Admin/killServer.luau +13 -0
- package/runtime/Cmdr/BuiltInCommands/Admin/respawn.luau +15 -0
- package/runtime/Cmdr/BuiltInCommands/Admin/respawnServer.luau +7 -0
- package/runtime/Cmdr/BuiltInCommands/Admin/teleport.luau +30 -0
- package/runtime/Cmdr/BuiltInCommands/Admin/teleportServer.luau +26 -0
- package/runtime/Cmdr/BuiltInCommands/Admin/unban.luau +26 -0
- package/runtime/Cmdr/BuiltInCommands/Admin/unbanServer.luau +10 -0
- package/runtime/Cmdr/BuiltInCommands/Debug/blink.luau +35 -0
- package/runtime/Cmdr/BuiltInCommands/Debug/fetch.luau +12 -0
- package/runtime/Cmdr/BuiltInCommands/Debug/fetchServer.luau +7 -0
- package/runtime/Cmdr/BuiltInCommands/Debug/getPlayerPlaceInstance.luau +20 -0
- package/runtime/Cmdr/BuiltInCommands/Debug/getPlayerPlaceInstanceServer.luau +28 -0
- package/runtime/Cmdr/BuiltInCommands/Debug/position.luau +30 -0
- package/runtime/Cmdr/BuiltInCommands/Debug/thru.luau +50 -0
- package/runtime/Cmdr/BuiltInCommands/Debug/uptime.luau +6 -0
- package/runtime/Cmdr/BuiltInCommands/Debug/uptimeServer.luau +12 -0
- package/runtime/Cmdr/BuiltInCommands/Debug/version.luau +12 -0
- package/runtime/Cmdr/BuiltInCommands/Utility/alias.luau +22 -0
- package/runtime/Cmdr/BuiltInCommands/Utility/bind.luau +104 -0
- package/runtime/Cmdr/BuiltInCommands/Utility/clear.luau +20 -0
- package/runtime/Cmdr/BuiltInCommands/Utility/convertTimestamp.luau +18 -0
- package/runtime/Cmdr/BuiltInCommands/Utility/echo.luau +17 -0
- package/runtime/Cmdr/BuiltInCommands/Utility/edit.luau +75 -0
- package/runtime/Cmdr/BuiltInCommands/Utility/exit.luau +11 -0
- package/runtime/Cmdr/BuiltInCommands/Utility/history.luau +27 -0
- package/runtime/Cmdr/BuiltInCommands/Utility/hover.luau +21 -0
- package/runtime/Cmdr/BuiltInCommands/Utility/jsonArrayDecode.luau +25 -0
- package/runtime/Cmdr/BuiltInCommands/Utility/jsonArrayEncode.luau +18 -0
- package/runtime/Cmdr/BuiltInCommands/Utility/len.luau +16 -0
- package/runtime/Cmdr/BuiltInCommands/Utility/math.luau +36 -0
- package/runtime/Cmdr/BuiltInCommands/Utility/pick.luau +21 -0
- package/runtime/Cmdr/BuiltInCommands/Utility/rand.luau +27 -0
- package/runtime/Cmdr/BuiltInCommands/Utility/replace.luau +32 -0
- package/runtime/Cmdr/BuiltInCommands/Utility/resolve.luau +32 -0
- package/runtime/Cmdr/BuiltInCommands/Utility/run.luau +20 -0
- package/runtime/Cmdr/BuiltInCommands/Utility/runLines.luau +34 -0
- package/runtime/Cmdr/BuiltInCommands/Utility/runif.luau +95 -0
- package/runtime/Cmdr/BuiltInCommands/Utility/unbind.luau +27 -0
- package/runtime/Cmdr/BuiltInCommands/Utility/var.luau +29 -0
- package/runtime/Cmdr/BuiltInCommands/Utility/varServer.luau +37 -0
- package/runtime/Cmdr/BuiltInCommands/Utility/varSet.luau +30 -0
- package/runtime/Cmdr/BuiltInCommands/Utility/varSetServer.luau +29 -0
- package/runtime/Cmdr/BuiltInCommands/help.luau +96 -0
- package/runtime/Cmdr/BuiltInTypes/BrickColor.luau +258 -0
- package/runtime/Cmdr/BuiltInTypes/Color3.luau +59 -0
- package/runtime/Cmdr/BuiltInTypes/Command.luau +23 -0
- package/runtime/Cmdr/BuiltInTypes/Duration.luau +111 -0
- package/runtime/Cmdr/BuiltInTypes/JSON.luau +13 -0
- package/runtime/Cmdr/BuiltInTypes/MathOperator.luau +43 -0
- package/runtime/Cmdr/BuiltInTypes/Player.luau +36 -0
- package/runtime/Cmdr/BuiltInTypes/PlayerId.luau +66 -0
- package/runtime/Cmdr/BuiltInTypes/Primitives.luau +145 -0
- package/runtime/Cmdr/BuiltInTypes/StoredKey.luau +33 -0
- package/runtime/Cmdr/BuiltInTypes/Team.luau +49 -0
- package/runtime/Cmdr/BuiltInTypes/Type.luau +23 -0
- package/runtime/Cmdr/BuiltInTypes/URL.luau +18 -0
- package/runtime/Cmdr/BuiltInTypes/UserInput.luau +32 -0
- package/runtime/Cmdr/BuiltInTypes/Vector.luau +58 -0
- package/runtime/Cmdr/CmdrClient/CmdrInterface/AutoComplete.luau +240 -0
- package/runtime/Cmdr/CmdrClient/CmdrInterface/CreateGui.luau +227 -0
- package/runtime/Cmdr/CmdrClient/CmdrInterface/Window.luau +713 -0
- package/runtime/Cmdr/CmdrClient/CmdrInterface/init.luau +18 -0
- package/runtime/Cmdr/CmdrClient/DefaultEventHandlers.luau +18 -0
- package/runtime/Cmdr/CmdrClient/Shared/Argument.luau +395 -0
- package/runtime/Cmdr/CmdrClient/Shared/BuiltInGuards/HasCharacter.luau +39 -0
- package/runtime/Cmdr/CmdrClient/Shared/BuiltInGuards/IsDataStoreAvailable.luau +36 -0
- package/runtime/Cmdr/CmdrClient/Shared/BuiltInGuards/MaxArrayLength.luau +10 -0
- package/runtime/Cmdr/CmdrClient/Shared/BuiltInGuards/MaxStringLength.luau +10 -0
- package/runtime/Cmdr/CmdrClient/Shared/BuiltInGuards/NonEmptyString.luau +10 -0
- package/runtime/Cmdr/CmdrClient/Shared/BuiltInGuards/NotEquals.luau +8 -0
- package/runtime/Cmdr/CmdrClient/Shared/Command.luau +415 -0
- package/runtime/Cmdr/CmdrClient/Shared/Dispatcher.luau +407 -0
- package/runtime/Cmdr/CmdrClient/Shared/Registry.luau +717 -0
- package/runtime/Cmdr/CmdrClient/Shared/Util.luau +879 -0
- package/runtime/Cmdr/CmdrClient/init.luau +377 -0
- package/runtime/Cmdr/LICENSE +21 -0
- package/runtime/Cmdr/_impl/BuiltInCommands/Admin/announce.luau +21 -0
- package/runtime/Cmdr/_impl/BuiltInCommands/Admin/announceServer.luau +17 -0
- package/runtime/Cmdr/_impl/BuiltInCommands/Admin/ban.luau +59 -0
- package/runtime/Cmdr/_impl/BuiltInCommands/Admin/banServer.luau +30 -0
- package/runtime/Cmdr/_impl/BuiltInCommands/Admin/gotoPlace.luau +35 -0
- package/runtime/Cmdr/_impl/BuiltInCommands/Admin/gotoPlaceServer.luau +17 -0
- package/runtime/Cmdr/_impl/BuiltInCommands/Admin/kick.luau +19 -0
- package/runtime/Cmdr/_impl/BuiltInCommands/Admin/kickServer.luau +27 -0
- package/runtime/Cmdr/_impl/BuiltInCommands/Admin/kill.luau +13 -0
- package/runtime/Cmdr/_impl/BuiltInCommands/Admin/killServer.luau +13 -0
- package/runtime/Cmdr/_impl/BuiltInCommands/Admin/respawn.luau +15 -0
- package/runtime/Cmdr/_impl/BuiltInCommands/Admin/respawnServer.luau +7 -0
- package/runtime/Cmdr/_impl/BuiltInCommands/Admin/teleport.luau +30 -0
- package/runtime/Cmdr/_impl/BuiltInCommands/Admin/teleportServer.luau +26 -0
- package/runtime/Cmdr/_impl/BuiltInCommands/Admin/unban.luau +26 -0
- package/runtime/Cmdr/_impl/BuiltInCommands/Admin/unbanServer.luau +10 -0
- package/runtime/Cmdr/_impl/BuiltInCommands/Debug/blink.luau +35 -0
- package/runtime/Cmdr/_impl/BuiltInCommands/Debug/fetch.luau +12 -0
- package/runtime/Cmdr/_impl/BuiltInCommands/Debug/fetchServer.luau +7 -0
- package/runtime/Cmdr/_impl/BuiltInCommands/Debug/getPlayerPlaceInstance.luau +20 -0
- package/runtime/Cmdr/_impl/BuiltInCommands/Debug/getPlayerPlaceInstanceServer.luau +28 -0
- package/runtime/Cmdr/_impl/BuiltInCommands/Debug/position.luau +30 -0
- package/runtime/Cmdr/_impl/BuiltInCommands/Debug/thru.luau +50 -0
- package/runtime/Cmdr/_impl/BuiltInCommands/Debug/uptime.luau +6 -0
- package/runtime/Cmdr/_impl/BuiltInCommands/Debug/uptimeServer.luau +12 -0
- package/runtime/Cmdr/_impl/BuiltInCommands/Debug/version.luau +12 -0
- package/runtime/Cmdr/_impl/BuiltInCommands/Utility/alias.luau +22 -0
- package/runtime/Cmdr/_impl/BuiltInCommands/Utility/bind.luau +104 -0
- package/runtime/Cmdr/_impl/BuiltInCommands/Utility/clear.luau +20 -0
- package/runtime/Cmdr/_impl/BuiltInCommands/Utility/convertTimestamp.luau +18 -0
- package/runtime/Cmdr/_impl/BuiltInCommands/Utility/echo.luau +17 -0
- package/runtime/Cmdr/_impl/BuiltInCommands/Utility/edit.luau +75 -0
- package/runtime/Cmdr/_impl/BuiltInCommands/Utility/exit.luau +11 -0
- package/runtime/Cmdr/_impl/BuiltInCommands/Utility/history.luau +27 -0
- package/runtime/Cmdr/_impl/BuiltInCommands/Utility/hover.luau +21 -0
- package/runtime/Cmdr/_impl/BuiltInCommands/Utility/jsonArrayDecode.luau +25 -0
- package/runtime/Cmdr/_impl/BuiltInCommands/Utility/jsonArrayEncode.luau +18 -0
- package/runtime/Cmdr/_impl/BuiltInCommands/Utility/len.luau +16 -0
- package/runtime/Cmdr/_impl/BuiltInCommands/Utility/math.luau +36 -0
- package/runtime/Cmdr/_impl/BuiltInCommands/Utility/pick.luau +21 -0
- package/runtime/Cmdr/_impl/BuiltInCommands/Utility/rand.luau +27 -0
- package/runtime/Cmdr/_impl/BuiltInCommands/Utility/replace.luau +32 -0
- package/runtime/Cmdr/_impl/BuiltInCommands/Utility/resolve.luau +32 -0
- package/runtime/Cmdr/_impl/BuiltInCommands/Utility/run.luau +20 -0
- package/runtime/Cmdr/_impl/BuiltInCommands/Utility/runLines.luau +34 -0
- package/runtime/Cmdr/_impl/BuiltInCommands/Utility/runif.luau +95 -0
- package/runtime/Cmdr/_impl/BuiltInCommands/Utility/unbind.luau +27 -0
- package/runtime/Cmdr/_impl/BuiltInCommands/Utility/var.luau +29 -0
- package/runtime/Cmdr/_impl/BuiltInCommands/Utility/varServer.luau +37 -0
- package/runtime/Cmdr/_impl/BuiltInCommands/Utility/varSet.luau +30 -0
- package/runtime/Cmdr/_impl/BuiltInCommands/Utility/varSetServer.luau +29 -0
- package/runtime/Cmdr/_impl/BuiltInCommands/help.luau +96 -0
- package/runtime/Cmdr/_impl/BuiltInTypes/BrickColor.luau +258 -0
- package/runtime/Cmdr/_impl/BuiltInTypes/Color3.luau +59 -0
- package/runtime/Cmdr/_impl/BuiltInTypes/Command.luau +23 -0
- package/runtime/Cmdr/_impl/BuiltInTypes/Duration.luau +111 -0
- package/runtime/Cmdr/_impl/BuiltInTypes/JSON.luau +13 -0
- package/runtime/Cmdr/_impl/BuiltInTypes/MathOperator.luau +43 -0
- package/runtime/Cmdr/_impl/BuiltInTypes/Player.luau +36 -0
- package/runtime/Cmdr/_impl/BuiltInTypes/PlayerId.luau +66 -0
- package/runtime/Cmdr/_impl/BuiltInTypes/Primitives.luau +145 -0
- package/runtime/Cmdr/_impl/BuiltInTypes/StoredKey.luau +33 -0
- package/runtime/Cmdr/_impl/BuiltInTypes/Team.luau +49 -0
- package/runtime/Cmdr/_impl/BuiltInTypes/Type.luau +23 -0
- package/runtime/Cmdr/_impl/BuiltInTypes/URL.luau +18 -0
- package/runtime/Cmdr/_impl/BuiltInTypes/UserInput.luau +32 -0
- package/runtime/Cmdr/_impl/BuiltInTypes/Vector.luau +58 -0
- package/runtime/Cmdr/_impl/CmdrClient/CmdrInterface/AutoComplete.luau +240 -0
- package/runtime/Cmdr/_impl/CmdrClient/CmdrInterface/CreateGui.luau +227 -0
- package/runtime/Cmdr/_impl/CmdrClient/CmdrInterface/Window.luau +713 -0
- package/runtime/Cmdr/_impl/CmdrClient/CmdrInterface/init.luau +18 -0
- package/runtime/Cmdr/_impl/CmdrClient/DefaultEventHandlers.luau +18 -0
- package/runtime/Cmdr/_impl/CmdrClient/Shared/Argument.luau +395 -0
- package/runtime/Cmdr/_impl/CmdrClient/Shared/BuiltInGuards/HasCharacter.luau +39 -0
- package/runtime/Cmdr/_impl/CmdrClient/Shared/BuiltInGuards/IsDataStoreAvailable.luau +36 -0
- package/runtime/Cmdr/_impl/CmdrClient/Shared/BuiltInGuards/MaxArrayLength.luau +10 -0
- package/runtime/Cmdr/_impl/CmdrClient/Shared/BuiltInGuards/MaxStringLength.luau +10 -0
- package/runtime/Cmdr/_impl/CmdrClient/Shared/BuiltInGuards/NonEmptyString.luau +10 -0
- package/runtime/Cmdr/_impl/CmdrClient/Shared/BuiltInGuards/NotEquals.luau +8 -0
- package/runtime/Cmdr/_impl/CmdrClient/Shared/Command.luau +415 -0
- package/runtime/Cmdr/_impl/CmdrClient/Shared/Dispatcher.luau +407 -0
- package/runtime/Cmdr/_impl/CmdrClient/Shared/Registry.luau +717 -0
- package/runtime/Cmdr/_impl/CmdrClient/Shared/Util.luau +879 -0
- package/runtime/Cmdr/_impl/CmdrClient/init.luau +377 -0
- package/runtime/Cmdr/_impl/LICENSE +21 -0
- package/runtime/Cmdr/_impl/init.luau +178 -0
- package/runtime/Cmdr/init.luau +8 -0
- package/runtime/DataService/Client.luau +209 -0
- package/runtime/DataService/Data.luau +886 -0
- package/runtime/DataService/Enum.luau +6 -0
- package/runtime/DataService/Enums.luau +10 -0
- package/runtime/DataService/Packages/quicknet/DataTypes.luau +70 -0
- package/runtime/DataService/Packages/quicknet/Enums.luau +85 -0
- package/runtime/DataService/Packages/quicknet/EnumsToNativeTypes.luau +57 -0
- package/runtime/DataService/Packages/quicknet/Parser.luau +355 -0
- package/runtime/DataService/Packages/quicknet/QuickNet.luau +953 -0
- package/runtime/DataService/Packages/quicknet/Serialize.luau +2020 -0
- package/runtime/DataService/Packages/quicknet/Types.luau +72 -0
- package/runtime/DataService/Packages/quicknet/init.luau +1 -0
- package/runtime/DataService/Packages/signal/init.luau +433 -0
- package/runtime/DataService/Path.luau +236 -0
- package/runtime/DataService/ProfileStore.luau +2243 -0
- package/runtime/DataService/Replicator.luau +172 -0
- package/runtime/DataService/Server.luau +412 -0
- package/runtime/DataService/init.luau +204 -0
- package/runtime/Display/LICENSE +201 -0
- package/runtime/Display/_impl/LICENSE +201 -0
- package/runtime/Display/_impl/init.luau +269 -0
- package/runtime/Display/_impl/option.luau +237 -0
- package/runtime/Display/init.luau +10 -0
- package/runtime/Display/option.luau +237 -0
- package/runtime/EzVisualz/Dropshadow.luau +148 -0
- package/runtime/EzVisualz/Gradient.luau +452 -0
- package/runtime/EzVisualz/GradientTemplates/Bubblegum.luau +16 -0
- package/runtime/EzVisualz/GradientTemplates/Chrome.luau +16 -0
- package/runtime/EzVisualz/GradientTemplates/Death.luau +15 -0
- package/runtime/EzVisualz/GradientTemplates/Electric.luau +14 -0
- package/runtime/EzVisualz/GradientTemplates/Fire.luau +13 -0
- package/runtime/EzVisualz/GradientTemplates/Galaxy.luau +11 -0
- package/runtime/EzVisualz/GradientTemplates/Ghost.luau +16 -0
- package/runtime/EzVisualz/GradientTemplates/Gold.luau +14 -0
- package/runtime/EzVisualz/GradientTemplates/Green.luau +14 -0
- package/runtime/EzVisualz/GradientTemplates/Ice.luau +14 -0
- package/runtime/EzVisualz/GradientTemplates/Lava.luau +15 -0
- package/runtime/EzVisualz/GradientTemplates/Matrix.luau +19 -0
- package/runtime/EzVisualz/GradientTemplates/Neon.luau +12 -0
- package/runtime/EzVisualz/GradientTemplates/Oceanic.luau +15 -0
- package/runtime/EzVisualz/GradientTemplates/Rainbow.luau +13 -0
- package/runtime/EzVisualz/GradientTemplates/Silver.luau +12 -0
- package/runtime/EzVisualz/GradientTemplates/Sunset.luau +11 -0
- package/runtime/EzVisualz/GradientTemplates/Zebra.luau +18 -0
- package/runtime/EzVisualz/GradientTemplates/init.luau +9 -0
- package/runtime/EzVisualz/LICENSE.md +21 -0
- package/runtime/EzVisualz/Presets/Bubblegum.luau +36 -0
- package/runtime/EzVisualz/Presets/ChromeStroke.luau +15 -0
- package/runtime/EzVisualz/Presets/DeathStroke.luau +15 -0
- package/runtime/EzVisualz/Presets/ElectricStroke.luau +54 -0
- package/runtime/EzVisualz/Presets/FireStroke.luau +29 -0
- package/runtime/EzVisualz/Presets/GalaxyStroke.luau +31 -0
- package/runtime/EzVisualz/Presets/Ghost.luau +10 -0
- package/runtime/EzVisualz/Presets/GhostStroke.luau +15 -0
- package/runtime/EzVisualz/Presets/Gold.luau +10 -0
- package/runtime/EzVisualz/Presets/GoldStroke.luau +15 -0
- package/runtime/EzVisualz/Presets/GreenOutline.luau +23 -0
- package/runtime/EzVisualz/Presets/IceStroke.luau +15 -0
- package/runtime/EzVisualz/Presets/Lava.luau +9 -0
- package/runtime/EzVisualz/Presets/LavaStroke.luau +13 -0
- package/runtime/EzVisualz/Presets/Matrix.luau +21 -0
- package/runtime/EzVisualz/Presets/NeonStroke.luau +30 -0
- package/runtime/EzVisualz/Presets/OceanicStroke.luau +15 -0
- package/runtime/EzVisualz/Presets/Rainbow.luau +9 -0
- package/runtime/EzVisualz/Presets/RainbowOutline.luau +23 -0
- package/runtime/EzVisualz/Presets/RainbowStroke.luau +13 -0
- package/runtime/EzVisualz/Presets/Shine.luau +48 -0
- package/runtime/EzVisualz/Presets/ShineOutline.luau +66 -0
- package/runtime/EzVisualz/Presets/Silver.luau +10 -0
- package/runtime/EzVisualz/Presets/SilverStroke.luau +15 -0
- package/runtime/EzVisualz/Presets/SunsetStroke.luau +31 -0
- package/runtime/EzVisualz/Presets/WaveStroke.luau +33 -0
- package/runtime/EzVisualz/Presets/Zebra.luau +21 -0
- package/runtime/EzVisualz/Presets/init.luau +9 -0
- package/runtime/EzVisualz/Stroke.luau +167 -0
- package/runtime/EzVisualz/Util.luau +7 -0
- package/runtime/EzVisualz/_impl/Dropshadow.luau +148 -0
- package/runtime/EzVisualz/_impl/Gradient.luau +452 -0
- package/runtime/EzVisualz/_impl/GradientTemplates/Bubblegum.luau +16 -0
- package/runtime/EzVisualz/_impl/GradientTemplates/Chrome.luau +16 -0
- package/runtime/EzVisualz/_impl/GradientTemplates/Death.luau +15 -0
- package/runtime/EzVisualz/_impl/GradientTemplates/Electric.luau +14 -0
- package/runtime/EzVisualz/_impl/GradientTemplates/Fire.luau +13 -0
- package/runtime/EzVisualz/_impl/GradientTemplates/Galaxy.luau +11 -0
- package/runtime/EzVisualz/_impl/GradientTemplates/Ghost.luau +16 -0
- package/runtime/EzVisualz/_impl/GradientTemplates/Gold.luau +14 -0
- package/runtime/EzVisualz/_impl/GradientTemplates/Green.luau +14 -0
- package/runtime/EzVisualz/_impl/GradientTemplates/Ice.luau +14 -0
- package/runtime/EzVisualz/_impl/GradientTemplates/Lava.luau +15 -0
- package/runtime/EzVisualz/_impl/GradientTemplates/Matrix.luau +19 -0
- package/runtime/EzVisualz/_impl/GradientTemplates/Neon.luau +12 -0
- package/runtime/EzVisualz/_impl/GradientTemplates/Oceanic.luau +15 -0
- package/runtime/EzVisualz/_impl/GradientTemplates/Rainbow.luau +13 -0
- package/runtime/EzVisualz/_impl/GradientTemplates/Silver.luau +12 -0
- package/runtime/EzVisualz/_impl/GradientTemplates/Sunset.luau +11 -0
- package/runtime/EzVisualz/_impl/GradientTemplates/Zebra.luau +18 -0
- package/runtime/EzVisualz/_impl/GradientTemplates/init.luau +9 -0
- package/runtime/EzVisualz/_impl/LICENSE.md +21 -0
- package/runtime/EzVisualz/_impl/Presets/Bubblegum.luau +36 -0
- package/runtime/EzVisualz/_impl/Presets/ChromeStroke.luau +15 -0
- package/runtime/EzVisualz/_impl/Presets/DeathStroke.luau +15 -0
- package/runtime/EzVisualz/_impl/Presets/ElectricStroke.luau +54 -0
- package/runtime/EzVisualz/_impl/Presets/FireStroke.luau +29 -0
- package/runtime/EzVisualz/_impl/Presets/GalaxyStroke.luau +31 -0
- package/runtime/EzVisualz/_impl/Presets/Ghost.luau +10 -0
- package/runtime/EzVisualz/_impl/Presets/GhostStroke.luau +15 -0
- package/runtime/EzVisualz/_impl/Presets/Gold.luau +10 -0
- package/runtime/EzVisualz/_impl/Presets/GoldStroke.luau +15 -0
- package/runtime/EzVisualz/_impl/Presets/GreenOutline.luau +23 -0
- package/runtime/EzVisualz/_impl/Presets/IceStroke.luau +15 -0
- package/runtime/EzVisualz/_impl/Presets/Lava.luau +9 -0
- package/runtime/EzVisualz/_impl/Presets/LavaStroke.luau +13 -0
- package/runtime/EzVisualz/_impl/Presets/Matrix.luau +21 -0
- package/runtime/EzVisualz/_impl/Presets/NeonStroke.luau +30 -0
- package/runtime/EzVisualz/_impl/Presets/OceanicStroke.luau +15 -0
- package/runtime/EzVisualz/_impl/Presets/Rainbow.luau +9 -0
- package/runtime/EzVisualz/_impl/Presets/RainbowOutline.luau +23 -0
- package/runtime/EzVisualz/_impl/Presets/RainbowStroke.luau +13 -0
- package/runtime/EzVisualz/_impl/Presets/Shine.luau +48 -0
- package/runtime/EzVisualz/_impl/Presets/ShineOutline.luau +66 -0
- package/runtime/EzVisualz/_impl/Presets/Silver.luau +10 -0
- package/runtime/EzVisualz/_impl/Presets/SilverStroke.luau +15 -0
- package/runtime/EzVisualz/_impl/Presets/SunsetStroke.luau +31 -0
- package/runtime/EzVisualz/_impl/Presets/WaveStroke.luau +33 -0
- package/runtime/EzVisualz/_impl/Presets/Zebra.luau +21 -0
- package/runtime/EzVisualz/_impl/Presets/init.luau +9 -0
- package/runtime/EzVisualz/_impl/Stroke.luau +167 -0
- package/runtime/EzVisualz/_impl/Util.luau +7 -0
- package/runtime/EzVisualz/_impl/init.luau +319 -0
- package/runtime/EzVisualz/_impl/wally.lock +8 -0
- package/runtime/EzVisualz/_impl/wally.toml +8 -0
- package/runtime/EzVisualz/init.luau +9 -0
- package/runtime/EzVisualz/wally.lock +8 -0
- package/runtime/EzVisualz/wally.toml +8 -0
- package/runtime/FormatNumber/LICENSE.md +25 -0
- package/runtime/FormatNumber/Main/DecimalFormatSymbols.lua +43 -0
- package/runtime/FormatNumber/Main/IntegerWidth.lua +41 -0
- package/runtime/FormatNumber/Main/Notation.lua +116 -0
- package/runtime/FormatNumber/Main/Precision.lua +179 -0
- package/runtime/FormatNumber/Main/init.lua +199 -0
- package/runtime/FormatNumber/Simple/init.lua +76 -0
- package/runtime/FormatNumber/Version.lua +82 -0
- package/runtime/FormatNumber/_impl/LICENSE.md +25 -0
- package/runtime/FormatNumber/_impl/Main/DecimalFormatSymbols.lua +43 -0
- package/runtime/FormatNumber/_impl/Main/IntegerWidth.lua +41 -0
- package/runtime/FormatNumber/_impl/Main/Notation.lua +116 -0
- package/runtime/FormatNumber/_impl/Main/Precision.lua +179 -0
- package/runtime/FormatNumber/_impl/Main/init.lua +199 -0
- package/runtime/FormatNumber/_impl/Simple/init.lua +76 -0
- package/runtime/FormatNumber/_impl/Version.lua +82 -0
- package/runtime/FormatNumber/_impl/_internal/class.lua +204 -0
- package/runtime/FormatNumber/_impl/_internal/decimal_conversion.lua +30 -0
- package/runtime/FormatNumber/_impl/_internal/enums.lua +55 -0
- package/runtime/FormatNumber/_impl/_internal/format.lua +342 -0
- package/runtime/FormatNumber/_impl/_internal/formatter_settings.lua +160 -0
- package/runtime/FormatNumber/_impl/_internal/init.lua +8 -0
- package/runtime/FormatNumber/_impl/_internal/skeleton.lua +541 -0
- package/runtime/FormatNumber/_impl/init.lua +20 -0
- package/runtime/FormatNumber/_internal/class.lua +204 -0
- package/runtime/FormatNumber/_internal/decimal_conversion.lua +30 -0
- package/runtime/FormatNumber/_internal/enums.lua +55 -0
- package/runtime/FormatNumber/_internal/format.lua +342 -0
- package/runtime/FormatNumber/_internal/formatter_settings.lua +160 -0
- package/runtime/FormatNumber/_internal/init.lua +8 -0
- package/runtime/FormatNumber/_internal/skeleton.lua +541 -0
- package/runtime/FormatNumber/init.lua +20 -0
- package/runtime/FormatNumber/init.luau +20 -0
- package/runtime/Fusion/Animation/ExternalTime.luau +84 -0
- package/runtime/Fusion/Animation/Spring.luau +313 -0
- package/runtime/Fusion/Animation/Stopwatch.luau +128 -0
- package/runtime/Fusion/Animation/Tween.luau +178 -0
- package/runtime/Fusion/Animation/getTweenDuration.luau +27 -0
- package/runtime/Fusion/Animation/getTweenRatio.luau +47 -0
- package/runtime/Fusion/Animation/lerpType.luau +164 -0
- package/runtime/Fusion/Animation/packType.luau +100 -0
- package/runtime/Fusion/Animation/springCoefficients.luau +80 -0
- package/runtime/Fusion/Animation/unpackType.luau +103 -0
- package/runtime/Fusion/Colour/Oklab.luau +70 -0
- package/runtime/Fusion/Colour/sRGB.luau +47 -0
- package/runtime/Fusion/External.luau +156 -0
- package/runtime/Fusion/ExternalDebug.luau +70 -0
- package/runtime/Fusion/Graph/Observer.luau +111 -0
- package/runtime/Fusion/Graph/castToGraph.luau +29 -0
- package/runtime/Fusion/Graph/change.luau +81 -0
- package/runtime/Fusion/Graph/depend.luau +33 -0
- package/runtime/Fusion/Graph/evaluate.luau +56 -0
- package/runtime/Fusion/Instances/Attribute.luau +58 -0
- package/runtime/Fusion/Instances/AttributeChange.luau +47 -0
- package/runtime/Fusion/Instances/AttributeOut.luau +63 -0
- package/runtime/Fusion/Instances/Child.luau +21 -0
- package/runtime/Fusion/Instances/Children.luau +148 -0
- package/runtime/Fusion/Instances/Hydrate.luau +29 -0
- package/runtime/Fusion/Instances/New.luau +48 -0
- package/runtime/Fusion/Instances/OnChange.luau +50 -0
- package/runtime/Fusion/Instances/OnEvent.luau +54 -0
- package/runtime/Fusion/Instances/Out.luau +69 -0
- package/runtime/Fusion/Instances/Tag.luau +61 -0
- package/runtime/Fusion/Instances/applyInstanceProps.luau +149 -0
- package/runtime/Fusion/Instances/defaultProps.luau +194 -0
- package/runtime/Fusion/LICENSE +21 -0
- package/runtime/Fusion/Logging/formatError.luau +49 -0
- package/runtime/Fusion/Logging/messages.luau +46 -0
- package/runtime/Fusion/Logging/parseError.luau +25 -0
- package/runtime/Fusion/Memory/checkLifetime.luau +134 -0
- package/runtime/Fusion/Memory/deriveScope.luau +24 -0
- package/runtime/Fusion/Memory/deriveScopeImpl.luau +40 -0
- package/runtime/Fusion/Memory/doCleanup.luau +91 -0
- package/runtime/Fusion/Memory/innerScope.luau +34 -0
- package/runtime/Fusion/Memory/insert.luau +22 -0
- package/runtime/Fusion/Memory/needsDestruction.luau +17 -0
- package/runtime/Fusion/Memory/scoped.luau +24 -0
- package/runtime/Fusion/RobloxExternal.luau +98 -0
- package/runtime/Fusion/State/Computed.luau +122 -0
- package/runtime/Fusion/State/For/Disassembly.luau +207 -0
- package/runtime/Fusion/State/For/ForTypes.luau +30 -0
- package/runtime/Fusion/State/For/init.luau +101 -0
- package/runtime/Fusion/State/ForKeys.luau +88 -0
- package/runtime/Fusion/State/ForPairs.luau +91 -0
- package/runtime/Fusion/State/ForValues.luau +88 -0
- package/runtime/Fusion/State/Value.luau +76 -0
- package/runtime/Fusion/State/castToState.luau +26 -0
- package/runtime/Fusion/State/peek.luau +31 -0
- package/runtime/Fusion/State/updateAll.luau +1 -0
- package/runtime/Fusion/Types.luau +318 -0
- package/runtime/Fusion/Utility/Contextual.luau +91 -0
- package/runtime/Fusion/Utility/Safe.luau +23 -0
- package/runtime/Fusion/Utility/isSimilar.luau +29 -0
- package/runtime/Fusion/Utility/merge.luau +35 -0
- package/runtime/Fusion/Utility/nameOf.luau +35 -0
- package/runtime/Fusion/Utility/never.luau +14 -0
- package/runtime/Fusion/Utility/nicknames.luau +11 -0
- package/runtime/Fusion/Utility/xtypeof.luau +27 -0
- package/runtime/Fusion/_impl/Animation/ExternalTime.luau +84 -0
- package/runtime/Fusion/_impl/Animation/Spring.luau +313 -0
- package/runtime/Fusion/_impl/Animation/Stopwatch.luau +128 -0
- package/runtime/Fusion/_impl/Animation/Tween.luau +178 -0
- package/runtime/Fusion/_impl/Animation/getTweenDuration.luau +27 -0
- package/runtime/Fusion/_impl/Animation/getTweenRatio.luau +47 -0
- package/runtime/Fusion/_impl/Animation/lerpType.luau +164 -0
- package/runtime/Fusion/_impl/Animation/packType.luau +100 -0
- package/runtime/Fusion/_impl/Animation/springCoefficients.luau +80 -0
- package/runtime/Fusion/_impl/Animation/unpackType.luau +103 -0
- package/runtime/Fusion/_impl/Colour/Oklab.luau +70 -0
- package/runtime/Fusion/_impl/Colour/sRGB.luau +47 -0
- package/runtime/Fusion/_impl/External.luau +156 -0
- package/runtime/Fusion/_impl/ExternalDebug.luau +70 -0
- package/runtime/Fusion/_impl/Graph/Observer.luau +111 -0
- package/runtime/Fusion/_impl/Graph/castToGraph.luau +29 -0
- package/runtime/Fusion/_impl/Graph/change.luau +81 -0
- package/runtime/Fusion/_impl/Graph/depend.luau +33 -0
- package/runtime/Fusion/_impl/Graph/evaluate.luau +56 -0
- package/runtime/Fusion/_impl/Instances/Attribute.luau +58 -0
- package/runtime/Fusion/_impl/Instances/AttributeChange.luau +47 -0
- package/runtime/Fusion/_impl/Instances/AttributeOut.luau +63 -0
- package/runtime/Fusion/_impl/Instances/Child.luau +21 -0
- package/runtime/Fusion/_impl/Instances/Children.luau +148 -0
- package/runtime/Fusion/_impl/Instances/Hydrate.luau +29 -0
- package/runtime/Fusion/_impl/Instances/New.luau +48 -0
- package/runtime/Fusion/_impl/Instances/OnChange.luau +50 -0
- package/runtime/Fusion/_impl/Instances/OnEvent.luau +54 -0
- package/runtime/Fusion/_impl/Instances/Out.luau +69 -0
- package/runtime/Fusion/_impl/Instances/Tag.luau +61 -0
- package/runtime/Fusion/_impl/Instances/applyInstanceProps.luau +149 -0
- package/runtime/Fusion/_impl/Instances/defaultProps.luau +194 -0
- package/runtime/Fusion/_impl/LICENSE +21 -0
- package/runtime/Fusion/_impl/Logging/formatError.luau +49 -0
- package/runtime/Fusion/_impl/Logging/messages.luau +46 -0
- package/runtime/Fusion/_impl/Logging/parseError.luau +25 -0
- package/runtime/Fusion/_impl/Memory/checkLifetime.luau +134 -0
- package/runtime/Fusion/_impl/Memory/deriveScope.luau +24 -0
- package/runtime/Fusion/_impl/Memory/deriveScopeImpl.luau +40 -0
- package/runtime/Fusion/_impl/Memory/doCleanup.luau +91 -0
- package/runtime/Fusion/_impl/Memory/innerScope.luau +34 -0
- package/runtime/Fusion/_impl/Memory/insert.luau +22 -0
- package/runtime/Fusion/_impl/Memory/needsDestruction.luau +17 -0
- package/runtime/Fusion/_impl/Memory/scoped.luau +24 -0
- package/runtime/Fusion/_impl/RobloxExternal.luau +98 -0
- package/runtime/Fusion/_impl/State/Computed.luau +122 -0
- package/runtime/Fusion/_impl/State/For/Disassembly.luau +207 -0
- package/runtime/Fusion/_impl/State/For/ForTypes.luau +30 -0
- package/runtime/Fusion/_impl/State/For/init.luau +101 -0
- package/runtime/Fusion/_impl/State/ForKeys.luau +88 -0
- package/runtime/Fusion/_impl/State/ForPairs.luau +91 -0
- package/runtime/Fusion/_impl/State/ForValues.luau +88 -0
- package/runtime/Fusion/_impl/State/Value.luau +76 -0
- package/runtime/Fusion/_impl/State/castToState.luau +26 -0
- package/runtime/Fusion/_impl/State/peek.luau +31 -0
- package/runtime/Fusion/_impl/State/updateAll.luau +1 -0
- package/runtime/Fusion/_impl/Types.luau +318 -0
- package/runtime/Fusion/_impl/Utility/Contextual.luau +91 -0
- package/runtime/Fusion/_impl/Utility/Safe.luau +23 -0
- package/runtime/Fusion/_impl/Utility/isSimilar.luau +29 -0
- package/runtime/Fusion/_impl/Utility/merge.luau +35 -0
- package/runtime/Fusion/_impl/Utility/nameOf.luau +35 -0
- package/runtime/Fusion/_impl/Utility/never.luau +14 -0
- package/runtime/Fusion/_impl/Utility/nicknames.luau +11 -0
- package/runtime/Fusion/_impl/Utility/xtypeof.luau +27 -0
- package/runtime/Fusion/_impl/init.luau +83 -0
- package/runtime/Fusion/init.luau +27 -0
- package/runtime/Iris/API.lua +2085 -0
- package/runtime/Iris/Internal.lua +895 -0
- package/runtime/Iris/LICENSE.txt +21 -0
- package/runtime/Iris/PubTypes.lua +43 -0
- package/runtime/Iris/Types.lua +660 -0
- package/runtime/Iris/WidgetTypes.lua +521 -0
- package/runtime/Iris/_impl/API.lua +2085 -0
- package/runtime/Iris/_impl/Internal.lua +895 -0
- package/runtime/Iris/_impl/LICENSE.txt +21 -0
- package/runtime/Iris/_impl/PubTypes.lua +43 -0
- package/runtime/Iris/_impl/Types.lua +660 -0
- package/runtime/Iris/_impl/WidgetTypes.lua +521 -0
- package/runtime/Iris/_impl/config.lua +305 -0
- package/runtime/Iris/_impl/init.lua +696 -0
- package/runtime/Iris/_impl/widgets/Button.lua +90 -0
- package/runtime/Iris/_impl/widgets/Checkbox.lua +115 -0
- package/runtime/Iris/_impl/widgets/Combo.lua +492 -0
- package/runtime/Iris/_impl/widgets/Format.lua +140 -0
- package/runtime/Iris/_impl/widgets/Image.lua +155 -0
- package/runtime/Iris/_impl/widgets/Input.lua +1232 -0
- package/runtime/Iris/_impl/widgets/Menu.lua +599 -0
- package/runtime/Iris/_impl/widgets/Plot.lua +639 -0
- package/runtime/Iris/_impl/widgets/RadioButton.lua +126 -0
- package/runtime/Iris/_impl/widgets/Root.lua +143 -0
- package/runtime/Iris/_impl/widgets/Tab.lua +333 -0
- package/runtime/Iris/_impl/widgets/Table.lua +635 -0
- package/runtime/Iris/_impl/widgets/Text.lua +132 -0
- package/runtime/Iris/_impl/widgets/Tree.lua +287 -0
- package/runtime/Iris/_impl/widgets/Window.lua +1075 -0
- package/runtime/Iris/_impl/widgets/init.lua +447 -0
- package/runtime/Iris/config.lua +305 -0
- package/runtime/Iris/init.lua +696 -0
- package/runtime/Iris/init.luau +12 -0
- package/runtime/Iris/widgets/Button.lua +90 -0
- package/runtime/Iris/widgets/Checkbox.lua +115 -0
- package/runtime/Iris/widgets/Combo.lua +492 -0
- package/runtime/Iris/widgets/Format.lua +140 -0
- package/runtime/Iris/widgets/Image.lua +155 -0
- package/runtime/Iris/widgets/Input.lua +1232 -0
- package/runtime/Iris/widgets/Menu.lua +599 -0
- package/runtime/Iris/widgets/Plot.lua +639 -0
- package/runtime/Iris/widgets/RadioButton.lua +126 -0
- package/runtime/Iris/widgets/Root.lua +143 -0
- package/runtime/Iris/widgets/Tab.lua +333 -0
- package/runtime/Iris/widgets/Table.lua +635 -0
- package/runtime/Iris/widgets/Text.lua +132 -0
- package/runtime/Iris/widgets/Tree.lua +287 -0
- package/runtime/Iris/widgets/Window.lua +1075 -0
- package/runtime/Iris/widgets/init.lua +447 -0
- package/runtime/Janitor/FastDefer.luau +33 -0
- package/runtime/Janitor/LICENSE +21 -0
- package/runtime/Janitor/_impl/FastDefer.luau +33 -0
- package/runtime/Janitor/_impl/LICENSE +21 -0
- package/runtime/Janitor/_impl/init.luau +999 -0
- package/runtime/Janitor/init.luau +45 -0
- package/runtime/MathUtils/init.luau +100 -0
- package/runtime/Module3D/LICENSE +21 -0
- package/runtime/Module3D/_impl/LICENSE +21 -0
- package/runtime/Module3D/_impl/init.luau +269 -0
- package/runtime/Module3D/init.luau +14 -0
- package/runtime/Net/init.luau +125 -0
- package/runtime/Net/src/codec.luau +153 -0
- package/runtime/Occlude/init.luau +54 -0
- package/runtime/Promise/LICENSE +21 -0
- package/runtime/Promise/_impl/LICENSE +21 -0
- package/runtime/Promise/_impl/init.lua +1991 -0
- package/runtime/Promise/init.lua +1990 -0
- package/runtime/Promise/init.luau +13 -0
- package/runtime/Promise/types.luau +46 -0
- package/runtime/SOURCES.md +22 -0
- package/runtime/Spring/LICENSE +201 -0
- package/runtime/Spring/_impl/LICENSE +201 -0
- package/runtime/Spring/_impl/init.luau +111 -0
- package/runtime/Spring/init.luau +24 -0
- package/runtime/StateMachine/Classes/State.lua +375 -0
- package/runtime/StateMachine/Classes/Transition.lua +336 -0
- package/runtime/StateMachine/Functions/deepCopy.lua +19 -0
- package/runtime/StateMachine/Functions/mergeTables.lua +22 -0
- package/runtime/StateMachine/LICENSE +19 -0
- package/runtime/StateMachine/Vendor/Signal.lua +386 -0
- package/runtime/StateMachine/Vendor/Trove.lua +188 -0
- package/runtime/StateMachine/_impl/Classes/State.lua +375 -0
- package/runtime/StateMachine/_impl/Classes/Transition.lua +336 -0
- package/runtime/StateMachine/_impl/Functions/deepCopy.lua +19 -0
- package/runtime/StateMachine/_impl/Functions/mergeTables.lua +22 -0
- package/runtime/StateMachine/_impl/LICENSE +19 -0
- package/runtime/StateMachine/_impl/Vendor/Signal.lua +386 -0
- package/runtime/StateMachine/_impl/Vendor/Trove.lua +188 -0
- package/runtime/StateMachine/_impl/init.lua +595 -0
- package/runtime/StateMachine/init.lua +595 -0
- package/runtime/StateMachine/init.luau +10 -0
- package/runtime/StickyBillboard/init.luau +167 -0
- package/runtime/TopbarPlus/Attribute.lua +35 -0
- package/runtime/TopbarPlus/Elements/Caption.lua +316 -0
- package/runtime/TopbarPlus/Elements/Container.lua +215 -0
- package/runtime/TopbarPlus/Elements/Dropdown.lua +315 -0
- package/runtime/TopbarPlus/Elements/Indicator.lua +91 -0
- package/runtime/TopbarPlus/Elements/Menu.lua +180 -0
- package/runtime/TopbarPlus/Elements/Notice.lua +113 -0
- package/runtime/TopbarPlus/Elements/Selection.lua +49 -0
- package/runtime/TopbarPlus/Elements/Widget.lua +437 -0
- package/runtime/TopbarPlus/Features/Gamepad.lua +201 -0
- package/runtime/TopbarPlus/Features/Overflow.lua +360 -0
- package/runtime/TopbarPlus/Features/Themes/Classic.lua +27 -0
- package/runtime/TopbarPlus/Features/Themes/Default.lua +75 -0
- package/runtime/TopbarPlus/Features/Themes/init.lua +353 -0
- package/runtime/TopbarPlus/LICENSE +381 -0
- package/runtime/TopbarPlus/Packages/GoodSignal.lua +182 -0
- package/runtime/TopbarPlus/Packages/Janitor.lua +322 -0
- package/runtime/TopbarPlus/Reference.lua +30 -0
- package/runtime/TopbarPlus/Types.lua +477 -0
- package/runtime/TopbarPlus/Utility.lua +462 -0
- package/runtime/TopbarPlus/VERSION.lua +51 -0
- package/runtime/TopbarPlus/_impl/Attribute.lua +35 -0
- package/runtime/TopbarPlus/_impl/Elements/Caption.lua +316 -0
- package/runtime/TopbarPlus/_impl/Elements/Container.lua +215 -0
- package/runtime/TopbarPlus/_impl/Elements/Dropdown.lua +315 -0
- package/runtime/TopbarPlus/_impl/Elements/Indicator.lua +91 -0
- package/runtime/TopbarPlus/_impl/Elements/Menu.lua +180 -0
- package/runtime/TopbarPlus/_impl/Elements/Notice.lua +113 -0
- package/runtime/TopbarPlus/_impl/Elements/Selection.lua +49 -0
- package/runtime/TopbarPlus/_impl/Elements/Widget.lua +437 -0
- package/runtime/TopbarPlus/_impl/Features/Gamepad.lua +201 -0
- package/runtime/TopbarPlus/_impl/Features/Overflow.lua +360 -0
- package/runtime/TopbarPlus/_impl/Features/Themes/Classic.lua +27 -0
- package/runtime/TopbarPlus/_impl/Features/Themes/Default.lua +75 -0
- package/runtime/TopbarPlus/_impl/Features/Themes/init.lua +353 -0
- package/runtime/TopbarPlus/_impl/LICENSE +381 -0
- package/runtime/TopbarPlus/_impl/Packages/GoodSignal.lua +182 -0
- package/runtime/TopbarPlus/_impl/Packages/Janitor.lua +322 -0
- package/runtime/TopbarPlus/_impl/Reference.lua +30 -0
- package/runtime/TopbarPlus/_impl/Types.lua +477 -0
- package/runtime/TopbarPlus/_impl/Utility.lua +462 -0
- package/runtime/TopbarPlus/_impl/VERSION.lua +51 -0
- package/runtime/TopbarPlus/_impl/init.lua +1249 -0
- package/runtime/TopbarPlus/init.lua +1249 -0
- package/runtime/TopbarPlus/init.luau +8 -0
- package/runtime/Twinkle/init.luau +157 -0
- package/runtime/VfxUtil/init.luau +164 -0
- package/src/api.generated.js +3675 -0
- package/src/api.js +57 -0
- package/src/architecture.js +393 -0
- package/src/cli.js +192 -0
- package/src/compile.js +40 -0
- package/src/emit.js +213 -0
- package/src/lex.js +149 -0
- package/src/libs.js +355 -0
- package/src/parse.js +421 -0
- package/src/preprocess.js +80 -0
- package/src/understand.js +453 -0
- package/templates/game/.clangd +5 -0
- package/templates/game/.vscode/c_cpp_properties.json +23 -0
- package/templates/game/.vscode/settings.json +12 -0
- package/templates/game/Packages/.gitkeep +0 -0
- package/templates/game/cluaupp.config.json +6 -0
- package/templates/game/compile_flags.txt +3 -0
- package/templates/game/default.project.json +39 -0
- package/templates/game/package.json +9 -0
- package/templates/game/src/client/init.client.cpp +5 -0
- package/templates/game/src/server/leaderstats.server.cpp +28 -0
- package/templates/game/src/shared/config.cpp +5 -0
- package/templates/game/src/shared/config.h +3 -0
- package/templates/game/wally.toml +11 -0
|
@@ -0,0 +1,3675 @@
|
|
|
1
|
+
// Generated from Roblox API dump 1
|
|
2
|
+
"use strict";
|
|
3
|
+
module.exports = {
|
|
4
|
+
INSTANCE_TYPES: [
|
|
5
|
+
"Accessory",
|
|
6
|
+
"AccessoryDescription",
|
|
7
|
+
"Accoutrement",
|
|
8
|
+
"Actor",
|
|
9
|
+
"AdGui",
|
|
10
|
+
"AdPlacement",
|
|
11
|
+
"AdPortal",
|
|
12
|
+
"AdvancedDragger",
|
|
13
|
+
"AirController",
|
|
14
|
+
"AlignOrientation",
|
|
15
|
+
"AlignPosition",
|
|
16
|
+
"AngularVelocity",
|
|
17
|
+
"Animation",
|
|
18
|
+
"AnimationConstraint",
|
|
19
|
+
"AnimationController",
|
|
20
|
+
"AnimationGraphDefinition",
|
|
21
|
+
"AnimationNodeDefinition",
|
|
22
|
+
"AnimationRigData",
|
|
23
|
+
"AnimationValueNodeDefinition",
|
|
24
|
+
"AnimationValueOutputDefinition",
|
|
25
|
+
"Animator",
|
|
26
|
+
"Annotation",
|
|
27
|
+
"ArcHandles",
|
|
28
|
+
"Atmosphere",
|
|
29
|
+
"AtmosphereSensor",
|
|
30
|
+
"Attachment",
|
|
31
|
+
"AudioAnalyzer",
|
|
32
|
+
"AudioChannelMixer",
|
|
33
|
+
"AudioChannelSplitter",
|
|
34
|
+
"AudioChorus",
|
|
35
|
+
"AudioCompressor",
|
|
36
|
+
"AudioDeviceInput",
|
|
37
|
+
"AudioDeviceOutput",
|
|
38
|
+
"AudioDistortion",
|
|
39
|
+
"AudioEcho",
|
|
40
|
+
"AudioEmitter",
|
|
41
|
+
"AudioEqualizer",
|
|
42
|
+
"AudioFader",
|
|
43
|
+
"AudioFilter",
|
|
44
|
+
"AudioFlanger",
|
|
45
|
+
"AudioGate",
|
|
46
|
+
"AudioLimiter",
|
|
47
|
+
"AudioListener",
|
|
48
|
+
"AudioPitchShifter",
|
|
49
|
+
"AudioPlayer",
|
|
50
|
+
"AudioRecorder",
|
|
51
|
+
"AudioReverb",
|
|
52
|
+
"AudioSearchParams",
|
|
53
|
+
"AudioSpeechToText",
|
|
54
|
+
"AudioTextToSpeech",
|
|
55
|
+
"AudioTremolo",
|
|
56
|
+
"AudioWindSynthesizer",
|
|
57
|
+
"AvatarAbilityRules",
|
|
58
|
+
"AvatarAccessoryRules",
|
|
59
|
+
"AvatarAnimationRules",
|
|
60
|
+
"AvatarBodyRules",
|
|
61
|
+
"AvatarClothingRules",
|
|
62
|
+
"AvatarCollisionRules",
|
|
63
|
+
"AvatarRules",
|
|
64
|
+
"Backpack",
|
|
65
|
+
"BallSocketConstraint",
|
|
66
|
+
"Beam",
|
|
67
|
+
"BillboardGui",
|
|
68
|
+
"BinaryStringValue",
|
|
69
|
+
"BindableEvent",
|
|
70
|
+
"BindableFunction",
|
|
71
|
+
"BlockMesh",
|
|
72
|
+
"BloomEffect",
|
|
73
|
+
"BlurEffect",
|
|
74
|
+
"BodyColors",
|
|
75
|
+
"BodyPartDescription",
|
|
76
|
+
"Bone",
|
|
77
|
+
"BoolValue",
|
|
78
|
+
"BoxHandleAdornment",
|
|
79
|
+
"Breakpoint",
|
|
80
|
+
"BrickColorValue",
|
|
81
|
+
"BubbleChatMessageProperties",
|
|
82
|
+
"BuoyancySensor",
|
|
83
|
+
"CFrameValue",
|
|
84
|
+
"Camera",
|
|
85
|
+
"CanvasGroup",
|
|
86
|
+
"CharacterMesh",
|
|
87
|
+
"ChorusSoundEffect",
|
|
88
|
+
"ClickDetector",
|
|
89
|
+
"ClimbController",
|
|
90
|
+
"Clouds",
|
|
91
|
+
"Color3Value",
|
|
92
|
+
"ColorCorrectionEffect",
|
|
93
|
+
"ColorGradingEffect",
|
|
94
|
+
"CompositeValueCurve",
|
|
95
|
+
"CompressorSoundEffect",
|
|
96
|
+
"ConeHandleAdornment",
|
|
97
|
+
"Configuration",
|
|
98
|
+
"ControlState",
|
|
99
|
+
"ControllerManager",
|
|
100
|
+
"ControllerPartSensor",
|
|
101
|
+
"CornerWedgePart",
|
|
102
|
+
"CurveAnimation",
|
|
103
|
+
"CustomLog",
|
|
104
|
+
"CylinderHandleAdornment",
|
|
105
|
+
"CylindricalConstraint",
|
|
106
|
+
"DataStoreGetOptions",
|
|
107
|
+
"DataStoreIncrementOptions",
|
|
108
|
+
"DataStoreOptions",
|
|
109
|
+
"DataStoreSetOptions",
|
|
110
|
+
"DebuggerWatch",
|
|
111
|
+
"Decal",
|
|
112
|
+
"DepthOfFieldEffect",
|
|
113
|
+
"Dialog",
|
|
114
|
+
"DialogChoice",
|
|
115
|
+
"DigitsRigDescription",
|
|
116
|
+
"DistortionSoundEffect",
|
|
117
|
+
"DragDetector",
|
|
118
|
+
"Dragger",
|
|
119
|
+
"EchoSoundEffect",
|
|
120
|
+
"EqualizerSoundEffect",
|
|
121
|
+
"EulerRotationCurve",
|
|
122
|
+
"ExperienceInviteOptions",
|
|
123
|
+
"ExplorerFilter",
|
|
124
|
+
"Explosion",
|
|
125
|
+
"FaceControls",
|
|
126
|
+
"FileMesh",
|
|
127
|
+
"Fire",
|
|
128
|
+
"FlangeSoundEffect",
|
|
129
|
+
"FloatCurve",
|
|
130
|
+
"FluidForceSensor",
|
|
131
|
+
"Folder",
|
|
132
|
+
"ForceField",
|
|
133
|
+
"Frame",
|
|
134
|
+
"GeneratedFolder",
|
|
135
|
+
"GetTextBoundsParams",
|
|
136
|
+
"GroundController",
|
|
137
|
+
"Handles",
|
|
138
|
+
"HapticEffect",
|
|
139
|
+
"HiddenSurfaceRemovalAsset",
|
|
140
|
+
"Highlight",
|
|
141
|
+
"HingeConstraint",
|
|
142
|
+
"Humanoid",
|
|
143
|
+
"HumanoidController",
|
|
144
|
+
"HumanoidDescription",
|
|
145
|
+
"HumanoidRigDescription",
|
|
146
|
+
"IKControl",
|
|
147
|
+
"ImageButton",
|
|
148
|
+
"ImageHandleAdornment",
|
|
149
|
+
"ImageLabel",
|
|
150
|
+
"InputAction",
|
|
151
|
+
"InputActionLabel",
|
|
152
|
+
"InputBinding",
|
|
153
|
+
"InputContext",
|
|
154
|
+
"IntValue",
|
|
155
|
+
"InternalSyncItem",
|
|
156
|
+
"IntersectOperation",
|
|
157
|
+
"Keyframe",
|
|
158
|
+
"KeyframeMarker",
|
|
159
|
+
"KeyframeSequence",
|
|
160
|
+
"LineForce",
|
|
161
|
+
"LineHandleAdornment",
|
|
162
|
+
"LinearVelocity",
|
|
163
|
+
"LocalScript",
|
|
164
|
+
"LocalizationTable",
|
|
165
|
+
"MakeupDescription",
|
|
166
|
+
"MarkerCurve",
|
|
167
|
+
"MaterialVariant",
|
|
168
|
+
"MeshPart",
|
|
169
|
+
"Model",
|
|
170
|
+
"ModuleScript",
|
|
171
|
+
"Motor",
|
|
172
|
+
"Motor6D",
|
|
173
|
+
"NegateOperation",
|
|
174
|
+
"NoCollisionConstraint",
|
|
175
|
+
"Noise",
|
|
176
|
+
"NumberPose",
|
|
177
|
+
"NumberValue",
|
|
178
|
+
"ObjectValue",
|
|
179
|
+
"OperationGraph",
|
|
180
|
+
"Pants",
|
|
181
|
+
"ParabolaAdornment",
|
|
182
|
+
"Part",
|
|
183
|
+
"PartOperation",
|
|
184
|
+
"PartOperationAsset",
|
|
185
|
+
"ParticleEmitter",
|
|
186
|
+
"Path2D",
|
|
187
|
+
"Path3D",
|
|
188
|
+
"PathfindingLink",
|
|
189
|
+
"PathfindingModifier",
|
|
190
|
+
"PitchShiftSoundEffect",
|
|
191
|
+
"PlaneConstraint",
|
|
192
|
+
"Player",
|
|
193
|
+
"PluginAction",
|
|
194
|
+
"PluginCapabilities",
|
|
195
|
+
"PointLight",
|
|
196
|
+
"Pose",
|
|
197
|
+
"PrismaticConstraint",
|
|
198
|
+
"ProceduralModel",
|
|
199
|
+
"ProximityPrompt",
|
|
200
|
+
"PyramidHandleAdornment",
|
|
201
|
+
"RTAnimationTracker",
|
|
202
|
+
"RayValue",
|
|
203
|
+
"RealtimeMedia",
|
|
204
|
+
"ReflectionMetadata",
|
|
205
|
+
"ReflectionMetadataCallbacks",
|
|
206
|
+
"ReflectionMetadataClass",
|
|
207
|
+
"ReflectionMetadataClasses",
|
|
208
|
+
"ReflectionMetadataEnum",
|
|
209
|
+
"ReflectionMetadataEnumItem",
|
|
210
|
+
"ReflectionMetadataEnums",
|
|
211
|
+
"ReflectionMetadataEvents",
|
|
212
|
+
"ReflectionMetadataFunctions",
|
|
213
|
+
"ReflectionMetadataMember",
|
|
214
|
+
"ReflectionMetadataProperties",
|
|
215
|
+
"ReflectionMetadataYieldFunctions",
|
|
216
|
+
"RelativeGui",
|
|
217
|
+
"RemoteEvent",
|
|
218
|
+
"RemoteFunction",
|
|
219
|
+
"RenderingTest",
|
|
220
|
+
"ReverbSoundEffect",
|
|
221
|
+
"RigidConstraint",
|
|
222
|
+
"RodConstraint",
|
|
223
|
+
"RopeConstraint",
|
|
224
|
+
"RotationCurve",
|
|
225
|
+
"ScreenGui",
|
|
226
|
+
"Script",
|
|
227
|
+
"ScrollingFrame",
|
|
228
|
+
"Seat",
|
|
229
|
+
"SelectionBox",
|
|
230
|
+
"SelectionSphere",
|
|
231
|
+
"Shirt",
|
|
232
|
+
"ShirtGraphic",
|
|
233
|
+
"SkateboardController",
|
|
234
|
+
"Sky",
|
|
235
|
+
"Smoke",
|
|
236
|
+
"Sound",
|
|
237
|
+
"SoundGroup",
|
|
238
|
+
"Sparkles",
|
|
239
|
+
"SpawnLocation",
|
|
240
|
+
"SpecialMesh",
|
|
241
|
+
"SphereHandleAdornment",
|
|
242
|
+
"SpotLight",
|
|
243
|
+
"SpringConstraint",
|
|
244
|
+
"StandalonePluginScripts",
|
|
245
|
+
"StarterGear",
|
|
246
|
+
"StateMachineDefinition",
|
|
247
|
+
"StateMachineTransitionDefinition",
|
|
248
|
+
"StringValue",
|
|
249
|
+
"StudioAttachment",
|
|
250
|
+
"StudioCallout",
|
|
251
|
+
"StyleDerive",
|
|
252
|
+
"StyleLink",
|
|
253
|
+
"StyleQuery",
|
|
254
|
+
"StyleRule",
|
|
255
|
+
"StyleSheet",
|
|
256
|
+
"SunRaysEffect",
|
|
257
|
+
"SurfaceAppearance",
|
|
258
|
+
"SurfaceGui",
|
|
259
|
+
"SurfaceLight",
|
|
260
|
+
"SurfaceSelection",
|
|
261
|
+
"SwimController",
|
|
262
|
+
"Team",
|
|
263
|
+
"TeleportOptions",
|
|
264
|
+
"TerrainDetail",
|
|
265
|
+
"TerrainRegion",
|
|
266
|
+
"TextBox",
|
|
267
|
+
"TextButton",
|
|
268
|
+
"TextChannel",
|
|
269
|
+
"TextChannelWindow",
|
|
270
|
+
"TextChatCommand",
|
|
271
|
+
"TextChatMessageProperties",
|
|
272
|
+
"TextGenerator",
|
|
273
|
+
"TextLabel",
|
|
274
|
+
"Texture",
|
|
275
|
+
"Tool",
|
|
276
|
+
"Torque",
|
|
277
|
+
"TorsionSpringConstraint",
|
|
278
|
+
"TrackerStreamAnimation",
|
|
279
|
+
"Trail",
|
|
280
|
+
"TremoloSoundEffect",
|
|
281
|
+
"TrussPart",
|
|
282
|
+
"Tween",
|
|
283
|
+
"UIAspectRatioConstraint",
|
|
284
|
+
"UICorner",
|
|
285
|
+
"UIDragDetector",
|
|
286
|
+
"UIFlexItem",
|
|
287
|
+
"UIGradient",
|
|
288
|
+
"UIGridLayout",
|
|
289
|
+
"UIListLayout",
|
|
290
|
+
"UIPadding",
|
|
291
|
+
"UIPageLayout",
|
|
292
|
+
"UIScale",
|
|
293
|
+
"UIShadow",
|
|
294
|
+
"UISizeConstraint",
|
|
295
|
+
"UIStroke",
|
|
296
|
+
"UITableLayout",
|
|
297
|
+
"UITextSizeConstraint",
|
|
298
|
+
"UnionOperation",
|
|
299
|
+
"UniversalConstraint",
|
|
300
|
+
"UnreliableRemoteEvent",
|
|
301
|
+
"ValueCurve",
|
|
302
|
+
"Vector3Curve",
|
|
303
|
+
"Vector3Value",
|
|
304
|
+
"VectorForce",
|
|
305
|
+
"VehicleController",
|
|
306
|
+
"VehicleSeat",
|
|
307
|
+
"VelocityMotor",
|
|
308
|
+
"VideoDeviceInput",
|
|
309
|
+
"VideoDisplay",
|
|
310
|
+
"VideoFrame",
|
|
311
|
+
"VideoPlayer",
|
|
312
|
+
"ViewportCamera",
|
|
313
|
+
"ViewportFrame",
|
|
314
|
+
"VisualizationMode",
|
|
315
|
+
"VisualizationModeCategory",
|
|
316
|
+
"WedgePart",
|
|
317
|
+
"Weld",
|
|
318
|
+
"WeldConstraint",
|
|
319
|
+
"Wire",
|
|
320
|
+
"WireframeHandleAdornment",
|
|
321
|
+
"WorkspaceAnnotation",
|
|
322
|
+
"WorldModel",
|
|
323
|
+
"WrapDeformer",
|
|
324
|
+
"WrapLayer",
|
|
325
|
+
"WrapTarget",
|
|
326
|
+
"WrapTextureTransfer"
|
|
327
|
+
],
|
|
328
|
+
SERVICES: [
|
|
329
|
+
"AccountService",
|
|
330
|
+
"AchievementService",
|
|
331
|
+
"ActivityHistoryEventService",
|
|
332
|
+
"AdService",
|
|
333
|
+
"AnalyticsService",
|
|
334
|
+
"AnimatedImageService",
|
|
335
|
+
"AnimationClipProvider",
|
|
336
|
+
"AnimationFromVideoCreatorService",
|
|
337
|
+
"AnimationFromVideoCreatorStudioService",
|
|
338
|
+
"AnnotationsService",
|
|
339
|
+
"AppAgeSignalsService",
|
|
340
|
+
"AppLifecycleObserverService",
|
|
341
|
+
"AppRatingPromptService",
|
|
342
|
+
"AppStorageService",
|
|
343
|
+
"AppUpdateService",
|
|
344
|
+
"AssetCounterService",
|
|
345
|
+
"AssetDeliveryProxy",
|
|
346
|
+
"AssetImportService",
|
|
347
|
+
"AssetManagerService",
|
|
348
|
+
"AssetQualityService",
|
|
349
|
+
"AssetService",
|
|
350
|
+
"AudioFocusService",
|
|
351
|
+
"AuroraScriptService",
|
|
352
|
+
"AuroraService",
|
|
353
|
+
"AvatarChatService",
|
|
354
|
+
"AvatarCreationService",
|
|
355
|
+
"AvatarEditorService",
|
|
356
|
+
"AvatarImportService",
|
|
357
|
+
"AvatarSettings",
|
|
358
|
+
"BadgeService",
|
|
359
|
+
"BranchService",
|
|
360
|
+
"BrowserService",
|
|
361
|
+
"BugReporterService",
|
|
362
|
+
"BulkImportService",
|
|
363
|
+
"CSGDictionaryService",
|
|
364
|
+
"CacheableContentProvider",
|
|
365
|
+
"CallingService",
|
|
366
|
+
"CalloutService",
|
|
367
|
+
"CaptureService",
|
|
368
|
+
"ChangeHistoryService",
|
|
369
|
+
"ChangeHistoryStreamingService",
|
|
370
|
+
"Chat",
|
|
371
|
+
"ClientStorageService",
|
|
372
|
+
"CloudCRUDService",
|
|
373
|
+
"CloudExecutionService",
|
|
374
|
+
"ClusterPacketCache",
|
|
375
|
+
"CollaboratorsService",
|
|
376
|
+
"CollectionService",
|
|
377
|
+
"CommerceService",
|
|
378
|
+
"ConfigService",
|
|
379
|
+
"ConfigureServerService",
|
|
380
|
+
"ConnectivityService",
|
|
381
|
+
"ContentProvider",
|
|
382
|
+
"ContextActionService",
|
|
383
|
+
"ControllerService",
|
|
384
|
+
"CookiesService",
|
|
385
|
+
"CoreGui",
|
|
386
|
+
"CoreGuiConfiguration",
|
|
387
|
+
"CorePackages",
|
|
388
|
+
"CoreScriptDebuggingManagerHelper",
|
|
389
|
+
"CoreScriptSyncService",
|
|
390
|
+
"CreationDBService",
|
|
391
|
+
"CreatorStoreService",
|
|
392
|
+
"CrossDMScriptChangeListener",
|
|
393
|
+
"DataStoreService",
|
|
394
|
+
"Debris",
|
|
395
|
+
"DebugSettings",
|
|
396
|
+
"DebuggablePluginWatcher",
|
|
397
|
+
"DebuggerConnectionManager",
|
|
398
|
+
"DebuggerManager",
|
|
399
|
+
"DebuggerUIService",
|
|
400
|
+
"DeferredAssetManagerService",
|
|
401
|
+
"DesignFoundationsService",
|
|
402
|
+
"DeviceDisplayService",
|
|
403
|
+
"DeviceIdService",
|
|
404
|
+
"DraftsService",
|
|
405
|
+
"DraggerService",
|
|
406
|
+
"EditableService",
|
|
407
|
+
"EditorSourceService",
|
|
408
|
+
"EncodingService",
|
|
409
|
+
"EventIngestService",
|
|
410
|
+
"ExampleV2Service",
|
|
411
|
+
"ExperienceAuthService",
|
|
412
|
+
"ExperienceNotificationService",
|
|
413
|
+
"ExperienceService",
|
|
414
|
+
"ExperienceStateCaptureService",
|
|
415
|
+
"ExperienceStateRecordingService",
|
|
416
|
+
"ExplorerServiceVisibilityService",
|
|
417
|
+
"ExternalIdentityService",
|
|
418
|
+
"FaceAnimatorService",
|
|
419
|
+
"FacialAgeEstimationService",
|
|
420
|
+
"FacialAnimationRecordingService",
|
|
421
|
+
"FacialAnimationStreamingServiceV2",
|
|
422
|
+
"FeatureRestrictionManager",
|
|
423
|
+
"FileManagerService",
|
|
424
|
+
"FileSyncReplicationService",
|
|
425
|
+
"FlagStandService",
|
|
426
|
+
"FlyweightService",
|
|
427
|
+
"FriendService",
|
|
428
|
+
"GamePassService",
|
|
429
|
+
"GameSettings",
|
|
430
|
+
"GamepadService",
|
|
431
|
+
"GenerationService",
|
|
432
|
+
"GenericChallengeService",
|
|
433
|
+
"Geometry",
|
|
434
|
+
"GeometryService",
|
|
435
|
+
"GongService",
|
|
436
|
+
"GroupService",
|
|
437
|
+
"GuiService",
|
|
438
|
+
"GuidRegistryService",
|
|
439
|
+
"HSRDataContentProvider",
|
|
440
|
+
"HapticService",
|
|
441
|
+
"HarmonyService",
|
|
442
|
+
"HeapProfilerService",
|
|
443
|
+
"HeatmapQueryService",
|
|
444
|
+
"HeatmapService",
|
|
445
|
+
"HeightmapImporterService",
|
|
446
|
+
"Hopper",
|
|
447
|
+
"HttpRbxApiService",
|
|
448
|
+
"HttpService",
|
|
449
|
+
"ILegacyStudioBridge",
|
|
450
|
+
"IXPService",
|
|
451
|
+
"ImageScreenCaptureService",
|
|
452
|
+
"IncrementalPatchBuilder",
|
|
453
|
+
"InsertService",
|
|
454
|
+
"InstanceExtensionsService",
|
|
455
|
+
"InstanceFileSyncService",
|
|
456
|
+
"IntentService",
|
|
457
|
+
"InternalMessagingService",
|
|
458
|
+
"InternalMessagingServiceVerifier",
|
|
459
|
+
"InternalSyncService",
|
|
460
|
+
"JointsService",
|
|
461
|
+
"KeyboardService",
|
|
462
|
+
"KeyframeSequenceProvider",
|
|
463
|
+
"LanguageService",
|
|
464
|
+
"LegacyStudioBridge",
|
|
465
|
+
"Lighting",
|
|
466
|
+
"LinkingService",
|
|
467
|
+
"LiveScriptingService",
|
|
468
|
+
"LiveSyncService",
|
|
469
|
+
"LocalStorageService",
|
|
470
|
+
"LocalizationService",
|
|
471
|
+
"LodDataService",
|
|
472
|
+
"LogReporterService",
|
|
473
|
+
"LogService",
|
|
474
|
+
"LoginService",
|
|
475
|
+
"LuaSettings",
|
|
476
|
+
"LuaWebService",
|
|
477
|
+
"LuauExpressionService",
|
|
478
|
+
"LuauScriptAnalyzerService",
|
|
479
|
+
"MLModelDeliveryService",
|
|
480
|
+
"MLService",
|
|
481
|
+
"MarketplaceService",
|
|
482
|
+
"MatchmakingService",
|
|
483
|
+
"MaterialGenerationService",
|
|
484
|
+
"MaterialService",
|
|
485
|
+
"MemStorageService",
|
|
486
|
+
"MemoryStoreService",
|
|
487
|
+
"MeshContentProvider",
|
|
488
|
+
"MessageBusService",
|
|
489
|
+
"MessagingService",
|
|
490
|
+
"MetaBreakpointManager",
|
|
491
|
+
"MicroProfilerService",
|
|
492
|
+
"ModerationService",
|
|
493
|
+
"MomentsService",
|
|
494
|
+
"MouseService",
|
|
495
|
+
"NetworkClient",
|
|
496
|
+
"NetworkServer",
|
|
497
|
+
"NetworkSettings",
|
|
498
|
+
"NonReplicatedCSGDictionaryService",
|
|
499
|
+
"NotificationService",
|
|
500
|
+
"OmniRecommendationsService",
|
|
501
|
+
"OpenCloudService",
|
|
502
|
+
"PackageService",
|
|
503
|
+
"PackageUIService",
|
|
504
|
+
"Packages",
|
|
505
|
+
"PartyEmulatorService",
|
|
506
|
+
"PatchBundlerFileWatch",
|
|
507
|
+
"PathfindingService",
|
|
508
|
+
"PerformanceControlService",
|
|
509
|
+
"PermissionsService",
|
|
510
|
+
"PhysicsService",
|
|
511
|
+
"PhysicsSettings",
|
|
512
|
+
"PinShortcutService",
|
|
513
|
+
"PlaceAssetIdsService",
|
|
514
|
+
"PlaceStatsService",
|
|
515
|
+
"PlacesService",
|
|
516
|
+
"PlatformCloudStorageService",
|
|
517
|
+
"PlatformFriendsService",
|
|
518
|
+
"PlatformLibraries",
|
|
519
|
+
"PlayerDataService",
|
|
520
|
+
"PlayerEmulatorService",
|
|
521
|
+
"PlayerHydrationService",
|
|
522
|
+
"PlayerViewService",
|
|
523
|
+
"Players",
|
|
524
|
+
"PluginConnectionService",
|
|
525
|
+
"PluginDebugService",
|
|
526
|
+
"PluginGuiService",
|
|
527
|
+
"PluginManagementService",
|
|
528
|
+
"PluginPolicyService",
|
|
529
|
+
"PointsService",
|
|
530
|
+
"PolicyService",
|
|
531
|
+
"PopLatencyService",
|
|
532
|
+
"Preloaded",
|
|
533
|
+
"ProceduralBehaviorSchedulerService",
|
|
534
|
+
"ProcessInstancePhysicsService",
|
|
535
|
+
"ProximityPromptService",
|
|
536
|
+
"PublishService",
|
|
537
|
+
"QueueService",
|
|
538
|
+
"RbxAnalyticsService",
|
|
539
|
+
"RecommendationService",
|
|
540
|
+
"ReflectionService",
|
|
541
|
+
"RemoteCommandService",
|
|
542
|
+
"RemoteCursorService",
|
|
543
|
+
"RemoteDebuggerServer",
|
|
544
|
+
"RenderSettings",
|
|
545
|
+
"ReplicatedFirst",
|
|
546
|
+
"ReplicatedStorage",
|
|
547
|
+
"RequestOrchestratorService",
|
|
548
|
+
"RibbonNotificationService",
|
|
549
|
+
"RobloxPluginGuiService",
|
|
550
|
+
"RobloxReplicatedStorage",
|
|
551
|
+
"RobloxServerStorage",
|
|
552
|
+
"RolloutValidationService",
|
|
553
|
+
"RomarkRbxAnalyticsService",
|
|
554
|
+
"RomarkService",
|
|
555
|
+
"RtMessagingService",
|
|
556
|
+
"RunService",
|
|
557
|
+
"RuntimeContentService",
|
|
558
|
+
"RuntimeScriptService",
|
|
559
|
+
"SafetyService",
|
|
560
|
+
"SceneAnalysisService",
|
|
561
|
+
"ScriptChangeService",
|
|
562
|
+
"ScriptCloneWatcher",
|
|
563
|
+
"ScriptCloneWatcherHelper",
|
|
564
|
+
"ScriptCommitService",
|
|
565
|
+
"ScriptContext",
|
|
566
|
+
"ScriptDebuggerService",
|
|
567
|
+
"ScriptEditorService",
|
|
568
|
+
"ScriptProfilerService",
|
|
569
|
+
"ScriptRegistrationService",
|
|
570
|
+
"ScriptScannerService",
|
|
571
|
+
"ScriptService",
|
|
572
|
+
"Selection",
|
|
573
|
+
"SelectionHighlightManager",
|
|
574
|
+
"SerializationService",
|
|
575
|
+
"ServerScriptService",
|
|
576
|
+
"ServerStorage",
|
|
577
|
+
"ServiceVisibilityService",
|
|
578
|
+
"SessionCheckService",
|
|
579
|
+
"SessionService",
|
|
580
|
+
"SharedTableRegistry",
|
|
581
|
+
"SlimAnimationReplicationService",
|
|
582
|
+
"SlimContentProvider",
|
|
583
|
+
"SlimDebugSettings",
|
|
584
|
+
"SlimReplicationService",
|
|
585
|
+
"SlimService",
|
|
586
|
+
"SmoothVoxelsUpgraderService",
|
|
587
|
+
"SnippetService",
|
|
588
|
+
"SocialService",
|
|
589
|
+
"SolidModelContentProvider",
|
|
590
|
+
"SoundService",
|
|
591
|
+
"SoundShimService",
|
|
592
|
+
"SpawnerService",
|
|
593
|
+
"StartPageService",
|
|
594
|
+
"StarterGui",
|
|
595
|
+
"StarterPack",
|
|
596
|
+
"StarterPlayer",
|
|
597
|
+
"StartupMessageService",
|
|
598
|
+
"Stats",
|
|
599
|
+
"StopWatchReporter",
|
|
600
|
+
"Studio",
|
|
601
|
+
"StudioAssetService",
|
|
602
|
+
"StudioCameraService",
|
|
603
|
+
"StudioCaptureService",
|
|
604
|
+
"StudioData",
|
|
605
|
+
"StudioDeviceEmulatorService",
|
|
606
|
+
"StudioDeviceSimulatorService",
|
|
607
|
+
"StudioPublishService",
|
|
608
|
+
"StudioScriptDebugEventListener",
|
|
609
|
+
"StudioSdkService",
|
|
610
|
+
"StudioService",
|
|
611
|
+
"StudioTestService",
|
|
612
|
+
"StudioUserService",
|
|
613
|
+
"StudioWidgetsService",
|
|
614
|
+
"StylingService",
|
|
615
|
+
"SystemThemeService",
|
|
616
|
+
"TaskScheduler",
|
|
617
|
+
"TeamCreateData",
|
|
618
|
+
"TeamCreatePublishService",
|
|
619
|
+
"TeamCreateService",
|
|
620
|
+
"Teams",
|
|
621
|
+
"TelemetryService",
|
|
622
|
+
"TeleportService",
|
|
623
|
+
"TemporaryCageMeshProvider",
|
|
624
|
+
"TemporaryScriptService",
|
|
625
|
+
"TestService",
|
|
626
|
+
"TextBoxService",
|
|
627
|
+
"TextChatService",
|
|
628
|
+
"TextService",
|
|
629
|
+
"TextureGenerationService",
|
|
630
|
+
"ThirdPartyUserService",
|
|
631
|
+
"TimerService",
|
|
632
|
+
"ToastNotificationService",
|
|
633
|
+
"TouchInputService",
|
|
634
|
+
"TraceRouteService",
|
|
635
|
+
"TracerService",
|
|
636
|
+
"TutorialService",
|
|
637
|
+
"TweenService",
|
|
638
|
+
"UGCAvatarService",
|
|
639
|
+
"UGCValidationService",
|
|
640
|
+
"UIDragDetectorService",
|
|
641
|
+
"UniqueIdLookupService",
|
|
642
|
+
"UnvalidatedAssetService",
|
|
643
|
+
"UserGameSettings",
|
|
644
|
+
"UserInputService",
|
|
645
|
+
"UserService",
|
|
646
|
+
"UserStorageService",
|
|
647
|
+
"VRService",
|
|
648
|
+
"VRStatusService",
|
|
649
|
+
"VersionControlService",
|
|
650
|
+
"VideoCaptureService",
|
|
651
|
+
"VideoScreenCaptureService",
|
|
652
|
+
"VideoService",
|
|
653
|
+
"VirtualInputManager",
|
|
654
|
+
"VirtualUser",
|
|
655
|
+
"VisibilityCheckDispatcher",
|
|
656
|
+
"Visit",
|
|
657
|
+
"VisualizationModeService",
|
|
658
|
+
"VoiceChatInternal",
|
|
659
|
+
"VoiceChatService",
|
|
660
|
+
"WebSocketService",
|
|
661
|
+
"WebViewService",
|
|
662
|
+
"WindowProtocolService",
|
|
663
|
+
"Workspace",
|
|
664
|
+
"WrapContentProvider",
|
|
665
|
+
"WrapDeformMeshProvider"
|
|
666
|
+
],
|
|
667
|
+
METHODS: [
|
|
668
|
+
"Abort",
|
|
669
|
+
"Abs",
|
|
670
|
+
"AcquireContextFocus",
|
|
671
|
+
"AcquireFocus",
|
|
672
|
+
"AcquireProofAsync",
|
|
673
|
+
"AcquireWakeLock",
|
|
674
|
+
"ActionEnabled",
|
|
675
|
+
"ActionTaken",
|
|
676
|
+
"Activate",
|
|
677
|
+
"Add",
|
|
678
|
+
"AddAccessory",
|
|
679
|
+
"AddAction",
|
|
680
|
+
"AddAsync",
|
|
681
|
+
"AddBone",
|
|
682
|
+
"AddBoolField",
|
|
683
|
+
"AddBreakpoint",
|
|
684
|
+
"AddCFrameField",
|
|
685
|
+
"AddCenterDialog",
|
|
686
|
+
"AddColor",
|
|
687
|
+
"AddConstraintFunction",
|
|
688
|
+
"AddCoreScriptLocal",
|
|
689
|
+
"AddCustomStatus",
|
|
690
|
+
"AddDebugger",
|
|
691
|
+
"AddEmote",
|
|
692
|
+
"AddFace",
|
|
693
|
+
"AddFocusCallback",
|
|
694
|
+
"AddGlobalPointsField",
|
|
695
|
+
"AddGlobalPointsTag",
|
|
696
|
+
"AddInputPin",
|
|
697
|
+
"AddInstanceField",
|
|
698
|
+
"AddIntField",
|
|
699
|
+
"AddItem",
|
|
700
|
+
"AddKey",
|
|
701
|
+
"AddKeyframe",
|
|
702
|
+
"AddLine",
|
|
703
|
+
"AddLines",
|
|
704
|
+
"AddMarker",
|
|
705
|
+
"AddMenu",
|
|
706
|
+
"AddNewAction",
|
|
707
|
+
"AddNewPlace",
|
|
708
|
+
"AddNormal",
|
|
709
|
+
"AddNumberField",
|
|
710
|
+
"AddPath",
|
|
711
|
+
"AddPersistentPlayer",
|
|
712
|
+
"AddPlayers",
|
|
713
|
+
"AddPose",
|
|
714
|
+
"AddReplicationFocus",
|
|
715
|
+
"AddReplicationFocusPosition",
|
|
716
|
+
"AddSelectionParent",
|
|
717
|
+
"AddSelectionTuple",
|
|
718
|
+
"AddSeparator",
|
|
719
|
+
"AddSpecialKey",
|
|
720
|
+
"AddStatus",
|
|
721
|
+
"AddSubPose",
|
|
722
|
+
"AddTag",
|
|
723
|
+
"AddText",
|
|
724
|
+
"AddTo",
|
|
725
|
+
"AddToBlockList",
|
|
726
|
+
"AddTriangle",
|
|
727
|
+
"AddUV",
|
|
728
|
+
"AddUnitVector3Field",
|
|
729
|
+
"AddUserAsync",
|
|
730
|
+
"AddVector2Field",
|
|
731
|
+
"AddVector3Field",
|
|
732
|
+
"AddVertex",
|
|
733
|
+
"AddWatch",
|
|
734
|
+
"AdjustSpeed",
|
|
735
|
+
"AdjustWeight",
|
|
736
|
+
"AdvanceToNextPageAsync",
|
|
737
|
+
"Angle",
|
|
738
|
+
"AngularAccelerationToTorque",
|
|
739
|
+
"AnimationIdSelected",
|
|
740
|
+
"AnswerIncomingCall",
|
|
741
|
+
"AppendTempAssetId",
|
|
742
|
+
"AppendVantagePoint",
|
|
743
|
+
"ApplyAngularImpulse",
|
|
744
|
+
"ApplyAvatarRules",
|
|
745
|
+
"ApplyDescription",
|
|
746
|
+
"ApplyDescriptionAsync",
|
|
747
|
+
"ApplyDescriptionReset",
|
|
748
|
+
"ApplyDescriptionResetAsync",
|
|
749
|
+
"ApplyFillInBox",
|
|
750
|
+
"ApplyHighlight",
|
|
751
|
+
"ApplyImpulse",
|
|
752
|
+
"ApplyImpulseAtPosition",
|
|
753
|
+
"ApplyJointVelocities",
|
|
754
|
+
"ApplyLayout",
|
|
755
|
+
"ApplyMesh",
|
|
756
|
+
"ApplyPreset",
|
|
757
|
+
"ApplyRecommendedStreamingSettings",
|
|
758
|
+
"ApplyShadows",
|
|
759
|
+
"ApplySpecificImpulse",
|
|
760
|
+
"ApplySpotlight",
|
|
761
|
+
"ApplyToDataModel",
|
|
762
|
+
"ApplyTransform",
|
|
763
|
+
"ApplyTransformSubregion",
|
|
764
|
+
"ApproveAssetId",
|
|
765
|
+
"ApproveAssetVersionId",
|
|
766
|
+
"ArchiveBranchAsync",
|
|
767
|
+
"AreInstanceTreesEquivalent",
|
|
768
|
+
"ArePartsTouchingOthers",
|
|
769
|
+
"Assert",
|
|
770
|
+
"AssertLegacy",
|
|
771
|
+
"AttachCallout",
|
|
772
|
+
"AutoRig",
|
|
773
|
+
"AutoSelectGui",
|
|
774
|
+
"AutoSetupAvatarAsync",
|
|
775
|
+
"AutoSetupSerializedAvatarAsync",
|
|
776
|
+
"AutowedgeCell",
|
|
777
|
+
"AutowedgeCells",
|
|
778
|
+
"AwardBadge",
|
|
779
|
+
"AwardBadgeAsync",
|
|
780
|
+
"AwardPoints",
|
|
781
|
+
"AxisRotate",
|
|
782
|
+
"BanAsync",
|
|
783
|
+
"Base64Decode",
|
|
784
|
+
"Base64Encode",
|
|
785
|
+
"BatchAdd",
|
|
786
|
+
"BatchCommitAsync",
|
|
787
|
+
"BatchGetAsync",
|
|
788
|
+
"BatchGetFaceAttributes",
|
|
789
|
+
"BatchGetValues",
|
|
790
|
+
"BatchGetVertexAttributes",
|
|
791
|
+
"BatchGetVertexFaceAttributes",
|
|
792
|
+
"BatchRemove",
|
|
793
|
+
"BatchSetFaceAttributes",
|
|
794
|
+
"BatchSetValues",
|
|
795
|
+
"BatchSetVertexFaceAttributes",
|
|
796
|
+
"BeginDrag",
|
|
797
|
+
"BeginRecording",
|
|
798
|
+
"BeginSearch",
|
|
799
|
+
"Bind",
|
|
800
|
+
"BindAction",
|
|
801
|
+
"BindActionAtPriority",
|
|
802
|
+
"BindActionToInputTypes",
|
|
803
|
+
"BindActivate",
|
|
804
|
+
"BindAndFire",
|
|
805
|
+
"BindButton",
|
|
806
|
+
"BindCoreAction",
|
|
807
|
+
"BindCoreActionAtPriority",
|
|
808
|
+
"BindCoreActivate",
|
|
809
|
+
"BindReceiptHandler",
|
|
810
|
+
"BindReviewableContentEventProcessor",
|
|
811
|
+
"BindToAnimation",
|
|
812
|
+
"BindToClose",
|
|
813
|
+
"BindToCollisionSummaries",
|
|
814
|
+
"BindToMessage",
|
|
815
|
+
"BindToMessageParallel",
|
|
816
|
+
"BindToRenderStep",
|
|
817
|
+
"BindToSimulation",
|
|
818
|
+
"Block",
|
|
819
|
+
"Blockcast",
|
|
820
|
+
"BreakJoints",
|
|
821
|
+
"BroadcastNotification",
|
|
822
|
+
"BuildRigFromAttachments",
|
|
823
|
+
"BulkMoveTo",
|
|
824
|
+
"BustAvatarFetchCache",
|
|
825
|
+
"Button1Down",
|
|
826
|
+
"Button1Up",
|
|
827
|
+
"Button2Down",
|
|
828
|
+
"Button2Up",
|
|
829
|
+
"CacheCurrentTerrain",
|
|
830
|
+
"CacheDefaults",
|
|
831
|
+
"CachePartOperationsAsync",
|
|
832
|
+
"CalculateAverageEditableCageMeshDistance",
|
|
833
|
+
"CalculateBodyMaxCageDistance",
|
|
834
|
+
"CalculateConstraintsToPreserve",
|
|
835
|
+
"CalculateEditableMeshInsideMeshPercentage",
|
|
836
|
+
"CalculateEditableMeshModifiedCageBoundingBox",
|
|
837
|
+
"CalculateEditableMeshNumModifiedCageUVsInSet",
|
|
838
|
+
"CalculateEditableMeshTotalSurfaceArea",
|
|
839
|
+
"CalculateEditableMeshUniqueUVCount",
|
|
840
|
+
"CalculateJumpDistance",
|
|
841
|
+
"CalculateJumpHeight",
|
|
842
|
+
"CalculateJumpPower",
|
|
843
|
+
"Call",
|
|
844
|
+
"CallFunction",
|
|
845
|
+
"CanCaptureScreenshot",
|
|
846
|
+
"CanCaptureVideo",
|
|
847
|
+
"CanCollideWith",
|
|
848
|
+
"CanEditAssetAsync",
|
|
849
|
+
"CanEnterCaptureMode",
|
|
850
|
+
"CanHaveConnectionType",
|
|
851
|
+
"CanLeaveTest",
|
|
852
|
+
"CanLoadAsset",
|
|
853
|
+
"CanPerformBinaryUpdate",
|
|
854
|
+
"CanPromptOptInAsync",
|
|
855
|
+
"CanRecordAsync",
|
|
856
|
+
"CanSendCallInviteAsync",
|
|
857
|
+
"CanSendGameInviteAsync",
|
|
858
|
+
"CanSetNetworkOwnership",
|
|
859
|
+
"CanSmoothVoxelsBeUpgraded",
|
|
860
|
+
"CanUserChatAsync",
|
|
861
|
+
"CanUsersChatAsync",
|
|
862
|
+
"CanUsersDirectChatAsync",
|
|
863
|
+
"CanUsersWhisperAsync",
|
|
864
|
+
"CanViewBrandProjectAsync",
|
|
865
|
+
"Cancel",
|
|
866
|
+
"CancelActiveOperation",
|
|
867
|
+
"CancelAllNotification",
|
|
868
|
+
"CancelAutoSetupAvatarAsync",
|
|
869
|
+
"CancelGenerationRequest",
|
|
870
|
+
"CancelImportHeightmap",
|
|
871
|
+
"CancelNotification",
|
|
872
|
+
"CancelPrefetch",
|
|
873
|
+
"CaptureController",
|
|
874
|
+
"CaptureFocus",
|
|
875
|
+
"CapturePluginGui",
|
|
876
|
+
"CaptureScreenshot",
|
|
877
|
+
"CaptureScreenshotAsync",
|
|
878
|
+
"CaptureSnapshotAsync",
|
|
879
|
+
"Ceil",
|
|
880
|
+
"CellCenterToWorld",
|
|
881
|
+
"CellCornerToWorld",
|
|
882
|
+
"ChangeState",
|
|
883
|
+
"Chat",
|
|
884
|
+
"ChatLocal",
|
|
885
|
+
"Check",
|
|
886
|
+
"CheckApplyDefaultClothing",
|
|
887
|
+
"CheckApplyDefaultClothingAsync",
|
|
888
|
+
"CheckEditableMeshInCameraFrustum",
|
|
889
|
+
"CheckForUpdate",
|
|
890
|
+
"CheckMomentTextStatusAsync",
|
|
891
|
+
"CheckOcclusionAsync",
|
|
892
|
+
"CheckOrRequestCameraPermission",
|
|
893
|
+
"CheckUploadCaptureStatusAsync",
|
|
894
|
+
"CheckUploadCaptureStatusForSupportTicketAsync",
|
|
895
|
+
"CheckUserBadgesAsync",
|
|
896
|
+
"Checkpoint",
|
|
897
|
+
"Clear",
|
|
898
|
+
"ClearAllChildren",
|
|
899
|
+
"ClearAsync",
|
|
900
|
+
"ClearBreakpoints",
|
|
901
|
+
"ClearCache",
|
|
902
|
+
"ClearCachedAvatarAppearance",
|
|
903
|
+
"ClearCachedTerrain",
|
|
904
|
+
"ClearCharacterAppearance",
|
|
905
|
+
"ClearComputerCameraMovementModes",
|
|
906
|
+
"ClearComputerMovementModes",
|
|
907
|
+
"ClearCreatorLayers",
|
|
908
|
+
"ClearDefaults",
|
|
909
|
+
"ClearError",
|
|
910
|
+
"ClearInertialScrolling",
|
|
911
|
+
"ClearJoinAfterMoveJoints",
|
|
912
|
+
"ClearOutput",
|
|
913
|
+
"ClearProductInfoCaches",
|
|
914
|
+
"ClearSessionId",
|
|
915
|
+
"ClearTerrainSelectionHack",
|
|
916
|
+
"ClearTestingValue",
|
|
917
|
+
"ClearTokens",
|
|
918
|
+
"ClearTouchCameraMovementModes",
|
|
919
|
+
"ClearTouchMovementModes",
|
|
920
|
+
"ClearUploadNames",
|
|
921
|
+
"ClearUriScript",
|
|
922
|
+
"ClearUserLayers",
|
|
923
|
+
"ClearVoxelsAsync_beta",
|
|
924
|
+
"ClickButton1",
|
|
925
|
+
"ClickButton2",
|
|
926
|
+
"ClientRequestData",
|
|
927
|
+
"ClientRequestDataAsync",
|
|
928
|
+
"ClientStart",
|
|
929
|
+
"ClientStop",
|
|
930
|
+
"Clone",
|
|
931
|
+
"Close",
|
|
932
|
+
"CloseAfterPublish",
|
|
933
|
+
"CloseAsync",
|
|
934
|
+
"CloseBrowserWindow",
|
|
935
|
+
"CloseGameIfUserDoesntHavePerms",
|
|
936
|
+
"CloseInspectMenu",
|
|
937
|
+
"CloseStatsBasedOnInputString",
|
|
938
|
+
"CloseWindow",
|
|
939
|
+
"ClosestPoint",
|
|
940
|
+
"CollisionGroupContainsPart",
|
|
941
|
+
"CollisionGroupSetCollidable",
|
|
942
|
+
"CollisionGroupsAreCollidable",
|
|
943
|
+
"CommitBlock",
|
|
944
|
+
"CommitEdits",
|
|
945
|
+
"CompleteMerge",
|
|
946
|
+
"ComposeDecalAsync",
|
|
947
|
+
"CompressBuffer",
|
|
948
|
+
"CompressLuaApp",
|
|
949
|
+
"ComputeAsync",
|
|
950
|
+
"ComputeBufferHash",
|
|
951
|
+
"ComputeOriginalSizeForPart",
|
|
952
|
+
"ComputeR15BodyBoundingBox",
|
|
953
|
+
"ComputeRawPathAsync",
|
|
954
|
+
"ComputeSmoothPathAsync",
|
|
955
|
+
"ComputeStringHash",
|
|
956
|
+
"ConformToAvatarRules",
|
|
957
|
+
"ConformToAvatarRulesAsync",
|
|
958
|
+
"Connect",
|
|
959
|
+
"ConnectAsync",
|
|
960
|
+
"ConnectLocal",
|
|
961
|
+
"ConvertSlimAcrToObj",
|
|
962
|
+
"ConvertToMockPackage",
|
|
963
|
+
"ConvertToPackageAsync",
|
|
964
|
+
"ConvertToPackageClosedCallback",
|
|
965
|
+
"ConvertToPackageUpload",
|
|
966
|
+
"ConvertToSmooth",
|
|
967
|
+
"CopyAuthCookieFromBrowserToEngine",
|
|
968
|
+
"CopyRegion",
|
|
969
|
+
"CopyToClipboard",
|
|
970
|
+
"CountCells",
|
|
971
|
+
"CountChildren",
|
|
972
|
+
"Create",
|
|
973
|
+
"CreateAdRewardFromDevProductId",
|
|
974
|
+
"CreateAlias",
|
|
975
|
+
"CreateAndSavePropertySet",
|
|
976
|
+
"CreateAnimationByUploadingVideo",
|
|
977
|
+
"CreateAnnotation",
|
|
978
|
+
"CreateAssetAndWaitForAssetId",
|
|
979
|
+
"CreateAssetAsync",
|
|
980
|
+
"CreateAssetOrAssetVersionAndPollAssetWithTelemetryAsync",
|
|
981
|
+
"CreateAssetOrAssetVersionAndPollAssetWithTelemetryAsyncWithAddParam",
|
|
982
|
+
"CreateAssetOrAssetVersionAndPollAssetWithTelemetryAsyncWithAddParamErrorJson",
|
|
983
|
+
"CreateAssetVersionAsync",
|
|
984
|
+
"CreateBasicMeshPart",
|
|
985
|
+
"CreateBranchAsync",
|
|
986
|
+
"CreateButton",
|
|
987
|
+
"CreateCageMeshPartsWithScaleForExportAsync",
|
|
988
|
+
"CreateCallAsync",
|
|
989
|
+
"CreateClient",
|
|
990
|
+
"CreateCollection",
|
|
991
|
+
"CreateCollisionGroup",
|
|
992
|
+
"CreateDataModelContentAsync",
|
|
993
|
+
"CreateDecalAsync",
|
|
994
|
+
"CreateDeviceAsync",
|
|
995
|
+
"CreateDockWidgetPluginGui",
|
|
996
|
+
"CreateDockWidgetPluginGuiAsync",
|
|
997
|
+
"CreateEditableImage",
|
|
998
|
+
"CreateEditableImageAsync",
|
|
999
|
+
"CreateEditableImageFromBinaryStringRobloxOnly",
|
|
1000
|
+
"CreateEditableImageFromDownloadAsync",
|
|
1001
|
+
"CreateEditableImageOriginalSizeAsync",
|
|
1002
|
+
"CreateEditableMesh",
|
|
1003
|
+
"CreateEditableMeshAsync",
|
|
1004
|
+
"CreateEditableMeshFromBinaryStringRobloxOnly",
|
|
1005
|
+
"CreateExpression",
|
|
1006
|
+
"CreateExtraAssetsFileFromPropertySet",
|
|
1007
|
+
"CreateHumanoidModelFromDescription",
|
|
1008
|
+
"CreateHumanoidModelFromDescriptionAsync",
|
|
1009
|
+
"CreateHumanoidModelFromUserId",
|
|
1010
|
+
"CreateHumanoidModelFromUserIdAsync",
|
|
1011
|
+
"CreateJob",
|
|
1012
|
+
"CreateJoinAfterMoveJoints",
|
|
1013
|
+
"CreateLocalPlayer",
|
|
1014
|
+
"CreateMeshPartAsync",
|
|
1015
|
+
"CreateModel",
|
|
1016
|
+
"CreateNewParty",
|
|
1017
|
+
"CreateOrUpdateChannelPreferenceAsync",
|
|
1018
|
+
"CreateOrUpdatePlacePreference",
|
|
1019
|
+
"CreateOrUpdatePlacePreferenceAsync",
|
|
1020
|
+
"CreatePartGroup",
|
|
1021
|
+
"CreatePath",
|
|
1022
|
+
"CreatePlaceAsync",
|
|
1023
|
+
"CreatePlaceInPlayerInventoryAsync",
|
|
1024
|
+
"CreatePlugin",
|
|
1025
|
+
"CreatePluginAction",
|
|
1026
|
+
"CreatePluginMenu",
|
|
1027
|
+
"CreatePopupButton",
|
|
1028
|
+
"CreatePostAsync",
|
|
1029
|
+
"CreatePresetFromData",
|
|
1030
|
+
"CreateQWidgetPluginGui",
|
|
1031
|
+
"CreateReviewableContentAsync",
|
|
1032
|
+
"CreateReviewableContentKey",
|
|
1033
|
+
"CreateSessionAsync",
|
|
1034
|
+
"CreateSurfaceAppearanceAsync",
|
|
1035
|
+
"CreateTextureAsync",
|
|
1036
|
+
"CreateTextureInCageSpaceAsync",
|
|
1037
|
+
"CreateTextureInTargetSpaceAsync",
|
|
1038
|
+
"CreateThumbnailPlayer",
|
|
1039
|
+
"CreateToolbar",
|
|
1040
|
+
"CreateUserNotificationAsync",
|
|
1041
|
+
"CreateVideoSamplerAsync",
|
|
1042
|
+
"CreateVirtualInput",
|
|
1043
|
+
"CreateVoxelBuffer_beta",
|
|
1044
|
+
"CreateWebStreamClient",
|
|
1045
|
+
"CreateWebStreamClientInternal",
|
|
1046
|
+
"Cross",
|
|
1047
|
+
"DEPRECATED_SerializeInstances",
|
|
1048
|
+
"DEPRECATED_TrackEvent",
|
|
1049
|
+
"DEPRECATED_TrackEventWithArgs",
|
|
1050
|
+
"Deactivate",
|
|
1051
|
+
"DebugCounterGet",
|
|
1052
|
+
"DecodeAvatarMovementProto",
|
|
1053
|
+
"DecompressBuffer",
|
|
1054
|
+
"DefineCallout",
|
|
1055
|
+
"DefineFastFlag",
|
|
1056
|
+
"DefineFastInt",
|
|
1057
|
+
"DefineFastString",
|
|
1058
|
+
"DeleteAlias",
|
|
1059
|
+
"DeleteAnnotation",
|
|
1060
|
+
"DeleteCapture",
|
|
1061
|
+
"DeleteCapturesAsync",
|
|
1062
|
+
"DeleteParty",
|
|
1063
|
+
"DeleteVideoCapture",
|
|
1064
|
+
"DeleteVideoCaptureAsync",
|
|
1065
|
+
"DeregisterAutocompleteCallback",
|
|
1066
|
+
"DeregisterScriptAnalysisCallback",
|
|
1067
|
+
"DeriveNewMessageProperties",
|
|
1068
|
+
"DeserializeAvatarModel",
|
|
1069
|
+
"DeserializeInstance",
|
|
1070
|
+
"DeserializeInstancesAsync",
|
|
1071
|
+
"DeserializeJSON",
|
|
1072
|
+
"Destroy",
|
|
1073
|
+
"DetachCalloutsByDefinitionId",
|
|
1074
|
+
"DetectUrl",
|
|
1075
|
+
"DeviceAccessTokenAvailable",
|
|
1076
|
+
"DeviceIntegrityAvailable",
|
|
1077
|
+
"Disable",
|
|
1078
|
+
"DisableGamepadCursor",
|
|
1079
|
+
"Discard",
|
|
1080
|
+
"DiscardEdits",
|
|
1081
|
+
"Disconnect",
|
|
1082
|
+
"DisconnectAsync",
|
|
1083
|
+
"DismissNotification",
|
|
1084
|
+
"DisplayBubble",
|
|
1085
|
+
"DisplaySystemMessage",
|
|
1086
|
+
"Distance",
|
|
1087
|
+
"DistanceFromCharacter",
|
|
1088
|
+
"DoesMeshHaveSkinningData",
|
|
1089
|
+
"DoesSurfaceAppearanceMatchTexturePackAsync",
|
|
1090
|
+
"Done",
|
|
1091
|
+
"Dot",
|
|
1092
|
+
"DownloadJobResult",
|
|
1093
|
+
"DrawBufferAsync",
|
|
1094
|
+
"DrawCircle",
|
|
1095
|
+
"DrawImage",
|
|
1096
|
+
"DrawImageProjected",
|
|
1097
|
+
"DrawImageTransformed",
|
|
1098
|
+
"DrawLine",
|
|
1099
|
+
"DrawRectangle",
|
|
1100
|
+
"DrawTriangle",
|
|
1101
|
+
"Dump",
|
|
1102
|
+
"DumpToFileAsync",
|
|
1103
|
+
"EditAnnotation",
|
|
1104
|
+
"EditBreakpoint",
|
|
1105
|
+
"EditSourceAsyncWithRanges",
|
|
1106
|
+
"EditTextAsync",
|
|
1107
|
+
"EditWatch",
|
|
1108
|
+
"Emit",
|
|
1109
|
+
"EmitHybridEvent",
|
|
1110
|
+
"EmulatePCDeviceWithResolution",
|
|
1111
|
+
"EnableCoverage",
|
|
1112
|
+
"EnableDebugging",
|
|
1113
|
+
"EnableGamepadCursor",
|
|
1114
|
+
"EnableVoice",
|
|
1115
|
+
"EncryptStringForPlayerId",
|
|
1116
|
+
"EndCall",
|
|
1117
|
+
"EndDrag",
|
|
1118
|
+
"EndRecording",
|
|
1119
|
+
"EndRemoteRomarkTest",
|
|
1120
|
+
"EndTest",
|
|
1121
|
+
"EquipTool",
|
|
1122
|
+
"Error",
|
|
1123
|
+
"Evaluate",
|
|
1124
|
+
"EvaluateAsync",
|
|
1125
|
+
"EvaluateWatch",
|
|
1126
|
+
"ExecuteActionButton",
|
|
1127
|
+
"ExecuteCommand",
|
|
1128
|
+
"ExecuteCommandAsync",
|
|
1129
|
+
"ExecuteCrossExperienceCall",
|
|
1130
|
+
"ExecuteJavaScript",
|
|
1131
|
+
"ExecuteMultiplayerTestAsync",
|
|
1132
|
+
"ExecutePlayModeAsync",
|
|
1133
|
+
"ExecuteRunModeAsync",
|
|
1134
|
+
"ExecuteScript",
|
|
1135
|
+
"ExitPlayback",
|
|
1136
|
+
"ExpandToGrid",
|
|
1137
|
+
"ExperimentalSolverIsEnabled",
|
|
1138
|
+
"ExportInstanceToGlbAsync",
|
|
1139
|
+
"ExportMeshToGlbAsync",
|
|
1140
|
+
"ExportPlace",
|
|
1141
|
+
"ExportSelection",
|
|
1142
|
+
"Fail",
|
|
1143
|
+
"Failed",
|
|
1144
|
+
"FastForward",
|
|
1145
|
+
"FetchAssetQualitySummaryFromGltfAsync",
|
|
1146
|
+
"FetchAssetQualitySummaryFromJobIdAsync",
|
|
1147
|
+
"FetchAssetQualityValidationEntriesFromModelsAsync",
|
|
1148
|
+
"FetchAssetQualityValidationRawFromModelsAsync",
|
|
1149
|
+
"FetchAssetQualityVisualizationDataFromUrlAsync",
|
|
1150
|
+
"FetchAssetWithFormat",
|
|
1151
|
+
"FetchExtraAssets",
|
|
1152
|
+
"FetchTestControlsAsync",
|
|
1153
|
+
"FillBall",
|
|
1154
|
+
"FillBallSlot",
|
|
1155
|
+
"FillBlock",
|
|
1156
|
+
"FillBlockSlot",
|
|
1157
|
+
"FillCylinder",
|
|
1158
|
+
"FillCylinderSlot",
|
|
1159
|
+
"FillRegion",
|
|
1160
|
+
"FillRegionSlot",
|
|
1161
|
+
"FillWedge",
|
|
1162
|
+
"FillWedgeSlot",
|
|
1163
|
+
"FilterAndTranslateStringAsync",
|
|
1164
|
+
"FilterStringAsync",
|
|
1165
|
+
"FilterStringForBroadcast",
|
|
1166
|
+
"FilterStringForPlayerAsync",
|
|
1167
|
+
"FindBinding",
|
|
1168
|
+
"FindBindings",
|
|
1169
|
+
"FindClosestPointOnSurface",
|
|
1170
|
+
"FindClosestVertex",
|
|
1171
|
+
"FindFirstAncestor",
|
|
1172
|
+
"FindFirstAncestorOfClass",
|
|
1173
|
+
"FindFirstAncestorWhichIsA",
|
|
1174
|
+
"FindFirstChild",
|
|
1175
|
+
"FindFirstChildOfClass",
|
|
1176
|
+
"FindFirstChildWhichIsA",
|
|
1177
|
+
"FindFirstDescendant",
|
|
1178
|
+
"FindPartOnParabola",
|
|
1179
|
+
"FindPartOnRay",
|
|
1180
|
+
"FindPartOnRayWithIgnoreList",
|
|
1181
|
+
"FindPartOnRayWithWhitelist",
|
|
1182
|
+
"FindPartsInRegion3",
|
|
1183
|
+
"FindPartsInRegion3WithIgnoreList",
|
|
1184
|
+
"FindPartsInRegion3WithWhiteList",
|
|
1185
|
+
"FindPathAsync",
|
|
1186
|
+
"FindScriptDocument",
|
|
1187
|
+
"FindService",
|
|
1188
|
+
"FindVerticesWithinSphere",
|
|
1189
|
+
"FinishFullLoading",
|
|
1190
|
+
"FinishRecording",
|
|
1191
|
+
"FinishSpan",
|
|
1192
|
+
"FinishTask",
|
|
1193
|
+
"Fire",
|
|
1194
|
+
"FireActionButtonFoundSignal",
|
|
1195
|
+
"FireAllClients",
|
|
1196
|
+
"FireClient",
|
|
1197
|
+
"FireCustomEvent",
|
|
1198
|
+
"FireEvent",
|
|
1199
|
+
"FireInGameEconomyEvent",
|
|
1200
|
+
"FireLogEvent",
|
|
1201
|
+
"FireOnUGCSubmitCompleted",
|
|
1202
|
+
"FirePlayerProgressionEvent",
|
|
1203
|
+
"FireServer",
|
|
1204
|
+
"Floor",
|
|
1205
|
+
"Flush",
|
|
1206
|
+
"FocusConnection",
|
|
1207
|
+
"ForceGeneration",
|
|
1208
|
+
"ForceReloadSource",
|
|
1209
|
+
"ForceSetSelectionAsync",
|
|
1210
|
+
"ForceTenFootInterface",
|
|
1211
|
+
"FormatByKey",
|
|
1212
|
+
"FormatLocalTime",
|
|
1213
|
+
"FormatUniversalTime",
|
|
1214
|
+
"ForwardAsync",
|
|
1215
|
+
"FragmentAsync",
|
|
1216
|
+
"FromHeightmapAsync",
|
|
1217
|
+
"FullProcess",
|
|
1218
|
+
"FuzzyEq",
|
|
1219
|
+
"GameStreamingEnabled",
|
|
1220
|
+
"GamepadSupports",
|
|
1221
|
+
"GenerateAssetQualityGltfFromInstanceAsync",
|
|
1222
|
+
"GenerateAvatar2DPreviewAsync",
|
|
1223
|
+
"GenerateAvatarAsync",
|
|
1224
|
+
"GenerateFragmentSites",
|
|
1225
|
+
"GenerateGUID",
|
|
1226
|
+
"GenerateItemListAsync",
|
|
1227
|
+
"GenerateMaterialVariantsAsync",
|
|
1228
|
+
"GenerateMeshAsync",
|
|
1229
|
+
"GenerateModelAsync",
|
|
1230
|
+
"GenerateMomentTextAsync",
|
|
1231
|
+
"GenerateSessionInfoString",
|
|
1232
|
+
"GenerateTextAsync",
|
|
1233
|
+
"GenerateTexture",
|
|
1234
|
+
"GenerateWaterFlowMap",
|
|
1235
|
+
"Get",
|
|
1236
|
+
"GetAbsolutePosition",
|
|
1237
|
+
"GetAccessories",
|
|
1238
|
+
"GetAccessoryHandleScale",
|
|
1239
|
+
"GetAccessoryType",
|
|
1240
|
+
"GetActive",
|
|
1241
|
+
"GetActor",
|
|
1242
|
+
"GetAdAvailabilityNowAsync",
|
|
1243
|
+
"GetAdAvailabilityNowForUniverseAsync",
|
|
1244
|
+
"GetAdTeleportInfo",
|
|
1245
|
+
"GetAdjacentFaces",
|
|
1246
|
+
"GetAdjacentVertices",
|
|
1247
|
+
"GetAllBoundActionInfo",
|
|
1248
|
+
"GetAllBoundCoreActionInfo",
|
|
1249
|
+
"GetAllCollections",
|
|
1250
|
+
"GetAllInstances",
|
|
1251
|
+
"GetAllPresets",
|
|
1252
|
+
"GetAllTags",
|
|
1253
|
+
"GetAlliesAsync",
|
|
1254
|
+
"GetAndClearCallFailureMessage",
|
|
1255
|
+
"GetAndClearLastPendingUrl",
|
|
1256
|
+
"GetAngleAttenuation",
|
|
1257
|
+
"GetAnglesAtTime",
|
|
1258
|
+
"GetAnimationClip",
|
|
1259
|
+
"GetAnimationClipAsync",
|
|
1260
|
+
"GetAnimationClipById",
|
|
1261
|
+
"GetAnimationMemoryAsync",
|
|
1262
|
+
"GetAnimationNodeDefinition",
|
|
1263
|
+
"GetAnimationNodeTypes",
|
|
1264
|
+
"GetAnimations",
|
|
1265
|
+
"GetAnimationsAsync",
|
|
1266
|
+
"GetAnnotationThreads",
|
|
1267
|
+
"GetApiV1",
|
|
1268
|
+
"GetAppAgeSignalsAsync",
|
|
1269
|
+
"GetAppliedDescription",
|
|
1270
|
+
"GetAppliedInstance",
|
|
1271
|
+
"GetAppliedStyles",
|
|
1272
|
+
"GetArg",
|
|
1273
|
+
"GetArrivingTeleportGui",
|
|
1274
|
+
"GetAssetFetchStatus",
|
|
1275
|
+
"GetAssetFetchStatusChangedSignal",
|
|
1276
|
+
"GetAssetIdsForPackage",
|
|
1277
|
+
"GetAssetIdsForPackageAsync",
|
|
1278
|
+
"GetAssetInfoAsync",
|
|
1279
|
+
"GetAsync",
|
|
1280
|
+
"GetAsyncFullUrl",
|
|
1281
|
+
"GetAttachedReceivers",
|
|
1282
|
+
"GetAttribute",
|
|
1283
|
+
"GetAttributeChangedSignal",
|
|
1284
|
+
"GetAttributes",
|
|
1285
|
+
"GetAudibilityFor",
|
|
1286
|
+
"GetAudioApiByDefault",
|
|
1287
|
+
"GetAudioInstances",
|
|
1288
|
+
"GetAudioMemoryAsync",
|
|
1289
|
+
"GetAudioMetadataAsync",
|
|
1290
|
+
"GetAudioProcessingSettings",
|
|
1291
|
+
"GetAutoUIScaleHundredths",
|
|
1292
|
+
"GetAutocompleter",
|
|
1293
|
+
"GetAvailableConnection",
|
|
1294
|
+
"GetAvailableSubscriptionProductsAsync",
|
|
1295
|
+
"GetAvailableThemes",
|
|
1296
|
+
"GetAvailableTintModes",
|
|
1297
|
+
"GetAvatarRules",
|
|
1298
|
+
"GetAvatarRulesAsync",
|
|
1299
|
+
"GetAwakeContactNormals",
|
|
1300
|
+
"GetAwakeContactParts",
|
|
1301
|
+
"GetAwakeContactPositions",
|
|
1302
|
+
"GetAwakeRootParts",
|
|
1303
|
+
"GetAwardablePoints",
|
|
1304
|
+
"GetAxis",
|
|
1305
|
+
"GetBadgeConfigureUrl",
|
|
1306
|
+
"GetBadgeInfoAsync",
|
|
1307
|
+
"GetBadgeUploadUrl",
|
|
1308
|
+
"GetBanHistoryAsync",
|
|
1309
|
+
"GetBaseCategories",
|
|
1310
|
+
"GetBaseMaterialOverride",
|
|
1311
|
+
"GetBaseSets",
|
|
1312
|
+
"GetBatchItemDetails",
|
|
1313
|
+
"GetBatchItemDetailsAsync",
|
|
1314
|
+
"GetBatchTokenDetailsAsync",
|
|
1315
|
+
"GetBatchWindowDelayMax",
|
|
1316
|
+
"GetBatchWindowDelayMin",
|
|
1317
|
+
"GetBinaryContents",
|
|
1318
|
+
"GetBlock",
|
|
1319
|
+
"GetBlockListInitialized",
|
|
1320
|
+
"GetBodyPartR15",
|
|
1321
|
+
"GetBoneByName",
|
|
1322
|
+
"GetBoneCFrame",
|
|
1323
|
+
"GetBoneIsVirtual",
|
|
1324
|
+
"GetBoneName",
|
|
1325
|
+
"GetBoneParent",
|
|
1326
|
+
"GetBones",
|
|
1327
|
+
"GetBoundActionInfo",
|
|
1328
|
+
"GetBoundCoreActionInfo",
|
|
1329
|
+
"GetBoundTracks",
|
|
1330
|
+
"GetBoundingBox",
|
|
1331
|
+
"GetBoundingBoxManipulationData",
|
|
1332
|
+
"GetBoundingRect",
|
|
1333
|
+
"GetBranchesAsync",
|
|
1334
|
+
"GetBreadcrumbs",
|
|
1335
|
+
"GetBreakpointById",
|
|
1336
|
+
"GetBreakpoints",
|
|
1337
|
+
"GetBrickCount",
|
|
1338
|
+
"GetBrowserTrackerId",
|
|
1339
|
+
"GetBrowserTrackerLayerLoadingStatus",
|
|
1340
|
+
"GetBrowserTrackerLayerVariables",
|
|
1341
|
+
"GetBrowserTrackerStatusForLayer",
|
|
1342
|
+
"GetBuffer",
|
|
1343
|
+
"GetBundleDetailsAsync",
|
|
1344
|
+
"GetBundlesByAssetIdAsync",
|
|
1345
|
+
"GetButton",
|
|
1346
|
+
"GetCageOffset",
|
|
1347
|
+
"GetCallingState",
|
|
1348
|
+
"GetCameraDevices",
|
|
1349
|
+
"GetCameraState",
|
|
1350
|
+
"GetCameraYInvertValue",
|
|
1351
|
+
"GetCampaignEligibilityAsync",
|
|
1352
|
+
"GetCanManageAsync",
|
|
1353
|
+
"GetCanRedo",
|
|
1354
|
+
"GetCanUndo",
|
|
1355
|
+
"GetCapabilitiesAsync",
|
|
1356
|
+
"GetCapabilitiesUsedInPackageAsync",
|
|
1357
|
+
"GetCaptureFilePathAsync",
|
|
1358
|
+
"GetCaptureSizeAsync",
|
|
1359
|
+
"GetCaptureStorageSizeAsync",
|
|
1360
|
+
"GetCaptureUploadDataAsync",
|
|
1361
|
+
"GetCell",
|
|
1362
|
+
"GetCenter",
|
|
1363
|
+
"GetChainCount",
|
|
1364
|
+
"GetChainLength",
|
|
1365
|
+
"GetChangeType",
|
|
1366
|
+
"GetChangedState",
|
|
1367
|
+
"GetChannelId",
|
|
1368
|
+
"GetChannelPreferenceAsync",
|
|
1369
|
+
"GetCharacterAppearanceAsync",
|
|
1370
|
+
"GetCharacterAppearanceInfoAsync",
|
|
1371
|
+
"GetChatForUserAsync",
|
|
1372
|
+
"GetChatGroupsAsync",
|
|
1373
|
+
"GetChatableUserCountAsync",
|
|
1374
|
+
"GetChildren",
|
|
1375
|
+
"GetClass",
|
|
1376
|
+
"GetClassIcon",
|
|
1377
|
+
"GetClasses",
|
|
1378
|
+
"GetClientFeaturesAsync",
|
|
1379
|
+
"GetClientId",
|
|
1380
|
+
"GetClipEvaluatorAsync",
|
|
1381
|
+
"GetClosestDialogToPosition",
|
|
1382
|
+
"GetClosestPointOnSurface",
|
|
1383
|
+
"GetClosestVisibleDialogToPosition",
|
|
1384
|
+
"GetCollaboratorsList",
|
|
1385
|
+
"GetCollection",
|
|
1386
|
+
"GetCollisionGroupId",
|
|
1387
|
+
"GetCollisionGroupName",
|
|
1388
|
+
"GetCollisionGroups",
|
|
1389
|
+
"GetColor",
|
|
1390
|
+
"GetColorAlpha",
|
|
1391
|
+
"GetColors",
|
|
1392
|
+
"GetCommerceProductInfoAsync",
|
|
1393
|
+
"GetComponentCurves",
|
|
1394
|
+
"GetComponents",
|
|
1395
|
+
"GetCondition",
|
|
1396
|
+
"GetConditions",
|
|
1397
|
+
"GetConfigAsync",
|
|
1398
|
+
"GetConfigForPlayerAsync",
|
|
1399
|
+
"GetConnectedGamepads",
|
|
1400
|
+
"GetConnectedParts",
|
|
1401
|
+
"GetConnectedWires",
|
|
1402
|
+
"GetConnectionById",
|
|
1403
|
+
"GetConstraints",
|
|
1404
|
+
"GetContainedJointLabels",
|
|
1405
|
+
"GetContent",
|
|
1406
|
+
"GetContentMemoryData",
|
|
1407
|
+
"GetContents",
|
|
1408
|
+
"GetContextBreakpoints",
|
|
1409
|
+
"GetControlAndVariantRolloutFlags",
|
|
1410
|
+
"GetControlPoint",
|
|
1411
|
+
"GetControlPoints",
|
|
1412
|
+
"GetCore",
|
|
1413
|
+
"GetCoreGuiEnabled",
|
|
1414
|
+
"GetCoreScriptVersion",
|
|
1415
|
+
"GetCorescriptLocalizations",
|
|
1416
|
+
"GetCountryRegionForPlayerAsync",
|
|
1417
|
+
"GetCoverageStats",
|
|
1418
|
+
"GetCreatedTimestampUtcMs",
|
|
1419
|
+
"GetCreatorAssetID",
|
|
1420
|
+
"GetCreatorLayerLoadingStatus",
|
|
1421
|
+
"GetCreatorLayerVariables",
|
|
1422
|
+
"GetCreatorStatusForLayer",
|
|
1423
|
+
"GetCreatorStoreProductInfoAsync",
|
|
1424
|
+
"GetCredentialsHeaders",
|
|
1425
|
+
"GetCurrentDeviceId",
|
|
1426
|
+
"GetCurrentLocalToolIcon",
|
|
1427
|
+
"GetCurrentOrientation",
|
|
1428
|
+
"GetCurrentPage",
|
|
1429
|
+
"GetCurrentPlaybackRestartFrames",
|
|
1430
|
+
"GetCurrentPlayers",
|
|
1431
|
+
"GetCurrentState",
|
|
1432
|
+
"GetCurrentValue",
|
|
1433
|
+
"GetData",
|
|
1434
|
+
"GetDataInRange",
|
|
1435
|
+
"GetDataSize",
|
|
1436
|
+
"GetDataStore",
|
|
1437
|
+
"GetDebugAppliedForce",
|
|
1438
|
+
"GetDebugAppliedTorque",
|
|
1439
|
+
"GetDebugData",
|
|
1440
|
+
"GetDebugId",
|
|
1441
|
+
"GetDebuggers",
|
|
1442
|
+
"GetDecompressedBufferSize",
|
|
1443
|
+
"GetDefaultFramerateCap",
|
|
1444
|
+
"GetDefaultPropertyTransition",
|
|
1445
|
+
"GetDefaultValue",
|
|
1446
|
+
"GetDeformedCFrameAsync",
|
|
1447
|
+
"GetDependencyContentIds",
|
|
1448
|
+
"GetDerives",
|
|
1449
|
+
"GetDescendants",
|
|
1450
|
+
"GetDetailedFailedRequests",
|
|
1451
|
+
"GetDeveloperProductsAsync",
|
|
1452
|
+
"GetDeviceAcceleration",
|
|
1453
|
+
"GetDeviceAccessToken",
|
|
1454
|
+
"GetDeviceAsync",
|
|
1455
|
+
"GetDeviceCameraCFrame",
|
|
1456
|
+
"GetDeviceCameraCFrameForSelfView",
|
|
1457
|
+
"GetDeviceGravity",
|
|
1458
|
+
"GetDeviceId",
|
|
1459
|
+
"GetDeviceInfo",
|
|
1460
|
+
"GetDeviceInfoAsync",
|
|
1461
|
+
"GetDeviceIntegrityToken",
|
|
1462
|
+
"GetDeviceIntegrityTokenYield",
|
|
1463
|
+
"GetDeviceLevel",
|
|
1464
|
+
"GetDeviceListAsync",
|
|
1465
|
+
"GetDeviceRotation",
|
|
1466
|
+
"GetDeviceType",
|
|
1467
|
+
"GetDiffAsync",
|
|
1468
|
+
"GetDistanceAttenuation",
|
|
1469
|
+
"GetDistributedCounter",
|
|
1470
|
+
"GetDocumentationUrl",
|
|
1471
|
+
"GetDraftStatus",
|
|
1472
|
+
"GetDrafts",
|
|
1473
|
+
"GetDurationLoggerTimestamp",
|
|
1474
|
+
"GetDynamicHeadEditableMeshInactiveControls",
|
|
1475
|
+
"GetEditableCagingRelevancyMetrics",
|
|
1476
|
+
"GetEditableImageSize",
|
|
1477
|
+
"GetEditableMeshMaxNearbyVerticesCollisions",
|
|
1478
|
+
"GetEditableMeshSkinningTransferJointsInfo",
|
|
1479
|
+
"GetEditableMeshTriCount",
|
|
1480
|
+
"GetEditableMeshVertColors",
|
|
1481
|
+
"GetEditableMeshVerticesSimilarityRate",
|
|
1482
|
+
"GetEditableMeshVerts",
|
|
1483
|
+
"GetEditorSource",
|
|
1484
|
+
"GetEditors",
|
|
1485
|
+
"GetEffectiveUIScaleHundredths",
|
|
1486
|
+
"GetEmotes",
|
|
1487
|
+
"GetEmotesMenuOpen",
|
|
1488
|
+
"GetEmulatedPartyAsync",
|
|
1489
|
+
"GetEmulatedPartyConfiguration",
|
|
1490
|
+
"GetEmulatedPolicyInfo",
|
|
1491
|
+
"GetEnemiesAsync",
|
|
1492
|
+
"GetEngineFeature",
|
|
1493
|
+
"GetEntries",
|
|
1494
|
+
"GetEquippedEmotes",
|
|
1495
|
+
"GetErrorCode",
|
|
1496
|
+
"GetErrorDetails",
|
|
1497
|
+
"GetErrorMessage",
|
|
1498
|
+
"GetErrorType",
|
|
1499
|
+
"GetErrors",
|
|
1500
|
+
"GetEventRsvpStatusAsync",
|
|
1501
|
+
"GetEventsOfClass",
|
|
1502
|
+
"GetExecutingPlayer",
|
|
1503
|
+
"GetExpectedTposeRotation",
|
|
1504
|
+
"GetExperienceEventAsync",
|
|
1505
|
+
"GetExtentsSize",
|
|
1506
|
+
"GetFFlag",
|
|
1507
|
+
"GetFFlagOverrides",
|
|
1508
|
+
"GetFFlags",
|
|
1509
|
+
"GetFVariable",
|
|
1510
|
+
"GetFaceColors",
|
|
1511
|
+
"GetFaceNormals",
|
|
1512
|
+
"GetFaceUVs",
|
|
1513
|
+
"GetFaceVertices",
|
|
1514
|
+
"GetFaces",
|
|
1515
|
+
"GetFacesWithAttribute",
|
|
1516
|
+
"GetFacesWithColor",
|
|
1517
|
+
"GetFacesWithNormal",
|
|
1518
|
+
"GetFacesWithUV",
|
|
1519
|
+
"GetFacsCorrectivePose",
|
|
1520
|
+
"GetFacsCorrectivePoses",
|
|
1521
|
+
"GetFacsDrivenJointNamesFromEditableMesh",
|
|
1522
|
+
"GetFacsPose",
|
|
1523
|
+
"GetFacsPoses",
|
|
1524
|
+
"GetFailedRequests",
|
|
1525
|
+
"GetFamilyInfoAsync",
|
|
1526
|
+
"GetFastFlag",
|
|
1527
|
+
"GetFastInt",
|
|
1528
|
+
"GetFastString",
|
|
1529
|
+
"GetFavorite",
|
|
1530
|
+
"GetFavoriteAsync",
|
|
1531
|
+
"GetFilename",
|
|
1532
|
+
"GetFilesInDirAsync",
|
|
1533
|
+
"GetFingerControl",
|
|
1534
|
+
"GetFingerTip",
|
|
1535
|
+
"GetFocusedContextId",
|
|
1536
|
+
"GetFocusedTextBox",
|
|
1537
|
+
"GetFollowUserId",
|
|
1538
|
+
"GetFontMemoryData",
|
|
1539
|
+
"GetFrame",
|
|
1540
|
+
"GetFrameById",
|
|
1541
|
+
"GetFrameNames",
|
|
1542
|
+
"GetFreeDecals",
|
|
1543
|
+
"GetFreeDecalsAsync",
|
|
1544
|
+
"GetFreeModels",
|
|
1545
|
+
"GetFreeModelsAsync",
|
|
1546
|
+
"GetFriendStatus",
|
|
1547
|
+
"GetFriendsAsync",
|
|
1548
|
+
"GetFriendsInUniverseAsync",
|
|
1549
|
+
"GetFriendsOnline",
|
|
1550
|
+
"GetFriendsOnlineAsync",
|
|
1551
|
+
"GetFriendsWhoPlayedAsync",
|
|
1552
|
+
"GetFullName",
|
|
1553
|
+
"GetGainAt",
|
|
1554
|
+
"GetGamePlacesAsync",
|
|
1555
|
+
"GetGamePointBalance",
|
|
1556
|
+
"GetGameSessionID",
|
|
1557
|
+
"GetGamepadConnected",
|
|
1558
|
+
"GetGamepadCursorPosition",
|
|
1559
|
+
"GetGamepadState",
|
|
1560
|
+
"GetGameplayPausedNotificationEnabled",
|
|
1561
|
+
"GetGlobalDataStore",
|
|
1562
|
+
"GetGlobalUserId",
|
|
1563
|
+
"GetGlobals",
|
|
1564
|
+
"GetGroupId",
|
|
1565
|
+
"GetGroupInfoAsync",
|
|
1566
|
+
"GetGroupsAsync",
|
|
1567
|
+
"GetGuiInset",
|
|
1568
|
+
"GetGuiIsVisible",
|
|
1569
|
+
"GetGuiObjectsAtPosition",
|
|
1570
|
+
"GetGuiObjectsInCircle",
|
|
1571
|
+
"GetHardwareSafeViewport",
|
|
1572
|
+
"GetHarmonyQualityLevel",
|
|
1573
|
+
"GetHash",
|
|
1574
|
+
"GetHashMap",
|
|
1575
|
+
"GetHeadShapesAsync",
|
|
1576
|
+
"GetHeightmapPreviewAsync",
|
|
1577
|
+
"GetHistory",
|
|
1578
|
+
"GetHttpEnabled",
|
|
1579
|
+
"GetHttpResultHistory",
|
|
1580
|
+
"GetHumanoidDescriptionFromOutfitId",
|
|
1581
|
+
"GetHumanoidDescriptionFromOutfitIdAsync",
|
|
1582
|
+
"GetHumanoidDescriptionFromUserId",
|
|
1583
|
+
"GetHumanoidDescriptionFromUserIdAsync",
|
|
1584
|
+
"GetIdentities",
|
|
1585
|
+
"GetImageForKeyCode",
|
|
1586
|
+
"GetImportTree",
|
|
1587
|
+
"GetInputActions",
|
|
1588
|
+
"GetInputBindings",
|
|
1589
|
+
"GetInputContexts",
|
|
1590
|
+
"GetInputDevice",
|
|
1591
|
+
"GetInputDevices",
|
|
1592
|
+
"GetInputPins",
|
|
1593
|
+
"GetInputSchemaKeyCodeTree",
|
|
1594
|
+
"GetInsetArea",
|
|
1595
|
+
"GetInspectMenuEnabled",
|
|
1596
|
+
"GetInstanceAddedSignal",
|
|
1597
|
+
"GetInstanceByRfc4122String",
|
|
1598
|
+
"GetInstanceCompositionAsync",
|
|
1599
|
+
"GetInstanceConflicts",
|
|
1600
|
+
"GetInstanceRemovedSignal",
|
|
1601
|
+
"GetInstances",
|
|
1602
|
+
"GetInteractingEmitters",
|
|
1603
|
+
"GetInteractingListeners",
|
|
1604
|
+
"GetInternalUri",
|
|
1605
|
+
"GetInventory",
|
|
1606
|
+
"GetInventoryAsync",
|
|
1607
|
+
"GetIsEmulationEnabled",
|
|
1608
|
+
"GetIsLoadingInternalTranslations",
|
|
1609
|
+
"GetIsMaterialActionAsToolEnabled",
|
|
1610
|
+
"GetIsThirdPartyAssetAllowed",
|
|
1611
|
+
"GetIsThirdPartyPurchaseAllowed",
|
|
1612
|
+
"GetIsThirdPartyTeleportAllowed",
|
|
1613
|
+
"GetItem",
|
|
1614
|
+
"GetItemDetails",
|
|
1615
|
+
"GetItemDetailsAsync",
|
|
1616
|
+
"GetJobStatus",
|
|
1617
|
+
"GetJobsInfo",
|
|
1618
|
+
"GetJoinData",
|
|
1619
|
+
"GetJoinMode",
|
|
1620
|
+
"GetJoint",
|
|
1621
|
+
"GetJointFromName",
|
|
1622
|
+
"GetJointLabels",
|
|
1623
|
+
"GetJointNames",
|
|
1624
|
+
"GetJointRangeMax",
|
|
1625
|
+
"GetJointRangeMin",
|
|
1626
|
+
"GetJointSize",
|
|
1627
|
+
"GetJoints",
|
|
1628
|
+
"GetKeyAtIndex",
|
|
1629
|
+
"GetKeyIndicesAtTime",
|
|
1630
|
+
"GetKeyframeSequence",
|
|
1631
|
+
"GetKeyframeSequenceAsync",
|
|
1632
|
+
"GetKeyframeSequenceById",
|
|
1633
|
+
"GetKeyframeSequences",
|
|
1634
|
+
"GetKeyframeSequencesForSelectedRestPose",
|
|
1635
|
+
"GetKeyframeSequencesForSelectedRestPoseWithClip",
|
|
1636
|
+
"GetKeyframes",
|
|
1637
|
+
"GetKeys",
|
|
1638
|
+
"GetKeysPressed",
|
|
1639
|
+
"GetLabels",
|
|
1640
|
+
"GetLargestCutoffDistance",
|
|
1641
|
+
"GetLast",
|
|
1642
|
+
"GetLastForce",
|
|
1643
|
+
"GetLastInputType",
|
|
1644
|
+
"GetLastLuaUrl",
|
|
1645
|
+
"GetLatestAssetVersionAsync",
|
|
1646
|
+
"GetLayeredClothingPostDeformationSize",
|
|
1647
|
+
"GetLayeredClothingPostDeformationSizeAsync",
|
|
1648
|
+
"GetLayoutNodeTree",
|
|
1649
|
+
"GetLength",
|
|
1650
|
+
"GetLexemes",
|
|
1651
|
+
"GetLimb",
|
|
1652
|
+
"GetLine",
|
|
1653
|
+
"GetLineCount",
|
|
1654
|
+
"GetListener",
|
|
1655
|
+
"GetLocalFileContents",
|
|
1656
|
+
"GetLocalFrameId",
|
|
1657
|
+
"GetLocalPlayerTeleportData",
|
|
1658
|
+
"GetLocals",
|
|
1659
|
+
"GetLogHistory",
|
|
1660
|
+
"GetLogHistoryAsync",
|
|
1661
|
+
"GetLogPath",
|
|
1662
|
+
"GetLogger",
|
|
1663
|
+
"GetLogicalCaptionButtonsBounds",
|
|
1664
|
+
"GetLuauHeapInstanceReferenceReport",
|
|
1665
|
+
"GetLuauHeapMemoryReport",
|
|
1666
|
+
"GetMainViewSessionId",
|
|
1667
|
+
"GetMarkerAtIndex",
|
|
1668
|
+
"GetMarkerReachedSignal",
|
|
1669
|
+
"GetMarkers",
|
|
1670
|
+
"GetMass",
|
|
1671
|
+
"GetMaterialColor",
|
|
1672
|
+
"GetMaterialOverrideChanged",
|
|
1673
|
+
"GetMaterialSlot",
|
|
1674
|
+
"GetMaterialVariant",
|
|
1675
|
+
"GetMaxCollisionGroups",
|
|
1676
|
+
"GetMaxControlPoints",
|
|
1677
|
+
"GetMaxQualityLevel",
|
|
1678
|
+
"GetMaximalJointDistancesWithinFacs",
|
|
1679
|
+
"GetMemStats",
|
|
1680
|
+
"GetMemoryCategoryNames",
|
|
1681
|
+
"GetMemoryUsageMbAllCategories",
|
|
1682
|
+
"GetMemoryUsageMbForTag",
|
|
1683
|
+
"GetMergeChanges",
|
|
1684
|
+
"GetMergeResolution",
|
|
1685
|
+
"GetMergeStatus",
|
|
1686
|
+
"GetMeshDataBinaryString",
|
|
1687
|
+
"GetMeshIdFromAliasName",
|
|
1688
|
+
"GetMeshIdFromAssetId",
|
|
1689
|
+
"GetMeshIdsHash",
|
|
1690
|
+
"GetMeshVerts",
|
|
1691
|
+
"GetMessage",
|
|
1692
|
+
"GetMessageId",
|
|
1693
|
+
"GetMetadata",
|
|
1694
|
+
"GetMethodsOfClass",
|
|
1695
|
+
"GetMicDevices",
|
|
1696
|
+
"GetMinAndMaxMeshSizeAcrossAllFacs",
|
|
1697
|
+
"GetMinutesAfterMidnight",
|
|
1698
|
+
"GetMixerTime",
|
|
1699
|
+
"GetModelCFrame",
|
|
1700
|
+
"GetModelSize",
|
|
1701
|
+
"GetMoonDirection",
|
|
1702
|
+
"GetMoonPhase",
|
|
1703
|
+
"GetMotor",
|
|
1704
|
+
"GetMouse",
|
|
1705
|
+
"GetMouseButtonsPressed",
|
|
1706
|
+
"GetMouseDelta",
|
|
1707
|
+
"GetMouseLocation",
|
|
1708
|
+
"GetMoveVelocity",
|
|
1709
|
+
"GetNameFromUserIdAsync",
|
|
1710
|
+
"GetNames",
|
|
1711
|
+
"GetNativeTitleBarControlsPosition",
|
|
1712
|
+
"GetNavigationGamepads",
|
|
1713
|
+
"GetNetworkOwner",
|
|
1714
|
+
"GetNetworkOwnershipAuto",
|
|
1715
|
+
"GetNetworkPing",
|
|
1716
|
+
"GetNoCollisionConstraints",
|
|
1717
|
+
"GetNodeLocalCFrame",
|
|
1718
|
+
"GetNodeWorldCFrame",
|
|
1719
|
+
"GetNonChatStringForBroadcastAsync",
|
|
1720
|
+
"GetNonChatStringForUserAsync",
|
|
1721
|
+
"GetNormal",
|
|
1722
|
+
"GetNormals",
|
|
1723
|
+
"GetNotificationTypeList",
|
|
1724
|
+
"GetNumAwakeParts",
|
|
1725
|
+
"GetOTAPluginVersion",
|
|
1726
|
+
"GetObjects",
|
|
1727
|
+
"GetObjectsAllOrNone",
|
|
1728
|
+
"GetObjectsAsync",
|
|
1729
|
+
"GetObjectsList",
|
|
1730
|
+
"GetOnboardingCompleted",
|
|
1731
|
+
"GetOpaqueContentMetadataMap",
|
|
1732
|
+
"GetOrCreateUniqueId",
|
|
1733
|
+
"GetOrCreateUniqueIdRemoteCommand",
|
|
1734
|
+
"GetOrderedDataStore",
|
|
1735
|
+
"GetOrderedInputPinNames",
|
|
1736
|
+
"GetOrientationAsync",
|
|
1737
|
+
"GetOutfitDetails",
|
|
1738
|
+
"GetOutfitDetailsAsync",
|
|
1739
|
+
"GetOutfits",
|
|
1740
|
+
"GetOutfitsAsync",
|
|
1741
|
+
"GetOutputDevice",
|
|
1742
|
+
"GetOutputDevices",
|
|
1743
|
+
"GetOutputPins",
|
|
1744
|
+
"GetOverrideStatus",
|
|
1745
|
+
"GetOverrides",
|
|
1746
|
+
"GetPackageInfo",
|
|
1747
|
+
"GetPaginatedMemoryByTexture",
|
|
1748
|
+
"GetPanSpeed",
|
|
1749
|
+
"GetParameter",
|
|
1750
|
+
"GetParameterDefaults",
|
|
1751
|
+
"GetParents",
|
|
1752
|
+
"GetPartBoundsInBox",
|
|
1753
|
+
"GetPartBoundsInRadius",
|
|
1754
|
+
"GetPartGroup",
|
|
1755
|
+
"GetParticipants",
|
|
1756
|
+
"GetPartsInPart",
|
|
1757
|
+
"GetPartsObscuringTarget",
|
|
1758
|
+
"GetPartyAsync",
|
|
1759
|
+
"GetPartyMembers",
|
|
1760
|
+
"GetPasteText",
|
|
1761
|
+
"GetPendingJoinAttempt",
|
|
1762
|
+
"GetPermissions",
|
|
1763
|
+
"GetPersistentPlayers",
|
|
1764
|
+
"GetPhysicsCost",
|
|
1765
|
+
"GetPhysicsStepId",
|
|
1766
|
+
"GetPhysicsThrottling",
|
|
1767
|
+
"GetPioneerRootPlaceId",
|
|
1768
|
+
"GetPioneerSource",
|
|
1769
|
+
"GetPivot",
|
|
1770
|
+
"GetPixelDensityAsync",
|
|
1771
|
+
"GetPlaceIsPersistedToCloud",
|
|
1772
|
+
"GetPlaceJoinState",
|
|
1773
|
+
"GetPlacePreference",
|
|
1774
|
+
"GetPlacePreferenceAsync",
|
|
1775
|
+
"GetPlaceholderInstanceTree",
|
|
1776
|
+
"GetPlatform",
|
|
1777
|
+
"GetPlatformFriends",
|
|
1778
|
+
"GetPlaySessionId",
|
|
1779
|
+
"GetPlaybackCurrentFrame",
|
|
1780
|
+
"GetPlaybackMode",
|
|
1781
|
+
"GetPlayer",
|
|
1782
|
+
"GetPlayerByUserId",
|
|
1783
|
+
"GetPlayerFromCharacter",
|
|
1784
|
+
"GetPlayerPlaceInstanceAsync",
|
|
1785
|
+
"GetPlayerSegmentsAsync",
|
|
1786
|
+
"GetPlayers",
|
|
1787
|
+
"GetPlayersByPartyId",
|
|
1788
|
+
"GetPlayingAnimationTracks",
|
|
1789
|
+
"GetPlayingAnimationTracksCoreScript",
|
|
1790
|
+
"GetPluginComponent",
|
|
1791
|
+
"GetPluginConnectionsOfType",
|
|
1792
|
+
"GetPluginPolicy",
|
|
1793
|
+
"GetPointBalance",
|
|
1794
|
+
"GetPointCoordinates",
|
|
1795
|
+
"GetPolicyInfoForPlayerAsync",
|
|
1796
|
+
"GetPolicyInfoForServerRobloxOnlyAsync",
|
|
1797
|
+
"GetPoses",
|
|
1798
|
+
"GetPosition",
|
|
1799
|
+
"GetPositionOnCurve",
|
|
1800
|
+
"GetPositionOnCurveArcLength",
|
|
1801
|
+
"GetPostTransforms",
|
|
1802
|
+
"GetPreTransforms",
|
|
1803
|
+
"GetPredictedInstances",
|
|
1804
|
+
"GetPredictionStatus",
|
|
1805
|
+
"GetPreferredBindingList",
|
|
1806
|
+
"GetPrefetchDownloadStatus",
|
|
1807
|
+
"GetPreset",
|
|
1808
|
+
"GetPresetsAsync",
|
|
1809
|
+
"GetPreview",
|
|
1810
|
+
"GetPrimaryPartCFrame",
|
|
1811
|
+
"GetProductInfo",
|
|
1812
|
+
"GetProductInfoAsync",
|
|
1813
|
+
"GetProfileConfigurationFromUserIdAsync",
|
|
1814
|
+
"GetProperties",
|
|
1815
|
+
"GetPropertiesOfClass",
|
|
1816
|
+
"GetPropertiesResolved",
|
|
1817
|
+
"GetProperty",
|
|
1818
|
+
"GetPropertyChangedSignal",
|
|
1819
|
+
"GetPropertyNames",
|
|
1820
|
+
"GetPropertyResolved",
|
|
1821
|
+
"GetPropertyTransitions",
|
|
1822
|
+
"GetPropertyValue",
|
|
1823
|
+
"GetProtocolLaunchUpdateName",
|
|
1824
|
+
"GetProtocolLaunchUpdateType",
|
|
1825
|
+
"GetProtocolMethodRequestMessageId",
|
|
1826
|
+
"GetProtocolMethodResponseMessageId",
|
|
1827
|
+
"GetQueue",
|
|
1828
|
+
"GetQueuePosition",
|
|
1829
|
+
"GetQuotasAsync",
|
|
1830
|
+
"GetR15JointLabels",
|
|
1831
|
+
"GetR15JointNames",
|
|
1832
|
+
"GetR6JointLabels",
|
|
1833
|
+
"GetR6JointNames",
|
|
1834
|
+
"GetRangeAsync",
|
|
1835
|
+
"GetRankInGroup",
|
|
1836
|
+
"GetRankInGroupAsync",
|
|
1837
|
+
"GetRawFinalTarget",
|
|
1838
|
+
"GetRawScreenScale",
|
|
1839
|
+
"GetRealPhysicsFPS",
|
|
1840
|
+
"GetReceivedUpdateSignal",
|
|
1841
|
+
"GetRecommendationItemAsync",
|
|
1842
|
+
"GetRecommendedAssets",
|
|
1843
|
+
"GetRecommendedAssetsAsync",
|
|
1844
|
+
"GetRecommendedBundles",
|
|
1845
|
+
"GetRecommendedBundlesAsync",
|
|
1846
|
+
"GetRecordAsync",
|
|
1847
|
+
"GetRecordConfig",
|
|
1848
|
+
"GetRecordingDevices",
|
|
1849
|
+
"GetReferenceFrame",
|
|
1850
|
+
"GetReferencePosition",
|
|
1851
|
+
"GetReferenceRotation",
|
|
1852
|
+
"GetRegionWireframe",
|
|
1853
|
+
"GetRegisteredCollisionGroups",
|
|
1854
|
+
"GetRegisteredComputerCameraMovementModes",
|
|
1855
|
+
"GetRegisteredComputerMovementModes",
|
|
1856
|
+
"GetRegisteredContexts",
|
|
1857
|
+
"GetRegisteredCreatorLayersToStatus",
|
|
1858
|
+
"GetRegisteredOrchestrators",
|
|
1859
|
+
"GetRegisteredTouchCameraMovementModes",
|
|
1860
|
+
"GetRegisteredTouchMovementModes",
|
|
1861
|
+
"GetRegisteredUserLayersToStatus",
|
|
1862
|
+
"GetRelativeMousePosition",
|
|
1863
|
+
"GetRelativeVelocityAtFloor",
|
|
1864
|
+
"GetRemoteBuildMode",
|
|
1865
|
+
"GetRemoteWorldStepId",
|
|
1866
|
+
"GetRenderCFrame",
|
|
1867
|
+
"GetReplicationWeight",
|
|
1868
|
+
"GetReportAdInfo",
|
|
1869
|
+
"GetRequestBudgetForRequestType",
|
|
1870
|
+
"GetRequests",
|
|
1871
|
+
"GetResolutionAsync",
|
|
1872
|
+
"GetResolutionScale",
|
|
1873
|
+
"GetResourceByCategory",
|
|
1874
|
+
"GetResponseDelayMax",
|
|
1875
|
+
"GetResponseDelayMin",
|
|
1876
|
+
"GetRigVisualization",
|
|
1877
|
+
"GetRobloxClientChannel",
|
|
1878
|
+
"GetRobloxGuiFocused",
|
|
1879
|
+
"GetRobloxSubscriptionDetailsAsync",
|
|
1880
|
+
"GetRobloxVersion",
|
|
1881
|
+
"GetRobuxBalance",
|
|
1882
|
+
"GetRoleInGroup",
|
|
1883
|
+
"GetRoleInGroupAsync",
|
|
1884
|
+
"GetRolesInGroupAsync",
|
|
1885
|
+
"GetRoll",
|
|
1886
|
+
"GetRootPart",
|
|
1887
|
+
"GetRootSID",
|
|
1888
|
+
"GetRootVariables",
|
|
1889
|
+
"GetRotationAtTime",
|
|
1890
|
+
"GetSafeZoneOffsets",
|
|
1891
|
+
"GetSampledInertialVelocity",
|
|
1892
|
+
"GetSamplesAtTimesAsync",
|
|
1893
|
+
"GetScale",
|
|
1894
|
+
"GetScalingModeAsync",
|
|
1895
|
+
"GetScheduledNotifications",
|
|
1896
|
+
"GetSchema",
|
|
1897
|
+
"GetScreenResolution",
|
|
1898
|
+
"GetScreenSpaceBounds",
|
|
1899
|
+
"GetScreenshotCaptureObject",
|
|
1900
|
+
"GetScript",
|
|
1901
|
+
"GetScriptDocuments",
|
|
1902
|
+
"GetScriptFilePath",
|
|
1903
|
+
"GetScriptMemoryAsync",
|
|
1904
|
+
"GetScrollVelocity",
|
|
1905
|
+
"GetSdk",
|
|
1906
|
+
"GetSearchResults",
|
|
1907
|
+
"GetSeatRequested",
|
|
1908
|
+
"GetSecondaryAxis",
|
|
1909
|
+
"GetSecret",
|
|
1910
|
+
"GetSegmentCount",
|
|
1911
|
+
"GetSelectedRibbonTool",
|
|
1912
|
+
"GetSelectedText",
|
|
1913
|
+
"GetSelection",
|
|
1914
|
+
"GetSelectionEnd",
|
|
1915
|
+
"GetSelectionHighlightsEnabled",
|
|
1916
|
+
"GetSelectionStart",
|
|
1917
|
+
"GetSerializedSizeExcludingCollisionAsync",
|
|
1918
|
+
"GetServerAttribute",
|
|
1919
|
+
"GetServerFeaturesAsync",
|
|
1920
|
+
"GetServerTimeNow",
|
|
1921
|
+
"GetServerView",
|
|
1922
|
+
"GetService",
|
|
1923
|
+
"GetServiceVisibility",
|
|
1924
|
+
"GetSessionID",
|
|
1925
|
+
"GetSessionId",
|
|
1926
|
+
"GetSessionTag",
|
|
1927
|
+
"GetSetting",
|
|
1928
|
+
"GetSharedTable",
|
|
1929
|
+
"GetShouldUseLuaChat",
|
|
1930
|
+
"GetSingleReportAdInfo",
|
|
1931
|
+
"GetSize",
|
|
1932
|
+
"GetSizeAsync",
|
|
1933
|
+
"GetSizeInVoxels",
|
|
1934
|
+
"GetSkinnedJointNamesFromEditableMesh",
|
|
1935
|
+
"GetSmoothedFinalTarget",
|
|
1936
|
+
"GetSnapshot",
|
|
1937
|
+
"GetSortedAsync",
|
|
1938
|
+
"GetSortedMap",
|
|
1939
|
+
"GetSoundMemoryData",
|
|
1940
|
+
"GetSource",
|
|
1941
|
+
"GetSourceContainerByScriptGuid",
|
|
1942
|
+
"GetSpectrum",
|
|
1943
|
+
"GetStack",
|
|
1944
|
+
"GetStackTrace",
|
|
1945
|
+
"GetStandardQueue",
|
|
1946
|
+
"GetStartupAssetId",
|
|
1947
|
+
"GetStartupMessage",
|
|
1948
|
+
"GetStartupPluginId",
|
|
1949
|
+
"GetState",
|
|
1950
|
+
"GetStateEnabled",
|
|
1951
|
+
"GetStats",
|
|
1952
|
+
"GetStatus",
|
|
1953
|
+
"GetStatuses",
|
|
1954
|
+
"GetStoppingSignal",
|
|
1955
|
+
"GetString",
|
|
1956
|
+
"GetStringForKeyCode",
|
|
1957
|
+
"GetStringUniqueId",
|
|
1958
|
+
"GetStudioUserId",
|
|
1959
|
+
"GetStyleInfo",
|
|
1960
|
+
"GetStyleRules",
|
|
1961
|
+
"GetStyleSheetDerivesChain",
|
|
1962
|
+
"GetStyleSheetInfo",
|
|
1963
|
+
"GetStyled",
|
|
1964
|
+
"GetStyledPropertyChangedSignal",
|
|
1965
|
+
"GetStyledPropertyNames",
|
|
1966
|
+
"GetSubPoses",
|
|
1967
|
+
"GetSubscriptionProductInfoAsync",
|
|
1968
|
+
"GetSubscriptionPurchaseInfoAsync",
|
|
1969
|
+
"GetSuggestions",
|
|
1970
|
+
"GetSunDirection",
|
|
1971
|
+
"GetSupportedGamepadKeyCodes",
|
|
1972
|
+
"GetSyncState",
|
|
1973
|
+
"GetSyncedInstance",
|
|
1974
|
+
"GetSyncingCollaborators",
|
|
1975
|
+
"GetTableEntries",
|
|
1976
|
+
"GetTagAddedSignal",
|
|
1977
|
+
"GetTagRemovedSignal",
|
|
1978
|
+
"GetTagged",
|
|
1979
|
+
"GetTags",
|
|
1980
|
+
"GetTangentOnCurve",
|
|
1981
|
+
"GetTangentOnCurveArcLength",
|
|
1982
|
+
"GetTargetInstance",
|
|
1983
|
+
"GetTargetNames",
|
|
1984
|
+
"GetTeams",
|
|
1985
|
+
"GetTeleportData",
|
|
1986
|
+
"GetTeleportSetting",
|
|
1987
|
+
"GetTemporaryContent",
|
|
1988
|
+
"GetTemporaryId",
|
|
1989
|
+
"GetTermsOfUseUrl",
|
|
1990
|
+
"GetTerrainWireframe",
|
|
1991
|
+
"GetTestArgs",
|
|
1992
|
+
"GetTestControlSchema",
|
|
1993
|
+
"GetTestControls",
|
|
1994
|
+
"GetText",
|
|
1995
|
+
"GetTextBoundsAsync",
|
|
1996
|
+
"GetTextChannelWindows",
|
|
1997
|
+
"GetTextSize",
|
|
1998
|
+
"GetTextSizeOffsetAsync",
|
|
1999
|
+
"GetTextureIdFromAliasName",
|
|
2000
|
+
"GetTextureIdFromAssetId",
|
|
2001
|
+
"GetThirdPartyTeleportInfo",
|
|
2002
|
+
"GetThreadById",
|
|
2003
|
+
"GetThreads",
|
|
2004
|
+
"GetTiltSpeed",
|
|
2005
|
+
"GetTimeOfKeyframe",
|
|
2006
|
+
"GetTintMode",
|
|
2007
|
+
"GetTitleBarMode",
|
|
2008
|
+
"GetToolRequested",
|
|
2009
|
+
"GetTooltip",
|
|
2010
|
+
"GetTopbarTransparency",
|
|
2011
|
+
"GetTotalMemoryUsageMb",
|
|
2012
|
+
"GetTotalScriptPlusExecutionTime",
|
|
2013
|
+
"GetTouchingParts",
|
|
2014
|
+
"GetTouchpadMode",
|
|
2015
|
+
"GetTposeAdjustment",
|
|
2016
|
+
"GetTrack",
|
|
2017
|
+
"GetTrackByAnimationId",
|
|
2018
|
+
"GetTrackerData",
|
|
2019
|
+
"GetTrackerLodController",
|
|
2020
|
+
"GetTracksChanged",
|
|
2021
|
+
"GetTransforms",
|
|
2022
|
+
"GetTranslationForLocale",
|
|
2023
|
+
"GetTranslations",
|
|
2024
|
+
"GetTranslator",
|
|
2025
|
+
"GetTranslatorForLocaleAsync",
|
|
2026
|
+
"GetTranslatorForPlayer",
|
|
2027
|
+
"GetTranslatorForPlayerAsync",
|
|
2028
|
+
"GetTriangleCompositionAsync",
|
|
2029
|
+
"GetTutorialState",
|
|
2030
|
+
"GetUV",
|
|
2031
|
+
"GetUVs",
|
|
2032
|
+
"GetUiMessage",
|
|
2033
|
+
"GetUnder13",
|
|
2034
|
+
"GetUnderlyingAudioPlayer",
|
|
2035
|
+
"GetUniversalAppAdsEligibility",
|
|
2036
|
+
"GetUnparentedInstancesAsync",
|
|
2037
|
+
"GetUnrecordableInstancesAsync",
|
|
2038
|
+
"GetUpcomingExperienceEventsAsync",
|
|
2039
|
+
"GetUploadStatus",
|
|
2040
|
+
"GetUpvalues",
|
|
2041
|
+
"GetUri",
|
|
2042
|
+
"GetUserAgent",
|
|
2043
|
+
"GetUserBadgesAsync",
|
|
2044
|
+
"GetUserCFrame",
|
|
2045
|
+
"GetUserCFrameEnabled",
|
|
2046
|
+
"GetUserCategories",
|
|
2047
|
+
"GetUserDataAsync",
|
|
2048
|
+
"GetUserFromGlobalUserIdAsync",
|
|
2049
|
+
"GetUserId",
|
|
2050
|
+
"GetUserIdAccessList",
|
|
2051
|
+
"GetUserIdFromNameAsync",
|
|
2052
|
+
"GetUserIds",
|
|
2053
|
+
"GetUserInfosByUserIdsAsync",
|
|
2054
|
+
"GetUserLayerLoadingStatus",
|
|
2055
|
+
"GetUserLayerVariables",
|
|
2056
|
+
"GetUserPlatformName",
|
|
2057
|
+
"GetUserSets",
|
|
2058
|
+
"GetUserStatusForLayer",
|
|
2059
|
+
"GetUserSubscriptionDetailsAsync",
|
|
2060
|
+
"GetUserSubscriptionDetailsInternalAsync",
|
|
2061
|
+
"GetUserSubscriptionPaymentHistoryAsync",
|
|
2062
|
+
"GetUserSubscriptionStatusAsync",
|
|
2063
|
+
"GetUserThumbnailAsync",
|
|
2064
|
+
"GetUsersPriceLevelsAsync",
|
|
2065
|
+
"GetValidationRules",
|
|
2066
|
+
"GetValue",
|
|
2067
|
+
"GetValueAtTime",
|
|
2068
|
+
"GetValueChangedSignal",
|
|
2069
|
+
"GetValueString",
|
|
2070
|
+
"GetVariableById",
|
|
2071
|
+
"GetVariableByIndex",
|
|
2072
|
+
"GetVariableByName",
|
|
2073
|
+
"GetVariables",
|
|
2074
|
+
"GetVelocityAtPosition",
|
|
2075
|
+
"GetVersionAsync",
|
|
2076
|
+
"GetVersionAtTimeAsync",
|
|
2077
|
+
"GetVertexBoneWeights",
|
|
2078
|
+
"GetVertexBones",
|
|
2079
|
+
"GetVertexColors",
|
|
2080
|
+
"GetVertexFaceColor",
|
|
2081
|
+
"GetVertexFaceNormal",
|
|
2082
|
+
"GetVertexFaceUV",
|
|
2083
|
+
"GetVertexFaces",
|
|
2084
|
+
"GetVertexNormals",
|
|
2085
|
+
"GetVertexUVs",
|
|
2086
|
+
"GetVertices",
|
|
2087
|
+
"GetVerticesWithAttribute",
|
|
2088
|
+
"GetVerticesWithColor",
|
|
2089
|
+
"GetVerticesWithNormal",
|
|
2090
|
+
"GetVerticesWithUV",
|
|
2091
|
+
"GetVideoGenSessionAsync",
|
|
2092
|
+
"GetVideoGenTriggersAsync",
|
|
2093
|
+
"GetViewport",
|
|
2094
|
+
"GetVoiceChatApiVersion",
|
|
2095
|
+
"GetVoiceChatAvailable",
|
|
2096
|
+
"GetVoiceChatRestrictionStatus",
|
|
2097
|
+
"GetVoiceExperienceId",
|
|
2098
|
+
"GetWatchValue",
|
|
2099
|
+
"GetWatches",
|
|
2100
|
+
"GetWaterCell",
|
|
2101
|
+
"GetWaveformAsync",
|
|
2102
|
+
"GetWaypoints",
|
|
2103
|
+
"GetWidgetFromLabel",
|
|
2104
|
+
"GetWidgetFromPluginGui",
|
|
2105
|
+
"GetWindowState",
|
|
2106
|
+
"GetWithPlayerId",
|
|
2107
|
+
"GetWorldStepId",
|
|
2108
|
+
"GizmoRaycast",
|
|
2109
|
+
"GrantAchievement",
|
|
2110
|
+
"HandleGamepadAxisInput",
|
|
2111
|
+
"HandleGamepadButtonInput",
|
|
2112
|
+
"HandleGamepadConnect",
|
|
2113
|
+
"HandleGamepadDisconnect",
|
|
2114
|
+
"HandleLuaUIEvent",
|
|
2115
|
+
"HandleSelfieConsentResult",
|
|
2116
|
+
"HandleSelfieQRResult",
|
|
2117
|
+
"HandleWhyThisAdClicked",
|
|
2118
|
+
"HasAchieved",
|
|
2119
|
+
"HasAllocatedUniverseChatContext",
|
|
2120
|
+
"HasAnimation",
|
|
2121
|
+
"HasAppearanceLoaded",
|
|
2122
|
+
"HasBlockedPlayer",
|
|
2123
|
+
"HasCustomStatus",
|
|
2124
|
+
"HasDeviceWithId",
|
|
2125
|
+
"HasInternalPermission",
|
|
2126
|
+
"HasItem",
|
|
2127
|
+
"HasMoreResults",
|
|
2128
|
+
"HasOverrideFACSData",
|
|
2129
|
+
"HasSelectedText",
|
|
2130
|
+
"HasStatus",
|
|
2131
|
+
"HasTag",
|
|
2132
|
+
"HasUserCompletedTutorial",
|
|
2133
|
+
"HashMeshAsync",
|
|
2134
|
+
"HaveActiveUser",
|
|
2135
|
+
"HideEudsaDisclosure",
|
|
2136
|
+
"HideNotification",
|
|
2137
|
+
"HideSelfView",
|
|
2138
|
+
"HideSpotlight",
|
|
2139
|
+
"HideWidgets",
|
|
2140
|
+
"HttpGetAsync",
|
|
2141
|
+
"HttpPostAsync",
|
|
2142
|
+
"HttpRequestAsync",
|
|
2143
|
+
"IKMoveTo",
|
|
2144
|
+
"IdDebugString",
|
|
2145
|
+
"IkSolve",
|
|
2146
|
+
"ImportFBXAnimationFromFilePathUserMayChooseModel",
|
|
2147
|
+
"ImportFBXAnimationUserMayChooseModel",
|
|
2148
|
+
"ImportFbxAnimation",
|
|
2149
|
+
"ImportFbxAnimationAsync",
|
|
2150
|
+
"ImportFbxRig",
|
|
2151
|
+
"ImportFbxRigAsync",
|
|
2152
|
+
"ImportFbxRigWithoutSceneLoad",
|
|
2153
|
+
"ImportHeightmap",
|
|
2154
|
+
"ImportLoadedFBXAnimation",
|
|
2155
|
+
"ImportVideoWithPrompt",
|
|
2156
|
+
"InFocusMode",
|
|
2157
|
+
"InFullScreen",
|
|
2158
|
+
"InStudioMode",
|
|
2159
|
+
"IncrementAsync",
|
|
2160
|
+
"Info",
|
|
2161
|
+
"Init",
|
|
2162
|
+
"InitializeCreatorLayers",
|
|
2163
|
+
"InitializeRemoteAllowList",
|
|
2164
|
+
"InitializeServerAttributesForStudio",
|
|
2165
|
+
"InitializeUserLayers",
|
|
2166
|
+
"InputHoldBegin",
|
|
2167
|
+
"InputHoldEnd",
|
|
2168
|
+
"InquiryAsync",
|
|
2169
|
+
"Insert",
|
|
2170
|
+
"InsertAsset",
|
|
2171
|
+
"InsertAudio",
|
|
2172
|
+
"InsertControlPoint",
|
|
2173
|
+
"InsertImage",
|
|
2174
|
+
"InsertImages",
|
|
2175
|
+
"InsertKey",
|
|
2176
|
+
"InsertKeyValue",
|
|
2177
|
+
"InsertMarkerAtTime",
|
|
2178
|
+
"InsertMesh",
|
|
2179
|
+
"InsertMeshesWithLocation",
|
|
2180
|
+
"InsertModel",
|
|
2181
|
+
"InsertObjectsAndJoinIfLegacyAsync",
|
|
2182
|
+
"InsertPackage",
|
|
2183
|
+
"InsertStyleRule",
|
|
2184
|
+
"InsertVideo",
|
|
2185
|
+
"InspectPlayerFromHumanoidDescription",
|
|
2186
|
+
"InspectPlayerFromUserId",
|
|
2187
|
+
"InspectPlayerFromUserIdWithCtx",
|
|
2188
|
+
"InstancePassesFilter",
|
|
2189
|
+
"InternalCheckPlayabilityAsync",
|
|
2190
|
+
"InternalGenerateMeshAsync",
|
|
2191
|
+
"InternalGetStartPlaceIdAsync",
|
|
2192
|
+
"InternalRequestReviewableContentReviewAsync",
|
|
2193
|
+
"Interpolate",
|
|
2194
|
+
"InterpolateView",
|
|
2195
|
+
"Intersect",
|
|
2196
|
+
"IntersectAsync",
|
|
2197
|
+
"Inverse",
|
|
2198
|
+
"Invoke",
|
|
2199
|
+
"InvokeAsync",
|
|
2200
|
+
"InvokeChatCallback",
|
|
2201
|
+
"InvokeClient",
|
|
2202
|
+
"InvokeGameInvitePromptClosed",
|
|
2203
|
+
"InvokeIrisInvite",
|
|
2204
|
+
"InvokeIrisInvitePromptClosed",
|
|
2205
|
+
"InvokeOptInPromptClosed",
|
|
2206
|
+
"InvokeServer",
|
|
2207
|
+
"InvokeShareSheetClosed",
|
|
2208
|
+
"IsA",
|
|
2209
|
+
"IsAccountSwitchingSupported",
|
|
2210
|
+
"IsActivated",
|
|
2211
|
+
"IsActivatedWithExclusiveMouse",
|
|
2212
|
+
"IsAdLoaded",
|
|
2213
|
+
"IsAgeRestricted",
|
|
2214
|
+
"IsAncestorOf",
|
|
2215
|
+
"IsAudioEnabled",
|
|
2216
|
+
"IsAutocompleteCallbackRegistered",
|
|
2217
|
+
"IsAvailable",
|
|
2218
|
+
"IsAvatar",
|
|
2219
|
+
"IsBestFriendsWith",
|
|
2220
|
+
"IsCapturingVideo",
|
|
2221
|
+
"IsChatRestrictionSupported",
|
|
2222
|
+
"IsClient",
|
|
2223
|
+
"IsCollisionGroupRegistered",
|
|
2224
|
+
"IsCommandBar",
|
|
2225
|
+
"IsConnectionForPlayDataModel",
|
|
2226
|
+
"IsContentLoaded",
|
|
2227
|
+
"IsContextFocused",
|
|
2228
|
+
"IsContextVoiceEnabled",
|
|
2229
|
+
"IsCrossExperienceLaunchFeasible",
|
|
2230
|
+
"IsDefaultLoadingGuiRemoved",
|
|
2231
|
+
"IsDeformedLayeredClothingOutOfRenderBounds",
|
|
2232
|
+
"IsDescendantOf",
|
|
2233
|
+
"IsDidDetachSupported",
|
|
2234
|
+
"IsDisabled",
|
|
2235
|
+
"IsEdit",
|
|
2236
|
+
"IsEditableMeshNumCoplanarIntersectionsOverLimit",
|
|
2237
|
+
"IsEnabled",
|
|
2238
|
+
"IsFinishedReplicating",
|
|
2239
|
+
"IsFocused",
|
|
2240
|
+
"IsFriendsWith",
|
|
2241
|
+
"IsFriendsWithAsync",
|
|
2242
|
+
"IsGamepadButtonDown",
|
|
2243
|
+
"IsGearTypeAllowed",
|
|
2244
|
+
"IsGltf",
|
|
2245
|
+
"IsGrounded",
|
|
2246
|
+
"IsHSRReady",
|
|
2247
|
+
"IsInGroup",
|
|
2248
|
+
"IsInGroupAsync",
|
|
2249
|
+
"IsInstancePredicted",
|
|
2250
|
+
"IsInviteFriendsEnabled",
|
|
2251
|
+
"IsKeyDown",
|
|
2252
|
+
"IsLegal",
|
|
2253
|
+
"IsLoaded",
|
|
2254
|
+
"IsLoadedFromProject",
|
|
2255
|
+
"IsLoadingInternalTranslationsSettingChanged",
|
|
2256
|
+
"IsMaquettes",
|
|
2257
|
+
"IsMemoryTrackerEnabled",
|
|
2258
|
+
"IsModifierKeyDown",
|
|
2259
|
+
"IsMotorSupported",
|
|
2260
|
+
"IsMouseButtonPressed",
|
|
2261
|
+
"IsNavigationGamepad",
|
|
2262
|
+
"IsNetworkStateAvailable",
|
|
2263
|
+
"IsOnInstance",
|
|
2264
|
+
"IsPioneerApp",
|
|
2265
|
+
"IsPlaceEnabled",
|
|
2266
|
+
"IsPluginInstalled",
|
|
2267
|
+
"IsPluginUpToDate",
|
|
2268
|
+
"IsPostProcessReady",
|
|
2269
|
+
"IsProfileEnabled",
|
|
2270
|
+
"IsPropertyModified",
|
|
2271
|
+
"IsProtectedChatEnabled",
|
|
2272
|
+
"IsPublishPaused",
|
|
2273
|
+
"IsPurchaseSimulated",
|
|
2274
|
+
"IsR15",
|
|
2275
|
+
"IsRecordingInProgress",
|
|
2276
|
+
"IsRegion3Empty",
|
|
2277
|
+
"IsRegion3EmptyWithIgnoreList",
|
|
2278
|
+
"IsResimulating",
|
|
2279
|
+
"IsRevealPinnedExperienceAvailable",
|
|
2280
|
+
"IsRunMode",
|
|
2281
|
+
"IsRunning",
|
|
2282
|
+
"IsScriptAnalysisCallbackRegistered",
|
|
2283
|
+
"IsServer",
|
|
2284
|
+
"IsServerEnabled",
|
|
2285
|
+
"IsSingleSignOnSupported",
|
|
2286
|
+
"IsStarted",
|
|
2287
|
+
"IsStreamedOut",
|
|
2288
|
+
"IsStudio",
|
|
2289
|
+
"IsSubscribePaused",
|
|
2290
|
+
"IsTeamTest",
|
|
2291
|
+
"IsTenFootInterface",
|
|
2292
|
+
"IsThreadParent",
|
|
2293
|
+
"IsUniverseEnabled",
|
|
2294
|
+
"IsUniverseMetadataLoaded",
|
|
2295
|
+
"IsUrlRegistered",
|
|
2296
|
+
"IsUserDataAvailable",
|
|
2297
|
+
"IsUserFeatureEnabled",
|
|
2298
|
+
"IsVRAppBuild",
|
|
2299
|
+
"IsValidColormap",
|
|
2300
|
+
"IsValidHeightmap",
|
|
2301
|
+
"IsValidR15",
|
|
2302
|
+
"IsValidR15Plus",
|
|
2303
|
+
"IsVerified",
|
|
2304
|
+
"IsVibrationSupported",
|
|
2305
|
+
"IsVideoEnabled",
|
|
2306
|
+
"IsVoiceEnabledForUserIdAsync",
|
|
2307
|
+
"IsWatchingScriptLine",
|
|
2308
|
+
"IterateVoxelsAsync_beta",
|
|
2309
|
+
"JSONDecode",
|
|
2310
|
+
"JSONDecodeAsync",
|
|
2311
|
+
"JSONEncode",
|
|
2312
|
+
"JSONEncodeAsync",
|
|
2313
|
+
"JoinByGroupId",
|
|
2314
|
+
"JoinByGroupIdToken",
|
|
2315
|
+
"JoinToOutsiders",
|
|
2316
|
+
"JumpTo",
|
|
2317
|
+
"JumpToIndex",
|
|
2318
|
+
"Kick",
|
|
2319
|
+
"LaunchBulkImport",
|
|
2320
|
+
"LaunchExperience",
|
|
2321
|
+
"LaunchExperienceFromSource",
|
|
2322
|
+
"LaunchExperienceFromSourceWithCallback",
|
|
2323
|
+
"Leave",
|
|
2324
|
+
"LeaveTest",
|
|
2325
|
+
"Lerp",
|
|
2326
|
+
"ListDataStoresAsync",
|
|
2327
|
+
"ListEncryptedAssets",
|
|
2328
|
+
"ListFilesInFolderAsync",
|
|
2329
|
+
"ListItemsAsync",
|
|
2330
|
+
"ListKeysAsync",
|
|
2331
|
+
"ListPluginGuisAsync",
|
|
2332
|
+
"ListVersionsAsync",
|
|
2333
|
+
"Load",
|
|
2334
|
+
"LoadAnimation",
|
|
2335
|
+
"LoadAnimationCoreScript",
|
|
2336
|
+
"LoadAnnotationReplies",
|
|
2337
|
+
"LoadAnnotations",
|
|
2338
|
+
"LoadAsset",
|
|
2339
|
+
"LoadAssetAsync",
|
|
2340
|
+
"LoadAssetVersion",
|
|
2341
|
+
"LoadAssetWithBytecodeAsync",
|
|
2342
|
+
"LoadAssetWithFormat",
|
|
2343
|
+
"LoadAsync",
|
|
2344
|
+
"LoadAvatar2DPreviewAsync",
|
|
2345
|
+
"LoadBoolean",
|
|
2346
|
+
"LoadCharacter",
|
|
2347
|
+
"LoadCharacterAppearance",
|
|
2348
|
+
"LoadCharacterAsync",
|
|
2349
|
+
"LoadCharacterBlocking",
|
|
2350
|
+
"LoadCharacterWithAvatarRules",
|
|
2351
|
+
"LoadCharacterWithHumanoidDescription",
|
|
2352
|
+
"LoadCharacterWithHumanoidDescriptionAsync",
|
|
2353
|
+
"LoadData",
|
|
2354
|
+
"LoadFromHumanoid",
|
|
2355
|
+
"LoadFromModel",
|
|
2356
|
+
"LoadGeneratedAvatarAsync",
|
|
2357
|
+
"LoadGeneratedMeshAsync",
|
|
2358
|
+
"LoadInstance",
|
|
2359
|
+
"LoadLocalAsset",
|
|
2360
|
+
"LoadModelFromGlbAsync",
|
|
2361
|
+
"LoadModelFromUrlAsync",
|
|
2362
|
+
"LoadNumber",
|
|
2363
|
+
"LoadPackageAssetAsync",
|
|
2364
|
+
"LoadPlatformAsync",
|
|
2365
|
+
"LoadPlaybackAsync",
|
|
2366
|
+
"LoadPostProcessModelAsync",
|
|
2367
|
+
"LoadResolvedAnnotations",
|
|
2368
|
+
"LoadRigAndDetectType",
|
|
2369
|
+
"LoadStreamAnimation",
|
|
2370
|
+
"LoadStreamAnimationForSelfieView_deprecated",
|
|
2371
|
+
"LoadStreamAnimationV2",
|
|
2372
|
+
"LoadString",
|
|
2373
|
+
"LocalIkSolve",
|
|
2374
|
+
"Log",
|
|
2375
|
+
"LogActionEvent",
|
|
2376
|
+
"LogBrowserTrackerLayerExposure",
|
|
2377
|
+
"LogCounter",
|
|
2378
|
+
"LogCreatorLayerExposure",
|
|
2379
|
+
"LogCustomEvent",
|
|
2380
|
+
"LogDurationEvent",
|
|
2381
|
+
"LogDurationEventWithTimestamp",
|
|
2382
|
+
"LogEconomyEvent",
|
|
2383
|
+
"LogEvent",
|
|
2384
|
+
"LogFlagLinkedUserLayerExposure",
|
|
2385
|
+
"LogFunnelStepEvent",
|
|
2386
|
+
"LogImpressionEvent",
|
|
2387
|
+
"LogJourneyEvent",
|
|
2388
|
+
"LogOnboardingFunnelStepEvent",
|
|
2389
|
+
"LogPreferenceEvent",
|
|
2390
|
+
"LogProgressionCompleteEvent",
|
|
2391
|
+
"LogProgressionEvent",
|
|
2392
|
+
"LogProgressionFailEvent",
|
|
2393
|
+
"LogProgressionStartEvent",
|
|
2394
|
+
"LogPublisherWebRTCStats",
|
|
2395
|
+
"LogStat",
|
|
2396
|
+
"LogSubscriptionWebRTCStats",
|
|
2397
|
+
"LogUserLayerExposure",
|
|
2398
|
+
"Logout",
|
|
2399
|
+
"MagicLogin",
|
|
2400
|
+
"MakeJoints",
|
|
2401
|
+
"MakeRequest",
|
|
2402
|
+
"Max",
|
|
2403
|
+
"Maximize",
|
|
2404
|
+
"MergeVertices",
|
|
2405
|
+
"Message",
|
|
2406
|
+
"Min",
|
|
2407
|
+
"Minimize",
|
|
2408
|
+
"ModifyVertices",
|
|
2409
|
+
"ModifyVoxelsAsync_beta",
|
|
2410
|
+
"MouseDown",
|
|
2411
|
+
"MouseMove",
|
|
2412
|
+
"MouseUp",
|
|
2413
|
+
"Move",
|
|
2414
|
+
"MoveMouse",
|
|
2415
|
+
"MoveTo",
|
|
2416
|
+
"MultiEditTextAsync",
|
|
2417
|
+
"MultiGetCanCollaborate",
|
|
2418
|
+
"MutateWindow",
|
|
2419
|
+
"Negate",
|
|
2420
|
+
"Next",
|
|
2421
|
+
"NextInteger",
|
|
2422
|
+
"NextNumber",
|
|
2423
|
+
"NextUnitVector",
|
|
2424
|
+
"NoPromptApplyProfileConfiguration",
|
|
2425
|
+
"NoPromptCreateOutfit",
|
|
2426
|
+
"NoPromptDeleteOutfit",
|
|
2427
|
+
"NoPromptRenameOutfit",
|
|
2428
|
+
"NoPromptSaveAvatar",
|
|
2429
|
+
"NoPromptSaveAvatarThumbnailCustomization",
|
|
2430
|
+
"NoPromptSetFavorite",
|
|
2431
|
+
"NoPromptUpdateOutfit",
|
|
2432
|
+
"NormalizeAsync",
|
|
2433
|
+
"NotifyAgeCheckPassed",
|
|
2434
|
+
"OnCameraCFrameReplicationRequest",
|
|
2435
|
+
"OnCaptureBegan",
|
|
2436
|
+
"OnCaptureEnded",
|
|
2437
|
+
"OnCaptureObjectShared",
|
|
2438
|
+
"OnCapturePermissionsPromptFinished",
|
|
2439
|
+
"OnCaptureShared",
|
|
2440
|
+
"OnDemandVideoCompleteFromUI",
|
|
2441
|
+
"OnDragAreaDoubleClicked",
|
|
2442
|
+
"OnDragAreaRightClicked",
|
|
2443
|
+
"OnInvoke",
|
|
2444
|
+
"OnInvokeSuspendOverride",
|
|
2445
|
+
"OnNotificationDisplayed",
|
|
2446
|
+
"OnNotificationInteraction",
|
|
2447
|
+
"OnNotificationUpdateFromPlugin",
|
|
2448
|
+
"OnSavePromptFinished",
|
|
2449
|
+
"OnSetItem",
|
|
2450
|
+
"OnSharePromptFinished",
|
|
2451
|
+
"OnTestPlayerCountChanged",
|
|
2452
|
+
"OnUpdate",
|
|
2453
|
+
"OnUserChatSettingUpdateAsync",
|
|
2454
|
+
"OnVideoCaptureShared",
|
|
2455
|
+
"Once",
|
|
2456
|
+
"Open",
|
|
2457
|
+
"OpenAttenuationCurveEditor",
|
|
2458
|
+
"OpenBrowserWindow",
|
|
2459
|
+
"OpenDirectionalCurveEditor",
|
|
2460
|
+
"OpenExceptionMessagePopup",
|
|
2461
|
+
"OpenFileInWebBrowser",
|
|
2462
|
+
"OpenFolder",
|
|
2463
|
+
"OpenInBrowser_DONOTUSE",
|
|
2464
|
+
"OpenLogsFolder",
|
|
2465
|
+
"OpenNativeOverlay",
|
|
2466
|
+
"OpenPlace",
|
|
2467
|
+
"OpenScreenshotsFolder",
|
|
2468
|
+
"OpenScript",
|
|
2469
|
+
"OpenScriptAtLine",
|
|
2470
|
+
"OpenScriptDocumentAsync",
|
|
2471
|
+
"OpenShop",
|
|
2472
|
+
"OpenTemporaryDocumentAsync",
|
|
2473
|
+
"OpenUrl",
|
|
2474
|
+
"OpenVideosFolder",
|
|
2475
|
+
"OpenWeChatAuthWindow",
|
|
2476
|
+
"OpenWikiPage",
|
|
2477
|
+
"OpenWindow",
|
|
2478
|
+
"OpenWindowV2",
|
|
2479
|
+
"Orthonormalize",
|
|
2480
|
+
"Output",
|
|
2481
|
+
"OverrideStreamingRadii",
|
|
2482
|
+
"OverrideStudioAction",
|
|
2483
|
+
"PGSIsEnabled",
|
|
2484
|
+
"PanUnits",
|
|
2485
|
+
"Pass",
|
|
2486
|
+
"Passed",
|
|
2487
|
+
"PasteRegion",
|
|
2488
|
+
"Pause",
|
|
2489
|
+
"PauseSound",
|
|
2490
|
+
"PerformBulkPurchase",
|
|
2491
|
+
"PerformCancelSubscription",
|
|
2492
|
+
"PerformCreateOutfitWithDescription",
|
|
2493
|
+
"PerformCreatorStorePurchase",
|
|
2494
|
+
"PerformDeleteOutfit",
|
|
2495
|
+
"PerformManagedUpdate",
|
|
2496
|
+
"PerformPurchase",
|
|
2497
|
+
"PerformPurchaseV2",
|
|
2498
|
+
"PerformRenameOutfit",
|
|
2499
|
+
"PerformSaveAvatarWithDescription",
|
|
2500
|
+
"PerformSetFavorite",
|
|
2501
|
+
"PerformSubscriptionPurchase",
|
|
2502
|
+
"PerformSubscriptionPurchaseV2",
|
|
2503
|
+
"PerformSubscriptionPurchaseV3Async",
|
|
2504
|
+
"PerformSubscriptionPurchaseWithRobuxAsync",
|
|
2505
|
+
"PerformUpdateOutfit",
|
|
2506
|
+
"PickFileWithPromptAsync",
|
|
2507
|
+
"PickImageFileWithPrompt",
|
|
2508
|
+
"PickMeshFileWithPrompt",
|
|
2509
|
+
"PickMultipleFilesWithPrompt",
|
|
2510
|
+
"PinExperience",
|
|
2511
|
+
"PinStreamingForInstance",
|
|
2512
|
+
"PinStreamingForInstanceByUniqueId",
|
|
2513
|
+
"PivotTo",
|
|
2514
|
+
"Play",
|
|
2515
|
+
"PlayEmote",
|
|
2516
|
+
"PlayEmoteAndGetAnimTrackById",
|
|
2517
|
+
"PlayEmoteAsync",
|
|
2518
|
+
"PlayInputRecording",
|
|
2519
|
+
"PlayLocalSound",
|
|
2520
|
+
"PlaySound",
|
|
2521
|
+
"PlayerCanMakePurchases",
|
|
2522
|
+
"PlayerHasPass",
|
|
2523
|
+
"PlayerOwnsAsset",
|
|
2524
|
+
"PlayerOwnsAssetAsync",
|
|
2525
|
+
"PlayerOwnsBundle",
|
|
2526
|
+
"PlayerOwnsBundleAsync",
|
|
2527
|
+
"PointToObjectSpace",
|
|
2528
|
+
"PointToWorldSpace",
|
|
2529
|
+
"PollClientFeatures",
|
|
2530
|
+
"PollServerFeatures",
|
|
2531
|
+
"Populate",
|
|
2532
|
+
"PostAsync",
|
|
2533
|
+
"PostAsyncFullUrl",
|
|
2534
|
+
"PreCaptureShared",
|
|
2535
|
+
"PreVideoCaptureShared",
|
|
2536
|
+
"Preload",
|
|
2537
|
+
"PreloadAsync",
|
|
2538
|
+
"PrepareAvatarForPreviewAsync",
|
|
2539
|
+
"PrepareCollectiblesPurchase",
|
|
2540
|
+
"PrepareCommerceProductPurchase",
|
|
2541
|
+
"PreviewTexture",
|
|
2542
|
+
"Previous",
|
|
2543
|
+
"Prewarm",
|
|
2544
|
+
"Print",
|
|
2545
|
+
"PrintHello",
|
|
2546
|
+
"ProcessCommand",
|
|
2547
|
+
"PromptAgeCheck",
|
|
2548
|
+
"PromptAllowInventoryReadAccess",
|
|
2549
|
+
"PromptBulkPurchase",
|
|
2550
|
+
"PromptBundlePurchase",
|
|
2551
|
+
"PromptCancelSubscription",
|
|
2552
|
+
"PromptCaptureGalleryPermissionAsync",
|
|
2553
|
+
"PromptClosePlace",
|
|
2554
|
+
"PromptCollectiblesPurchase",
|
|
2555
|
+
"PromptCommerceProductPurchase",
|
|
2556
|
+
"PromptCreateAvatarAssetAsync",
|
|
2557
|
+
"PromptCreateAvatarAsync",
|
|
2558
|
+
"PromptCreateMakeupAsync",
|
|
2559
|
+
"PromptCreateOutfit",
|
|
2560
|
+
"PromptCreatePlatformContentAsync",
|
|
2561
|
+
"PromptDeleteOutfit",
|
|
2562
|
+
"PromptDownloadGameTableToCSV",
|
|
2563
|
+
"PromptExperienceDetailsAsync",
|
|
2564
|
+
"PromptExperienceDetailsCompleted",
|
|
2565
|
+
"PromptExportToCSVs",
|
|
2566
|
+
"PromptFeedbackSubmissionAsync",
|
|
2567
|
+
"PromptForExistingAssetId",
|
|
2568
|
+
"PromptForExistingAssetIdAsync",
|
|
2569
|
+
"PromptGameInvite",
|
|
2570
|
+
"PromptGamePassPurchase",
|
|
2571
|
+
"PromptImportAnimationClipFromVideoAsync",
|
|
2572
|
+
"PromptImportFile",
|
|
2573
|
+
"PromptImportFileAsync",
|
|
2574
|
+
"PromptImportFiles",
|
|
2575
|
+
"PromptImportFilesAsync",
|
|
2576
|
+
"PromptImportFromCSVs",
|
|
2577
|
+
"PromptJoinAsync",
|
|
2578
|
+
"PromptJoinCompleted",
|
|
2579
|
+
"PromptLinkSharing",
|
|
2580
|
+
"PromptLinkSharingAsync",
|
|
2581
|
+
"PromptLogin",
|
|
2582
|
+
"PromptNativePurchase",
|
|
2583
|
+
"PromptNativePurchaseWithLocalPlayer",
|
|
2584
|
+
"PromptNativePurchaseWithLocalPlayerWithPaymentSessionId",
|
|
2585
|
+
"PromptNativePurchaseWithPaymentSessionId",
|
|
2586
|
+
"PromptOptIn",
|
|
2587
|
+
"PromptPhoneBook",
|
|
2588
|
+
"PromptPremiumPurchase",
|
|
2589
|
+
"PromptProductPurchase",
|
|
2590
|
+
"PromptPurchase",
|
|
2591
|
+
"PromptRealWorldCommerceBrowser",
|
|
2592
|
+
"PromptRenameOutfit",
|
|
2593
|
+
"PromptRobloxPurchase",
|
|
2594
|
+
"PromptRobloxSubscriptionPurchase",
|
|
2595
|
+
"PromptRobuxTransferAsync",
|
|
2596
|
+
"PromptRsvpToEventAsync",
|
|
2597
|
+
"PromptRsvpToEventCompleted",
|
|
2598
|
+
"PromptSaveAvatar",
|
|
2599
|
+
"PromptSaveCapturesToGallery",
|
|
2600
|
+
"PromptSaveInstanceToRobloxAsync",
|
|
2601
|
+
"PromptSaveSelection",
|
|
2602
|
+
"PromptSaveSelectionAsync",
|
|
2603
|
+
"PromptSecurityChallengeAsync",
|
|
2604
|
+
"PromptSelectAvatarGenerationImageAsync",
|
|
2605
|
+
"PromptSetFavorite",
|
|
2606
|
+
"PromptShareCapture",
|
|
2607
|
+
"PromptSubscriptionPurchase",
|
|
2608
|
+
"PromptThirdPartyPurchase",
|
|
2609
|
+
"PromptUpdateOutfit",
|
|
2610
|
+
"PromptUploadCSVToGameTable",
|
|
2611
|
+
"Publish",
|
|
2612
|
+
"PublishAs",
|
|
2613
|
+
"PublishAsync",
|
|
2614
|
+
"PublishCageMeshAsync",
|
|
2615
|
+
"PublishDescendantAssets",
|
|
2616
|
+
"PublishDescendantAssetsAsync",
|
|
2617
|
+
"PublishPackage",
|
|
2618
|
+
"PublishPause",
|
|
2619
|
+
"PublishProtocolMethodRequest",
|
|
2620
|
+
"PublishProtocolMethodResponse",
|
|
2621
|
+
"PublishThenTurnOnTeamCreate",
|
|
2622
|
+
"QueryDescendants",
|
|
2623
|
+
"RankProductsAsync",
|
|
2624
|
+
"Raycast",
|
|
2625
|
+
"RaycastCachedTerrain",
|
|
2626
|
+
"RaycastLocal",
|
|
2627
|
+
"ReadAsync",
|
|
2628
|
+
"ReadBufferAsync",
|
|
2629
|
+
"ReadCapturesFromGalleryAsync",
|
|
2630
|
+
"ReadPixelsBuffer",
|
|
2631
|
+
"ReadVoxelChannels",
|
|
2632
|
+
"ReadVoxels",
|
|
2633
|
+
"ReadVoxelsAsync_beta",
|
|
2634
|
+
"RebalanceTeams",
|
|
2635
|
+
"RecenterUserHeadCFrame",
|
|
2636
|
+
"RecommendTopProductsAsync",
|
|
2637
|
+
"ReconcileCommunicationAccess",
|
|
2638
|
+
"RecordAsync",
|
|
2639
|
+
"Redo",
|
|
2640
|
+
"References",
|
|
2641
|
+
"Refresh",
|
|
2642
|
+
"RefreshDocumentDisplayName",
|
|
2643
|
+
"RegionCodeWillHaveAutomaticNonCustomPolicies",
|
|
2644
|
+
"RegisterActiveAnimationClip",
|
|
2645
|
+
"RegisterActiveKeyframeSequence",
|
|
2646
|
+
"RegisterAdOpportunityAsync",
|
|
2647
|
+
"RegisterAlternateMesh",
|
|
2648
|
+
"RegisterAnimationClip",
|
|
2649
|
+
"RegisterAutocompleteCallback",
|
|
2650
|
+
"RegisterChatCallback",
|
|
2651
|
+
"RegisterCollisionGroup",
|
|
2652
|
+
"RegisterComputerCameraMovementMode",
|
|
2653
|
+
"RegisterComputerMovementMode",
|
|
2654
|
+
"RegisterContextIdFromLua",
|
|
2655
|
+
"RegisterCreatorLayers",
|
|
2656
|
+
"RegisterDefaultEncryptionKey",
|
|
2657
|
+
"RegisterDefaultSessionKey",
|
|
2658
|
+
"RegisterDisclosureButton",
|
|
2659
|
+
"RegisterEncryptedAsset",
|
|
2660
|
+
"RegisterEvaluationParallelCallback",
|
|
2661
|
+
"RegisterForExperienceJoin",
|
|
2662
|
+
"RegisterForExperienceLeave",
|
|
2663
|
+
"RegisterGetCore",
|
|
2664
|
+
"RegisterImpressionSource",
|
|
2665
|
+
"RegisterItemAsync",
|
|
2666
|
+
"RegisterKeyframeSequence",
|
|
2667
|
+
"RegisterLuaUrl",
|
|
2668
|
+
"RegisterOpenCloud",
|
|
2669
|
+
"RegisterPublishHold",
|
|
2670
|
+
"RegisterScriptAnalysisCallback",
|
|
2671
|
+
"RegisterSessionEncryptedAsset",
|
|
2672
|
+
"RegisterSetCore",
|
|
2673
|
+
"RegisterTest",
|
|
2674
|
+
"RegisterTestLegacy",
|
|
2675
|
+
"RegisterTouchCameraMovementMode",
|
|
2676
|
+
"RegisterTouchMovementMode",
|
|
2677
|
+
"RegisterUGCValidationFunction",
|
|
2678
|
+
"RegisterUserLayers",
|
|
2679
|
+
"RegistrationComplete",
|
|
2680
|
+
"Release",
|
|
2681
|
+
"ReleaseAsync",
|
|
2682
|
+
"ReleaseContextFocus",
|
|
2683
|
+
"ReleaseFocus",
|
|
2684
|
+
"ReleaseRBXEventStream",
|
|
2685
|
+
"Remove",
|
|
2686
|
+
"RemoveAccessories",
|
|
2687
|
+
"RemoveAsync",
|
|
2688
|
+
"RemoveBone",
|
|
2689
|
+
"RemoveBreakpoint",
|
|
2690
|
+
"RemoveBreakpointById",
|
|
2691
|
+
"RemoveCenterDialog",
|
|
2692
|
+
"RemoveCharacter",
|
|
2693
|
+
"RemoveCollisionGroup",
|
|
2694
|
+
"RemoveControlPoint",
|
|
2695
|
+
"RemoveCustomStatus",
|
|
2696
|
+
"RemoveDefaultLoadingScreen",
|
|
2697
|
+
"RemoveDeviceAsync",
|
|
2698
|
+
"RemoveEmote",
|
|
2699
|
+
"RemoveEntry",
|
|
2700
|
+
"RemoveEntryValue",
|
|
2701
|
+
"RemoveFace",
|
|
2702
|
+
"RemoveFrom",
|
|
2703
|
+
"RemoveGlobalPointsField",
|
|
2704
|
+
"RemoveGlobalPointsTag",
|
|
2705
|
+
"RemoveInputPin",
|
|
2706
|
+
"RemoveItem",
|
|
2707
|
+
"RemoveItemAsync",
|
|
2708
|
+
"RemoveKey",
|
|
2709
|
+
"RemoveKeyAtIndex",
|
|
2710
|
+
"RemoveKeyframe",
|
|
2711
|
+
"RemoveMarker",
|
|
2712
|
+
"RemoveMarkerAtIndex",
|
|
2713
|
+
"RemoveMetadata",
|
|
2714
|
+
"RemovePersistentPlayer",
|
|
2715
|
+
"RemovePlace",
|
|
2716
|
+
"RemovePose",
|
|
2717
|
+
"RemovePreset",
|
|
2718
|
+
"RemoveReplicationFocus",
|
|
2719
|
+
"RemoveReplicationFocusPosition",
|
|
2720
|
+
"RemoveScriptLineMarkers",
|
|
2721
|
+
"RemoveSelectionGroup",
|
|
2722
|
+
"RemoveSession",
|
|
2723
|
+
"RemoveSessionsWithMetadataKey",
|
|
2724
|
+
"RemoveSpecialKey",
|
|
2725
|
+
"RemoveStatus",
|
|
2726
|
+
"RemoveSubPose",
|
|
2727
|
+
"RemoveTag",
|
|
2728
|
+
"RemoveTargetLocale",
|
|
2729
|
+
"RemoveUnused",
|
|
2730
|
+
"RemoveValue",
|
|
2731
|
+
"RemoveVersionAsync",
|
|
2732
|
+
"RenameAlias",
|
|
2733
|
+
"RenameCollisionGroup",
|
|
2734
|
+
"RenameModel",
|
|
2735
|
+
"RenamePlace",
|
|
2736
|
+
"RenameToDefault",
|
|
2737
|
+
"RenderdocTriggerCapture",
|
|
2738
|
+
"ReplaceBodyPartR15",
|
|
2739
|
+
"ReplaceMaterial",
|
|
2740
|
+
"ReplaceMaterialInTransform",
|
|
2741
|
+
"ReplaceMaterialInTransformSubregion",
|
|
2742
|
+
"ReplaceMaterialInTransformSubregionSlot",
|
|
2743
|
+
"ReplaceSession",
|
|
2744
|
+
"ReportAbuse",
|
|
2745
|
+
"ReportAbuseV3",
|
|
2746
|
+
"ReportAssetSale",
|
|
2747
|
+
"ReportAvatarAbuse",
|
|
2748
|
+
"ReportBuildUIClose",
|
|
2749
|
+
"ReportBuildUIOpen",
|
|
2750
|
+
"ReportCapturesUIClose",
|
|
2751
|
+
"ReportCapturesUIOpen",
|
|
2752
|
+
"ReportChatAbuse",
|
|
2753
|
+
"ReportChatLineReportingClose",
|
|
2754
|
+
"ReportChatLineReportingOpen",
|
|
2755
|
+
"ReportChatSuspensionDialogClose",
|
|
2756
|
+
"ReportChatSuspensionDialogOpen",
|
|
2757
|
+
"ReportCounter",
|
|
2758
|
+
"ReportInfluxSeries",
|
|
2759
|
+
"ReportLog",
|
|
2760
|
+
"ReportLuaRequireCount",
|
|
2761
|
+
"ReportMenuTabClose",
|
|
2762
|
+
"ReportMenuTabOpen",
|
|
2763
|
+
"ReportMultipleLogs",
|
|
2764
|
+
"ReportPartyChatWindowClose",
|
|
2765
|
+
"ReportPartyChatWindowOpen",
|
|
2766
|
+
"ReportRobuxUpsellStarted",
|
|
2767
|
+
"ReportStats",
|
|
2768
|
+
"ReportToDiagByCountryCode",
|
|
2769
|
+
"ReportUGCValidationCounter",
|
|
2770
|
+
"ReportUGCValidationFailureTelemetry",
|
|
2771
|
+
"ReportUGCValidationTelemetry",
|
|
2772
|
+
"RequestAccessTokenScopesAsync",
|
|
2773
|
+
"RequestAsync",
|
|
2774
|
+
"RequestAvatarAutosetupAsync",
|
|
2775
|
+
"RequestAvatarGenerationSessionAsync",
|
|
2776
|
+
"RequestFlushAsync",
|
|
2777
|
+
"RequestFlyToCollaborator",
|
|
2778
|
+
"RequestFocus",
|
|
2779
|
+
"RequestFriendship",
|
|
2780
|
+
"RequestHttpResultApproved",
|
|
2781
|
+
"RequestInternal",
|
|
2782
|
+
"RequestLimitedAsync",
|
|
2783
|
+
"RequestModerationModeEnabled",
|
|
2784
|
+
"RequestNavigation",
|
|
2785
|
+
"RequestRCCProfilerData",
|
|
2786
|
+
"RequestRaise",
|
|
2787
|
+
"RequestScreenshotPermissionAsync",
|
|
2788
|
+
"RequestSeat",
|
|
2789
|
+
"RequestServerHttpResult",
|
|
2790
|
+
"RequestServerOutput",
|
|
2791
|
+
"RequestServerStats",
|
|
2792
|
+
"RequestSetSelectionAsync",
|
|
2793
|
+
"RequestStreamAroundAsync",
|
|
2794
|
+
"RequestTool",
|
|
2795
|
+
"RequestValidationAsync",
|
|
2796
|
+
"Require",
|
|
2797
|
+
"RequireLegacy",
|
|
2798
|
+
"ReserveServer",
|
|
2799
|
+
"ReserveServerAsync",
|
|
2800
|
+
"Reset",
|
|
2801
|
+
"ResetCollisionFidelity",
|
|
2802
|
+
"ResetCollisionFidelityWithEditableMeshDataLua",
|
|
2803
|
+
"ResetGraph",
|
|
2804
|
+
"ResetHarmonyMemoryTarget",
|
|
2805
|
+
"ResetHighlight",
|
|
2806
|
+
"ResetKeyboardMode",
|
|
2807
|
+
"ResetLocalPlayer",
|
|
2808
|
+
"ResetMaterialSlot",
|
|
2809
|
+
"ResetNormal",
|
|
2810
|
+
"ResetOnboardingCompleted",
|
|
2811
|
+
"ResetOrientationToIdentity",
|
|
2812
|
+
"ResetPropertyToDefault",
|
|
2813
|
+
"ResetScrollVelocity",
|
|
2814
|
+
"ResetTestControl",
|
|
2815
|
+
"ResetWaterFlowMap",
|
|
2816
|
+
"ResetWaypoints",
|
|
2817
|
+
"Resize",
|
|
2818
|
+
"ResolveAnnotation",
|
|
2819
|
+
"ResolveModulePath",
|
|
2820
|
+
"ResolveSaveInstanceToRoblox",
|
|
2821
|
+
"ResolveStateForUser",
|
|
2822
|
+
"RestartDrag",
|
|
2823
|
+
"Restore",
|
|
2824
|
+
"RestoreBranchAsync",
|
|
2825
|
+
"RestoreScripts",
|
|
2826
|
+
"Resume",
|
|
2827
|
+
"ResumeSound",
|
|
2828
|
+
"RetrieveCaptures",
|
|
2829
|
+
"ReturnToJavaScript",
|
|
2830
|
+
"ReturnToPublisherExperience",
|
|
2831
|
+
"RevealFileInFolder",
|
|
2832
|
+
"RevealPinnedExperience",
|
|
2833
|
+
"ReviewableTextEditsAsync",
|
|
2834
|
+
"RevokeFriendship",
|
|
2835
|
+
"RobloxOnlyTranslate",
|
|
2836
|
+
"Rotation",
|
|
2837
|
+
"Run",
|
|
2838
|
+
"RunAsync",
|
|
2839
|
+
"RunMoreCode",
|
|
2840
|
+
"SampleDirectional",
|
|
2841
|
+
"SampleImageProjected",
|
|
2842
|
+
"SampleUniform",
|
|
2843
|
+
"SaveBoolean",
|
|
2844
|
+
"SaveCaptureObjectToExternalStorage",
|
|
2845
|
+
"SaveCaptureToExternalStorage",
|
|
2846
|
+
"SaveCapturesToExternalStorageAsync",
|
|
2847
|
+
"SaveData",
|
|
2848
|
+
"SaveInstance",
|
|
2849
|
+
"SaveNumber",
|
|
2850
|
+
"SaveOrPublishPlaceToRobloxIsCanceled",
|
|
2851
|
+
"SavePlace",
|
|
2852
|
+
"SavePlaceAsync",
|
|
2853
|
+
"SavePreset",
|
|
2854
|
+
"SaveScreenshotCapture",
|
|
2855
|
+
"SaveScriptProfilingData",
|
|
2856
|
+
"SaveSelectedToRoblox",
|
|
2857
|
+
"SaveState",
|
|
2858
|
+
"SaveString",
|
|
2859
|
+
"SaveVideoCaptureToExternalStorage",
|
|
2860
|
+
"ScaleAsync",
|
|
2861
|
+
"ScaleTo",
|
|
2862
|
+
"ScheduleNotification",
|
|
2863
|
+
"ScopeCheckUIComplete",
|
|
2864
|
+
"ScopeTime",
|
|
2865
|
+
"ScreenPointToRay",
|
|
2866
|
+
"ScrollToTop",
|
|
2867
|
+
"SearchAudio",
|
|
2868
|
+
"SearchAudioAsync",
|
|
2869
|
+
"SearchCatalog",
|
|
2870
|
+
"SearchCatalogAsync",
|
|
2871
|
+
"SegmentMeshAsync",
|
|
2872
|
+
"Select",
|
|
2873
|
+
"SelectRibbonTool",
|
|
2874
|
+
"Send",
|
|
2875
|
+
"SendAccelerometerEvent",
|
|
2876
|
+
"SendAppUISizes",
|
|
2877
|
+
"SendAsync",
|
|
2878
|
+
"SendCommand",
|
|
2879
|
+
"SendDictatedSpeechAsync",
|
|
2880
|
+
"SendDictatedSpeechUniverseChatAsync",
|
|
2881
|
+
"SendEnableChatButtonClicked",
|
|
2882
|
+
"SendEnableChatButtonShown",
|
|
2883
|
+
"SendEventDeferred",
|
|
2884
|
+
"SendEventImmediately",
|
|
2885
|
+
"SendExpChatLoadSuccess",
|
|
2886
|
+
"SendExpChatMessageClientRendered",
|
|
2887
|
+
"SendExpChatWindowScroll",
|
|
2888
|
+
"SendExpChatWindowStatusChange",
|
|
2889
|
+
"SendGravityEvent",
|
|
2890
|
+
"SendGyroscopeEvent",
|
|
2891
|
+
"SendInternalAsync",
|
|
2892
|
+
"SendKey",
|
|
2893
|
+
"SendKeyEvent",
|
|
2894
|
+
"SendMessage",
|
|
2895
|
+
"SendMouseButton",
|
|
2896
|
+
"SendMouseButtonEvent",
|
|
2897
|
+
"SendMouseDelta",
|
|
2898
|
+
"SendMouseMoveDeltaEvent",
|
|
2899
|
+
"SendMouseMoveEvent",
|
|
2900
|
+
"SendMousePosition",
|
|
2901
|
+
"SendMouseWheelEvent",
|
|
2902
|
+
"SendNotification",
|
|
2903
|
+
"SendPointerAction",
|
|
2904
|
+
"SendPresetAsync",
|
|
2905
|
+
"SendReport",
|
|
2906
|
+
"SendScroll",
|
|
2907
|
+
"SendTextChatCommandClientSent",
|
|
2908
|
+
"SendTextInput",
|
|
2909
|
+
"SendTextInputCharacterEvent",
|
|
2910
|
+
"SendTouchEvent",
|
|
2911
|
+
"SendUIOcclusionMetricsForQueryRegion",
|
|
2912
|
+
"SendUniverseChatMessageAsync",
|
|
2913
|
+
"SendUniverseChatPresetAsync",
|
|
2914
|
+
"SendUpdate",
|
|
2915
|
+
"Sense",
|
|
2916
|
+
"Separate",
|
|
2917
|
+
"SerializeInstances",
|
|
2918
|
+
"SerializeInstancesAsync",
|
|
2919
|
+
"ServerRequestData",
|
|
2920
|
+
"ServerRequestDataAsync",
|
|
2921
|
+
"ServerStart",
|
|
2922
|
+
"ServerStop",
|
|
2923
|
+
"SessionExists",
|
|
2924
|
+
"Set",
|
|
2925
|
+
"Set3dRenderingEnabled",
|
|
2926
|
+
"SetAbsolutePosition",
|
|
2927
|
+
"SetAbsoluteSize",
|
|
2928
|
+
"SetAccessories",
|
|
2929
|
+
"SetAccountAge",
|
|
2930
|
+
"SetActive",
|
|
2931
|
+
"SetAdGuiInteractivityHandlerInitialized",
|
|
2932
|
+
"SetAdorneeOffsetFromAbsolutePosition",
|
|
2933
|
+
"SetAllowInventoryReadAccess",
|
|
2934
|
+
"SetAngleAttenuation",
|
|
2935
|
+
"SetAsync",
|
|
2936
|
+
"SetAttribute",
|
|
2937
|
+
"SetAudioApiByDefault",
|
|
2938
|
+
"SetAutoUpdate",
|
|
2939
|
+
"SetAvatarUnificationMode",
|
|
2940
|
+
"SetAxis",
|
|
2941
|
+
"SetBaseMaterialOverride",
|
|
2942
|
+
"SetBaseUrl",
|
|
2943
|
+
"SetBatchWindowDelay",
|
|
2944
|
+
"SetBlockListInitialized",
|
|
2945
|
+
"SetBoneCFrame",
|
|
2946
|
+
"SetBoneIsVirtual",
|
|
2947
|
+
"SetBoneName",
|
|
2948
|
+
"SetBoneParent",
|
|
2949
|
+
"SetBreakpoint",
|
|
2950
|
+
"SetBubbleChatSettings",
|
|
2951
|
+
"SetCageMeshContent",
|
|
2952
|
+
"SetCameraPanMode",
|
|
2953
|
+
"SetCameraYInvertVisible",
|
|
2954
|
+
"SetCell",
|
|
2955
|
+
"SetCells",
|
|
2956
|
+
"SetCharacterAppearanceJson",
|
|
2957
|
+
"SetChatStyle",
|
|
2958
|
+
"SetChatTranslationSettingsLocaleId",
|
|
2959
|
+
"SetChildBreakpointEnabledByScriptAndContext",
|
|
2960
|
+
"SetClickToWalkEnabled",
|
|
2961
|
+
"SetColor",
|
|
2962
|
+
"SetColorAlpha",
|
|
2963
|
+
"SetCondition",
|
|
2964
|
+
"SetConditions",
|
|
2965
|
+
"SetContents",
|
|
2966
|
+
"SetContextEnabled",
|
|
2967
|
+
"SetContinueExecution",
|
|
2968
|
+
"SetControlPoints",
|
|
2969
|
+
"SetCore",
|
|
2970
|
+
"SetCoreGuiEnabled",
|
|
2971
|
+
"SetCurrentDeviceId",
|
|
2972
|
+
"SetCurrentMaterial",
|
|
2973
|
+
"SetCurrentOrientation",
|
|
2974
|
+
"SetCurrentThreadId",
|
|
2975
|
+
"SetCustomSortFunction",
|
|
2976
|
+
"SetCustomTitleBarHeight",
|
|
2977
|
+
"SetDefaultLoadingGuiRemoved",
|
|
2978
|
+
"SetDefaultPropertyTransition",
|
|
2979
|
+
"SetDefaultValue",
|
|
2980
|
+
"SetDerives",
|
|
2981
|
+
"SetDescription",
|
|
2982
|
+
"SetDesiredAngle",
|
|
2983
|
+
"SetDeviceAsync",
|
|
2984
|
+
"SetDirectChatRequester",
|
|
2985
|
+
"SetDistanceAttenuation",
|
|
2986
|
+
"SetDragStyleFunction",
|
|
2987
|
+
"SetDropdownActive",
|
|
2988
|
+
"SetEmotes",
|
|
2989
|
+
"SetEmotesMenuOpen",
|
|
2990
|
+
"SetEmulatedPolicyInfo",
|
|
2991
|
+
"SetEnableContentImageSizeChangedEvents",
|
|
2992
|
+
"SetEnabled",
|
|
2993
|
+
"SetEntries",
|
|
2994
|
+
"SetEntry",
|
|
2995
|
+
"SetEntryContext",
|
|
2996
|
+
"SetEntryExample",
|
|
2997
|
+
"SetEntryKey",
|
|
2998
|
+
"SetEntrySource",
|
|
2999
|
+
"SetEntryValue",
|
|
3000
|
+
"SetEquippedEmotes",
|
|
3001
|
+
"SetExceptionBreakMode",
|
|
3002
|
+
"SetExperienceSettingsLocaleId",
|
|
3003
|
+
"SetExperimentalFeatures",
|
|
3004
|
+
"SetFFlagOverrides",
|
|
3005
|
+
"SetFaceColors",
|
|
3006
|
+
"SetFaceNormals",
|
|
3007
|
+
"SetFaceUVs",
|
|
3008
|
+
"SetFaceVertices",
|
|
3009
|
+
"SetFacsBonePose",
|
|
3010
|
+
"SetFacsCorrectivePose",
|
|
3011
|
+
"SetFacsPose",
|
|
3012
|
+
"SetFastFlagForTesting",
|
|
3013
|
+
"SetFastIntForTesting",
|
|
3014
|
+
"SetFastStringForTesting",
|
|
3015
|
+
"SetField",
|
|
3016
|
+
"SetFilter",
|
|
3017
|
+
"SetFingerControl",
|
|
3018
|
+
"SetFingerTip",
|
|
3019
|
+
"SetFixedSize",
|
|
3020
|
+
"SetFlagVersion",
|
|
3021
|
+
"SetFocusLock",
|
|
3022
|
+
"SetGamepadCameraSensitivityVisible",
|
|
3023
|
+
"SetGamepadCursorPosition",
|
|
3024
|
+
"SetGameplayPausedNotificationEnabled",
|
|
3025
|
+
"SetGlobal",
|
|
3026
|
+
"SetGlobalGuiInset",
|
|
3027
|
+
"SetGuiObject",
|
|
3028
|
+
"SetHardwareSafeAreaInsets",
|
|
3029
|
+
"SetHarmonyMemoryTarget",
|
|
3030
|
+
"SetHasRobloxSubscription",
|
|
3031
|
+
"SetHttpEnabled",
|
|
3032
|
+
"SetIdentityOrientation",
|
|
3033
|
+
"SetImage",
|
|
3034
|
+
"SetImageServerView",
|
|
3035
|
+
"SetImportHeightmapPaused",
|
|
3036
|
+
"SetInputDevice",
|
|
3037
|
+
"SetInputTypesToIgnore",
|
|
3038
|
+
"SetInsertPoint",
|
|
3039
|
+
"SetInspectMenuEnabled",
|
|
3040
|
+
"SetIsEmulationEnabled",
|
|
3041
|
+
"SetIsExemptFromUGCAnalytics",
|
|
3042
|
+
"SetIsLoaded",
|
|
3043
|
+
"SetItem",
|
|
3044
|
+
"SetJoinAfterMoveInstance",
|
|
3045
|
+
"SetJoinAfterMoveTarget",
|
|
3046
|
+
"SetJoint",
|
|
3047
|
+
"SetJointRangeMax",
|
|
3048
|
+
"SetJointRangeMin",
|
|
3049
|
+
"SetJointSize",
|
|
3050
|
+
"SetKeyDown",
|
|
3051
|
+
"SetKeyUp",
|
|
3052
|
+
"SetKeys",
|
|
3053
|
+
"SetLegacyMaxItems",
|
|
3054
|
+
"SetLine",
|
|
3055
|
+
"SetListener",
|
|
3056
|
+
"SetLocal",
|
|
3057
|
+
"SetLocalPlayerInfo",
|
|
3058
|
+
"SetMaterialColor",
|
|
3059
|
+
"SetMaterialInTransform",
|
|
3060
|
+
"SetMaterialInTransformSubregion",
|
|
3061
|
+
"SetMaterialInTransformSubregionSlot",
|
|
3062
|
+
"SetMaterialSlot",
|
|
3063
|
+
"SetMembershipType",
|
|
3064
|
+
"SetMenuIsOpen",
|
|
3065
|
+
"SetMergeResolution",
|
|
3066
|
+
"SetMeshIdBlocking",
|
|
3067
|
+
"SetMeshPartHeadsAndAccessories",
|
|
3068
|
+
"SetMetadata",
|
|
3069
|
+
"SetMicDevice",
|
|
3070
|
+
"SetMinSize",
|
|
3071
|
+
"SetMinutesAfterMidnight",
|
|
3072
|
+
"SetModerationAccessKey",
|
|
3073
|
+
"SetMotor",
|
|
3074
|
+
"SetNavigationGamepad",
|
|
3075
|
+
"SetNetworkOwner",
|
|
3076
|
+
"SetNetworkOwnershipAuto",
|
|
3077
|
+
"SetNormal",
|
|
3078
|
+
"SetOnNextClicked",
|
|
3079
|
+
"SetOnboardingCompleted",
|
|
3080
|
+
"SetOrderedInputPinNames",
|
|
3081
|
+
"SetOrientationAsync",
|
|
3082
|
+
"SetOutgoingKBPSLimit",
|
|
3083
|
+
"SetOutputDevice",
|
|
3084
|
+
"SetPackageVersion",
|
|
3085
|
+
"SetParameter",
|
|
3086
|
+
"SetPartCollisionGroup",
|
|
3087
|
+
"SetPermissionPolicyFunction",
|
|
3088
|
+
"SetPermissions",
|
|
3089
|
+
"SetPhysicsThrottleEnabled",
|
|
3090
|
+
"SetPixelDensityAsync",
|
|
3091
|
+
"SetPlaceId",
|
|
3092
|
+
"SetPlaybackFrame",
|
|
3093
|
+
"SetPlaybackMode",
|
|
3094
|
+
"SetPlaybackPercentage",
|
|
3095
|
+
"SetPlayerIsUsing",
|
|
3096
|
+
"SetPlayerPartyId",
|
|
3097
|
+
"SetPluginEnabled",
|
|
3098
|
+
"SetPosition",
|
|
3099
|
+
"SetPostProcessEnabled",
|
|
3100
|
+
"SetPredictionMode",
|
|
3101
|
+
"SetPrimaryPart",
|
|
3102
|
+
"SetPrimaryPartCFrame",
|
|
3103
|
+
"SetProperties",
|
|
3104
|
+
"SetProperty",
|
|
3105
|
+
"SetPropertyTransition",
|
|
3106
|
+
"SetPropertyTransitions",
|
|
3107
|
+
"SetPurchasePromptIsShown",
|
|
3108
|
+
"SetRBXEvent",
|
|
3109
|
+
"SetRBXEventStream",
|
|
3110
|
+
"SetRateLimitForRequestType",
|
|
3111
|
+
"SetReady",
|
|
3112
|
+
"SetRecordingDevice",
|
|
3113
|
+
"SetRemoveOnHit",
|
|
3114
|
+
"SetReplicationLag",
|
|
3115
|
+
"SetRequestHandler",
|
|
3116
|
+
"SetResolutionAsync",
|
|
3117
|
+
"SetResolutionScale",
|
|
3118
|
+
"SetResponseDelay",
|
|
3119
|
+
"SetRobloxGuiFocused",
|
|
3120
|
+
"SetRobloxLocaleId",
|
|
3121
|
+
"SetRoll",
|
|
3122
|
+
"SetSafeZoneOffsets",
|
|
3123
|
+
"SetScalingModeAsync",
|
|
3124
|
+
"SetScriptLineMarker",
|
|
3125
|
+
"SetSdk",
|
|
3126
|
+
"SetSecondaryAxis",
|
|
3127
|
+
"SetServerAttribute",
|
|
3128
|
+
"SetServiceVisibilityPreference",
|
|
3129
|
+
"SetSession",
|
|
3130
|
+
"SetSetting",
|
|
3131
|
+
"SetSharedTable",
|
|
3132
|
+
"SetSoundEnabled",
|
|
3133
|
+
"SetStateEnabled",
|
|
3134
|
+
"SetStateFieldValue",
|
|
3135
|
+
"SetStudioPreview",
|
|
3136
|
+
"SetStyleRules",
|
|
3137
|
+
"SetSuperSafeChat",
|
|
3138
|
+
"SetTargetInstance",
|
|
3139
|
+
"SetTeamCreateOnPublishInfo",
|
|
3140
|
+
"SetTeleportData",
|
|
3141
|
+
"SetTeleportGui",
|
|
3142
|
+
"SetTeleportSetting",
|
|
3143
|
+
"SetTerrainSelectionHack",
|
|
3144
|
+
"SetTestControl",
|
|
3145
|
+
"SetTestingValue",
|
|
3146
|
+
"SetTextFromInput",
|
|
3147
|
+
"SetTextureOffset",
|
|
3148
|
+
"SetTimeout",
|
|
3149
|
+
"SetTintMode",
|
|
3150
|
+
"SetTitle",
|
|
3151
|
+
"SetTitleBarMode",
|
|
3152
|
+
"SetTokens",
|
|
3153
|
+
"SetTopbarInset",
|
|
3154
|
+
"SetTopbarTransparency",
|
|
3155
|
+
"SetTouchpadMode",
|
|
3156
|
+
"SetTposeAdjustment",
|
|
3157
|
+
"SetTutorialCompletionStatus",
|
|
3158
|
+
"SetTutorialState",
|
|
3159
|
+
"SetUIScaleMultiplier",
|
|
3160
|
+
"SetUV",
|
|
3161
|
+
"SetUiMessage",
|
|
3162
|
+
"SetUnder13",
|
|
3163
|
+
"SetUniverseDisplayName",
|
|
3164
|
+
"SetUniverseId",
|
|
3165
|
+
"SetUploadNames",
|
|
3166
|
+
"SetUpvalue",
|
|
3167
|
+
"SetUriScript",
|
|
3168
|
+
"SetUserDataAsync",
|
|
3169
|
+
"SetUserGuiRendering",
|
|
3170
|
+
"SetUserIdAccessList",
|
|
3171
|
+
"SetValue",
|
|
3172
|
+
"SetVariable",
|
|
3173
|
+
"SetVertexBoneWeights",
|
|
3174
|
+
"SetVertexBones",
|
|
3175
|
+
"SetVertexFaceColor",
|
|
3176
|
+
"SetVertexFaceNormal",
|
|
3177
|
+
"SetVertexFaceUV",
|
|
3178
|
+
"SetWatchExpressions",
|
|
3179
|
+
"SetWaterCell",
|
|
3180
|
+
"SetWaveformKeys",
|
|
3181
|
+
"SetWaypoint",
|
|
3182
|
+
"Shapecast",
|
|
3183
|
+
"ShouldLaunchTutorial",
|
|
3184
|
+
"ShouldRenderTitleBarControlsNatively",
|
|
3185
|
+
"ShouldShowLuaNotificationOnPinExperienceCompleted",
|
|
3186
|
+
"ShowAccountPicker",
|
|
3187
|
+
"ShowAsync",
|
|
3188
|
+
"ShowBulkImportView",
|
|
3189
|
+
"ShowDebugVisualizer",
|
|
3190
|
+
"ShowDiffsAgainstBase",
|
|
3191
|
+
"ShowDiffsAgainstServer",
|
|
3192
|
+
"ShowInviteFriendsUI",
|
|
3193
|
+
"ShowNotification",
|
|
3194
|
+
"ShowPackageDetails",
|
|
3195
|
+
"ShowPermissibleJoints",
|
|
3196
|
+
"ShowProfile",
|
|
3197
|
+
"ShowPublishToRoblox",
|
|
3198
|
+
"ShowRewardedVideoAdAsync",
|
|
3199
|
+
"ShowRewardedVideoAdAtClientAsync",
|
|
3200
|
+
"ShowSaveOrPublishPlaceToRoblox",
|
|
3201
|
+
"ShowSaveToRoblox",
|
|
3202
|
+
"ShowSelfView",
|
|
3203
|
+
"ShowSourceDiffsAgainstCurrent",
|
|
3204
|
+
"ShowStatsBasedOnInputString",
|
|
3205
|
+
"ShowVideoAd",
|
|
3206
|
+
"ShowVolumes",
|
|
3207
|
+
"ShowWidgets",
|
|
3208
|
+
"Shuffle",
|
|
3209
|
+
"Shutdown",
|
|
3210
|
+
"Sign",
|
|
3211
|
+
"SignalAssetTypePurchased",
|
|
3212
|
+
"SignalChallengeAbandoned",
|
|
3213
|
+
"SignalChallengeCompleted",
|
|
3214
|
+
"SignalChallengeInvalidated",
|
|
3215
|
+
"SignalChallengeLoaded",
|
|
3216
|
+
"SignalChallengeRequired",
|
|
3217
|
+
"SignalCheckPlayerHasRobloxSubscription",
|
|
3218
|
+
"SignalClientPurchaseSuccess",
|
|
3219
|
+
"SignalCreateOutfitFailed",
|
|
3220
|
+
"SignalCreateOutfitPermissionDenied",
|
|
3221
|
+
"SignalDeleteOutfitFailed",
|
|
3222
|
+
"SignalDeleteOutfitPermissionDenied",
|
|
3223
|
+
"SignalDialogChoiceSelected",
|
|
3224
|
+
"SignalFeedbackSubmissionCompleted",
|
|
3225
|
+
"SignalFeedbackSubmissionPermissionDenied",
|
|
3226
|
+
"SignalFired",
|
|
3227
|
+
"SignalMockPurchasePremium",
|
|
3228
|
+
"SignalMockPurchaseRobloxSubscription",
|
|
3229
|
+
"SignalProfilingCapture",
|
|
3230
|
+
"SignalProfilingStart",
|
|
3231
|
+
"SignalProfilingStop",
|
|
3232
|
+
"SignalPromptBulkPurchaseFinished",
|
|
3233
|
+
"SignalPromptBundlePurchaseFinished",
|
|
3234
|
+
"SignalPromptCommerceProductPurchaseFinished",
|
|
3235
|
+
"SignalPromptGamePassPurchaseFinished",
|
|
3236
|
+
"SignalPromptPremiumPurchaseFinished",
|
|
3237
|
+
"SignalPromptProductPurchaseFinished",
|
|
3238
|
+
"SignalPromptPurchaseFinished",
|
|
3239
|
+
"SignalPromptRobloxSubscriptionPurchaseFinished",
|
|
3240
|
+
"SignalPromptSubscriptionPurchaseFinished",
|
|
3241
|
+
"SignalRenameOutfitFailed",
|
|
3242
|
+
"SignalRenameOutfitPermissionDenied",
|
|
3243
|
+
"SignalRobuxTransferCompleted",
|
|
3244
|
+
"SignalSaveAvatarFailed",
|
|
3245
|
+
"SignalSaveAvatarPermissionDenied",
|
|
3246
|
+
"SignalServerLuaDialogClosed",
|
|
3247
|
+
"SignalSetFavoriteFailed",
|
|
3248
|
+
"SignalSetFavoritePermissionDenied",
|
|
3249
|
+
"SignalUpdateOutfitFailed",
|
|
3250
|
+
"SignalUpdateOutfitPermissionDenied",
|
|
3251
|
+
"SignalUserSubscriptionStatusChanged",
|
|
3252
|
+
"Simulate",
|
|
3253
|
+
"Sit",
|
|
3254
|
+
"SmoothDamp",
|
|
3255
|
+
"SmoothRegion",
|
|
3256
|
+
"SmoothRegionMaterialSlots",
|
|
3257
|
+
"Solve",
|
|
3258
|
+
"Spherecast",
|
|
3259
|
+
"Start",
|
|
3260
|
+
"StartCrossExperience",
|
|
3261
|
+
"StartDecalDrag",
|
|
3262
|
+
"StartDrag",
|
|
3263
|
+
"StartInputRecording",
|
|
3264
|
+
"StartLuaUrlDelivery",
|
|
3265
|
+
"StartMergeAsync",
|
|
3266
|
+
"StartPlaySolo",
|
|
3267
|
+
"StartPlaying",
|
|
3268
|
+
"StartPlayingJSON",
|
|
3269
|
+
"StartPrediction",
|
|
3270
|
+
"StartRecording",
|
|
3271
|
+
"StartSessionWithPath",
|
|
3272
|
+
"StartSessionWithPathAsync",
|
|
3273
|
+
"StartSingleFileWatch",
|
|
3274
|
+
"StartSpan",
|
|
3275
|
+
"StartTask",
|
|
3276
|
+
"StartTestSession",
|
|
3277
|
+
"StartTextScraper",
|
|
3278
|
+
"StartUploadCaptureAsync",
|
|
3279
|
+
"StartUploadCaptureForSupportTicketAsync",
|
|
3280
|
+
"StartVideoCaptureAsync",
|
|
3281
|
+
"StartVideoCaptureInternalAsync",
|
|
3282
|
+
"StartVideoGenSessionAsync",
|
|
3283
|
+
"StartWatchingScriptLine",
|
|
3284
|
+
"Step",
|
|
3285
|
+
"StepAnimations",
|
|
3286
|
+
"StepAnimationsInternal",
|
|
3287
|
+
"StepIn",
|
|
3288
|
+
"StepOut",
|
|
3289
|
+
"StepOver",
|
|
3290
|
+
"StepPhysics",
|
|
3291
|
+
"Stop",
|
|
3292
|
+
"StopAllSounds",
|
|
3293
|
+
"StopCrossExperience",
|
|
3294
|
+
"StopInputRecording",
|
|
3295
|
+
"StopLuaUrlDelivery",
|
|
3296
|
+
"StopPlaySolo",
|
|
3297
|
+
"StopPlaying",
|
|
3298
|
+
"StopPrediction",
|
|
3299
|
+
"StopRecording",
|
|
3300
|
+
"StopSimulationAsync",
|
|
3301
|
+
"StopSingleFileWatch",
|
|
3302
|
+
"StopTestSession",
|
|
3303
|
+
"StopTextScraper",
|
|
3304
|
+
"StopVideoCapture",
|
|
3305
|
+
"StopVideoCaptureAsync",
|
|
3306
|
+
"StopVideoCaptureInternal",
|
|
3307
|
+
"StripComments",
|
|
3308
|
+
"SubmitAdNotification",
|
|
3309
|
+
"SubmitStratusBugReport",
|
|
3310
|
+
"Subscribe",
|
|
3311
|
+
"SubscribeAsync",
|
|
3312
|
+
"SubscribeBlock",
|
|
3313
|
+
"SubscribePause",
|
|
3314
|
+
"SubscribePauseAll",
|
|
3315
|
+
"SubscribeRetry",
|
|
3316
|
+
"SubscribeToProtocolMethodRequest",
|
|
3317
|
+
"SubscribeToProtocolMethodResponse",
|
|
3318
|
+
"SubscribeToRccEventNamespace",
|
|
3319
|
+
"SubscribeUnblock",
|
|
3320
|
+
"SubstituteGeometry",
|
|
3321
|
+
"SubtractAsync",
|
|
3322
|
+
"SupportsSwitchToSettingsApp",
|
|
3323
|
+
"SweepPartAsync",
|
|
3324
|
+
"SwitchToSettingsApp",
|
|
3325
|
+
"SwitchedToAppShellFeature",
|
|
3326
|
+
"SynchronizeWith",
|
|
3327
|
+
"TagEmoteAnimation",
|
|
3328
|
+
"TakeDamage",
|
|
3329
|
+
"TakeScreenshot",
|
|
3330
|
+
"TakeScreenshotCaptureAsync",
|
|
3331
|
+
"TakeSnapshot",
|
|
3332
|
+
"TeamChat",
|
|
3333
|
+
"Teleport",
|
|
3334
|
+
"TeleportAsync",
|
|
3335
|
+
"TeleportCancel",
|
|
3336
|
+
"TeleportPartyAsync",
|
|
3337
|
+
"TeleportReconnect",
|
|
3338
|
+
"TeleportToPlaceInstance",
|
|
3339
|
+
"TeleportToPrivateServer",
|
|
3340
|
+
"TeleportToSpawnByName",
|
|
3341
|
+
"TeleportTrustedBackForth",
|
|
3342
|
+
"TeleportTrustedBackHistory",
|
|
3343
|
+
"TeleportedPlacesBackHistory",
|
|
3344
|
+
"TeleportedUniversesBackHistory",
|
|
3345
|
+
"TiltUnits",
|
|
3346
|
+
"ToAxisAngle",
|
|
3347
|
+
"ToEulerAnglesXYZ",
|
|
3348
|
+
"ToEulerAnglesYXZ",
|
|
3349
|
+
"ToHSV",
|
|
3350
|
+
"ToHex",
|
|
3351
|
+
"ToIsoDate",
|
|
3352
|
+
"ToLocalTime",
|
|
3353
|
+
"ToObjectSpace",
|
|
3354
|
+
"ToOrientation",
|
|
3355
|
+
"ToUniversalTime",
|
|
3356
|
+
"ToWorldSpace",
|
|
3357
|
+
"ToggleCaptureMode",
|
|
3358
|
+
"ToggleFullscreen",
|
|
3359
|
+
"ToggleGuiIsVisibleForCaptures",
|
|
3360
|
+
"ToggleGuiIsVisibleIfAllowed",
|
|
3361
|
+
"ToggleMaterialFillToolEnabled",
|
|
3362
|
+
"TogglePause",
|
|
3363
|
+
"ToggleRecording",
|
|
3364
|
+
"ToggleSelect",
|
|
3365
|
+
"ToggleSelectionHighlights",
|
|
3366
|
+
"ToggleTeamCreate",
|
|
3367
|
+
"TorqueToAngularAcceleration",
|
|
3368
|
+
"TrackEvent",
|
|
3369
|
+
"TrackEventWithArgs",
|
|
3370
|
+
"TranscodeMesh",
|
|
3371
|
+
"TranscodeModel",
|
|
3372
|
+
"TranscodePropertySet",
|
|
3373
|
+
"Translate",
|
|
3374
|
+
"TranslateBy",
|
|
3375
|
+
"Triangulate",
|
|
3376
|
+
"TriggerOnLandingPageMount",
|
|
3377
|
+
"TriggerOnLuaAppInteractive",
|
|
3378
|
+
"TriggerOnLuaAppReadyToRender",
|
|
3379
|
+
"TriggerOnPageMilestone",
|
|
3380
|
+
"TryBeginRecording",
|
|
3381
|
+
"TryInstallPlugin",
|
|
3382
|
+
"TweenPosition",
|
|
3383
|
+
"TweenPositionInternal",
|
|
3384
|
+
"TweenSize",
|
|
3385
|
+
"TweenSizeAndPosition",
|
|
3386
|
+
"TweenSizeAndPositionInternal",
|
|
3387
|
+
"TweenSizeInternal",
|
|
3388
|
+
"TypeKey",
|
|
3389
|
+
"UnbanAsync",
|
|
3390
|
+
"UnbindAction",
|
|
3391
|
+
"UnbindActivate",
|
|
3392
|
+
"UnbindAllActions",
|
|
3393
|
+
"UnbindButton",
|
|
3394
|
+
"UnbindCoreAction",
|
|
3395
|
+
"UnbindCoreActivate",
|
|
3396
|
+
"UnbindFromRenderStep",
|
|
3397
|
+
"UnblockAsync",
|
|
3398
|
+
"UnclampAsync",
|
|
3399
|
+
"Undo",
|
|
3400
|
+
"UnequipTools",
|
|
3401
|
+
"UninstallPlugin",
|
|
3402
|
+
"Union",
|
|
3403
|
+
"UnionAsync",
|
|
3404
|
+
"Unit",
|
|
3405
|
+
"UnjoinFromOutsiders",
|
|
3406
|
+
"Unload",
|
|
3407
|
+
"UnloadTracks",
|
|
3408
|
+
"UnpinStreamingForInstance",
|
|
3409
|
+
"UnregisterAdOpportunity",
|
|
3410
|
+
"UnregisterCollisionGroup",
|
|
3411
|
+
"UnregisterDefaultEncryptionKey",
|
|
3412
|
+
"UnregisterEncryptedAsset",
|
|
3413
|
+
"UpdateAllPackages",
|
|
3414
|
+
"UpdateAsync",
|
|
3415
|
+
"UpdateBranchAsync",
|
|
3416
|
+
"UpdateControlPoint",
|
|
3417
|
+
"UpdateDeviceAsync",
|
|
3418
|
+
"UpdateDeviceCFrame",
|
|
3419
|
+
"UpdateFields",
|
|
3420
|
+
"UpdateGraphNodeProperty",
|
|
3421
|
+
"UpdateHeartbeatObject",
|
|
3422
|
+
"UpdateItemAsync",
|
|
3423
|
+
"UpdatePlayerBlocked",
|
|
3424
|
+
"UpdatePlayerPartyData",
|
|
3425
|
+
"UpdatePluginManagement",
|
|
3426
|
+
"UpdateProperties",
|
|
3427
|
+
"UpdatePublishedPackage",
|
|
3428
|
+
"UpdateSelectedFrame",
|
|
3429
|
+
"UpdateSourceAsync",
|
|
3430
|
+
"UpdateToLatestVersion",
|
|
3431
|
+
"UpdateUnitTestOnly",
|
|
3432
|
+
"UpdateVideoGenSessionPromptAsync",
|
|
3433
|
+
"UpdateVideoGenSessionTriggersAsync",
|
|
3434
|
+
"UpgradeTempAssetId",
|
|
3435
|
+
"Upload",
|
|
3436
|
+
"UploadAssetFromContentAsync",
|
|
3437
|
+
"UploadAssetFromPathAsync",
|
|
3438
|
+
"UploadCaptureAndPostMoment",
|
|
3439
|
+
"UploadCaptureAsync",
|
|
3440
|
+
"UploadPostAsync",
|
|
3441
|
+
"UploadVersionedAssetFromContentAsync",
|
|
3442
|
+
"UploadVersionedAssetFromPathAsync",
|
|
3443
|
+
"UrlEncode",
|
|
3444
|
+
"UserEligibleForRealWorldCommerceAsync",
|
|
3445
|
+
"UserHasBadge",
|
|
3446
|
+
"UserHasBadgeAsync",
|
|
3447
|
+
"UserOwnsGamePassAsync",
|
|
3448
|
+
"ValidateDynamicHeadEditableMesh",
|
|
3449
|
+
"ValidateEditableMeshCageMeshIntersection",
|
|
3450
|
+
"ValidateEditableMeshCageNonManifoldAndHoles",
|
|
3451
|
+
"ValidateEditableMeshCageUVCoincident",
|
|
3452
|
+
"ValidateEditableMeshCageUVTriangleArea",
|
|
3453
|
+
"ValidateEditableMeshFacialBounds",
|
|
3454
|
+
"ValidateEditableMeshFacialExpressiveness",
|
|
3455
|
+
"ValidateEditableMeshFullBodyCageDeletion",
|
|
3456
|
+
"ValidateEditableMeshMisMatchUV",
|
|
3457
|
+
"ValidateEditableMeshOverlappingVertices",
|
|
3458
|
+
"ValidateEditableMeshTriangleArea",
|
|
3459
|
+
"ValidateEditableMeshTriangles",
|
|
3460
|
+
"ValidateEditableMeshUVDuplicates",
|
|
3461
|
+
"ValidateEditableMeshUVSpace",
|
|
3462
|
+
"ValidateEditableMeshUVValuesInReference",
|
|
3463
|
+
"ValidateEditableMeshUniqueUVCount",
|
|
3464
|
+
"ValidateEditableMeshVertColors",
|
|
3465
|
+
"ValidateHSRMeshIds",
|
|
3466
|
+
"ValidateLeaderSkinnedVertsNearCageIslands",
|
|
3467
|
+
"ValidatePartBBoxAfterFullFacs",
|
|
3468
|
+
"ValidatePropertiesSensible",
|
|
3469
|
+
"ValidateSkinnedEditableMesh",
|
|
3470
|
+
"ValidateUGCAccessoryAsync",
|
|
3471
|
+
"ValidateUGCBodyPartAsync",
|
|
3472
|
+
"ValidateUGCFullBodyAsync",
|
|
3473
|
+
"VectorToObjectSpace",
|
|
3474
|
+
"VectorToWorldSpace",
|
|
3475
|
+
"ViewPackageOnWebsite",
|
|
3476
|
+
"ViewportPointToRay",
|
|
3477
|
+
"Wait",
|
|
3478
|
+
"WaitForChild",
|
|
3479
|
+
"WaitForDataReady",
|
|
3480
|
+
"WaitForGenerationAsync",
|
|
3481
|
+
"WaitForInputEventsProcessed",
|
|
3482
|
+
"Warn",
|
|
3483
|
+
"WhenLoaded",
|
|
3484
|
+
"WhisperChat",
|
|
3485
|
+
"WorldToCell",
|
|
3486
|
+
"WorldToCellPreferEmpty",
|
|
3487
|
+
"WorldToCellPreferSolid",
|
|
3488
|
+
"WorldToScreenPoint",
|
|
3489
|
+
"WorldToViewportPoint",
|
|
3490
|
+
"WriteAppend",
|
|
3491
|
+
"WritePixelsBuffer",
|
|
3492
|
+
"WriteVoxelChannels",
|
|
3493
|
+
"WriteVoxels",
|
|
3494
|
+
"WriteVoxelsAsync_beta",
|
|
3495
|
+
"X",
|
|
3496
|
+
"Y",
|
|
3497
|
+
"Z",
|
|
3498
|
+
"Zoom",
|
|
3499
|
+
"ZoomToExtents",
|
|
3500
|
+
"addItem",
|
|
3501
|
+
"applyPartyIdToPlayer",
|
|
3502
|
+
"bindButton",
|
|
3503
|
+
"breakJoints",
|
|
3504
|
+
"children",
|
|
3505
|
+
"clone",
|
|
3506
|
+
"destroy",
|
|
3507
|
+
"deviceMeetsRequirementsForFeature",
|
|
3508
|
+
"findFirstChild",
|
|
3509
|
+
"findPartOnRay",
|
|
3510
|
+
"findPartsInRegion3",
|
|
3511
|
+
"fire",
|
|
3512
|
+
"forwardStateToLuaUI",
|
|
3513
|
+
"generateTempUrlInContentProvider",
|
|
3514
|
+
"getBehaviorObjects",
|
|
3515
|
+
"getBehaviors",
|
|
3516
|
+
"getBehaviorsForInstance",
|
|
3517
|
+
"getButton",
|
|
3518
|
+
"getChildren",
|
|
3519
|
+
"getDaysSinceFirstUserLogin",
|
|
3520
|
+
"getExtrapolation",
|
|
3521
|
+
"getGameTime",
|
|
3522
|
+
"getInstancesForBehavior",
|
|
3523
|
+
"getInternalChannelId",
|
|
3524
|
+
"getInternalGroupId",
|
|
3525
|
+
"getInternalPublishPause",
|
|
3526
|
+
"getInternalSessionId",
|
|
3527
|
+
"getInternalSubscribePause",
|
|
3528
|
+
"getInternalSubscribePauseAll",
|
|
3529
|
+
"getInternalVoiceChatApiVersion",
|
|
3530
|
+
"getLocalGamesFromRegistry",
|
|
3531
|
+
"getMass",
|
|
3532
|
+
"getMinutesAfterMidnight",
|
|
3533
|
+
"getOverrides",
|
|
3534
|
+
"getPlayers",
|
|
3535
|
+
"getRecentAPIGamesFromRegistry",
|
|
3536
|
+
"getService",
|
|
3537
|
+
"getSystemTheme",
|
|
3538
|
+
"getSystemThemeAsync",
|
|
3539
|
+
"getTempUrlInContentProvider",
|
|
3540
|
+
"getTestSessionProviderStats",
|
|
3541
|
+
"getThrottleFramerateEnabled",
|
|
3542
|
+
"getVideoLod",
|
|
3543
|
+
"isA",
|
|
3544
|
+
"isAppRatingPromptAvailable",
|
|
3545
|
+
"isAudioEnabled",
|
|
3546
|
+
"isDescendantOf",
|
|
3547
|
+
"isFeatureEnabled",
|
|
3548
|
+
"isFriendsWith",
|
|
3549
|
+
"isInternalPublishPaused",
|
|
3550
|
+
"isSystemThemeAvailable",
|
|
3551
|
+
"isTutorialBannerClosed",
|
|
3552
|
+
"isTutorialPopupClosed",
|
|
3553
|
+
"isVideoEnabled",
|
|
3554
|
+
"joinVoice",
|
|
3555
|
+
"lastForce",
|
|
3556
|
+
"lastVoiceChatStats",
|
|
3557
|
+
"leaveVoice",
|
|
3558
|
+
"loadAnimation",
|
|
3559
|
+
"loadAsset",
|
|
3560
|
+
"loadBoolean",
|
|
3561
|
+
"loadInstance",
|
|
3562
|
+
"loadNumber",
|
|
3563
|
+
"loadString",
|
|
3564
|
+
"makeJoints",
|
|
3565
|
+
"move",
|
|
3566
|
+
"moveTo",
|
|
3567
|
+
"notifyServerACSCleanup",
|
|
3568
|
+
"openLink",
|
|
3569
|
+
"openLocalFile",
|
|
3570
|
+
"openPlace",
|
|
3571
|
+
"pause",
|
|
3572
|
+
"play",
|
|
3573
|
+
"playerFromCharacter",
|
|
3574
|
+
"players",
|
|
3575
|
+
"refreshAvatarThumbnails",
|
|
3576
|
+
"rejoinVoice",
|
|
3577
|
+
"remove",
|
|
3578
|
+
"removeAPIGameFromRegistry",
|
|
3579
|
+
"removeLocalFileFromRegistry",
|
|
3580
|
+
"resize",
|
|
3581
|
+
"saveBoolean",
|
|
3582
|
+
"saveInstance",
|
|
3583
|
+
"saveNumber",
|
|
3584
|
+
"saveString",
|
|
3585
|
+
"sendRobloxEvent",
|
|
3586
|
+
"sendThemeChangeEvent",
|
|
3587
|
+
"service",
|
|
3588
|
+
"setClassicThemeActive",
|
|
3589
|
+
"setMinutesAfterMidnight",
|
|
3590
|
+
"setModerationModeEnabled",
|
|
3591
|
+
"setTheme",
|
|
3592
|
+
"setThrottleFramerateEnabled",
|
|
3593
|
+
"setTutorialBannerClosed",
|
|
3594
|
+
"setTutorialPopupClosed",
|
|
3595
|
+
"shouldShowMacOSDeprecationWarning",
|
|
3596
|
+
"shouldShowWinOSDeprecationWarning",
|
|
3597
|
+
"showAppRatingPrompt",
|
|
3598
|
+
"startTutorial",
|
|
3599
|
+
"stop",
|
|
3600
|
+
"takeDamage",
|
|
3601
|
+
"usesCustomRestPoseLua",
|
|
3602
|
+
"waitForDataReady",
|
|
3603
|
+
"willRemoveAccessory"
|
|
3604
|
+
],
|
|
3605
|
+
DATATYPES: [
|
|
3606
|
+
"AdReward",
|
|
3607
|
+
"AnimTrackMetadata",
|
|
3608
|
+
"AnimTrackPlayState",
|
|
3609
|
+
"AnimTrackWeight",
|
|
3610
|
+
"AssetContentMap",
|
|
3611
|
+
"Axes",
|
|
3612
|
+
"BinaryString",
|
|
3613
|
+
"BrickColor",
|
|
3614
|
+
"CFrame",
|
|
3615
|
+
"CSGPropertyData",
|
|
3616
|
+
"CatalogSearchParams",
|
|
3617
|
+
"ClipEvaluator",
|
|
3618
|
+
"CollectionHandle",
|
|
3619
|
+
"Color3",
|
|
3620
|
+
"Color3uint8",
|
|
3621
|
+
"ColorSequence",
|
|
3622
|
+
"ColorSequenceKeypoint",
|
|
3623
|
+
"Content",
|
|
3624
|
+
"ContentId",
|
|
3625
|
+
"CoordinateFrame",
|
|
3626
|
+
"DateTime",
|
|
3627
|
+
"DockWidgetPluginGuiInfo",
|
|
3628
|
+
"Faces",
|
|
3629
|
+
"FacsReplicationData",
|
|
3630
|
+
"FloatCurveKey",
|
|
3631
|
+
"Font",
|
|
3632
|
+
"InstanceRef",
|
|
3633
|
+
"NetAssetRef",
|
|
3634
|
+
"NumberRange",
|
|
3635
|
+
"NumberSequence",
|
|
3636
|
+
"NumberSequenceKeypoint",
|
|
3637
|
+
"OpenCloudModel",
|
|
3638
|
+
"OptionalCoordinateFrame",
|
|
3639
|
+
"OverlapParams",
|
|
3640
|
+
"Path2DControlPoint",
|
|
3641
|
+
"PathWaypoint",
|
|
3642
|
+
"PhysicalProperties",
|
|
3643
|
+
"ProtectedString",
|
|
3644
|
+
"QDir",
|
|
3645
|
+
"QFont",
|
|
3646
|
+
"RBXScriptConnection",
|
|
3647
|
+
"RBXScriptSignal",
|
|
3648
|
+
"Random",
|
|
3649
|
+
"Ray",
|
|
3650
|
+
"RaycastParams",
|
|
3651
|
+
"RaycastResult",
|
|
3652
|
+
"Rect",
|
|
3653
|
+
"Region3",
|
|
3654
|
+
"Region3int16",
|
|
3655
|
+
"ReplicationPV",
|
|
3656
|
+
"RotationCurveKey",
|
|
3657
|
+
"ScopedInstanceIdentity",
|
|
3658
|
+
"Secret",
|
|
3659
|
+
"SecurityCapabilities",
|
|
3660
|
+
"SharedString",
|
|
3661
|
+
"SharedTable",
|
|
3662
|
+
"SystemAddress",
|
|
3663
|
+
"TweenInfo",
|
|
3664
|
+
"UDim",
|
|
3665
|
+
"UDim2",
|
|
3666
|
+
"UniqueId",
|
|
3667
|
+
"ValueCurveKey",
|
|
3668
|
+
"Vector2",
|
|
3669
|
+
"Vector2int16",
|
|
3670
|
+
"Vector3",
|
|
3671
|
+
"Vector3int16",
|
|
3672
|
+
"WebViewParams",
|
|
3673
|
+
"buffer"
|
|
3674
|
+
],
|
|
3675
|
+
};
|