Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4b7b5eb163 | ||
|
|
882aa45e96 |
@@ -8,28 +8,6 @@ const iconDataPath = path.join(__dirname, "../", "docs/theme/.icons", "polytoria
|
|||||||
const yamlEnumPath = path.join(__dirname, "../", "yaml", "enums")
|
const yamlEnumPath = path.join(__dirname, "../", "yaml", "enums")
|
||||||
const mdEnumPath = path.join(__dirname, "../", "docs/api", "enums")
|
const mdEnumPath = path.join(__dirname, "../", "docs/api", "enums")
|
||||||
|
|
||||||
// Cleanup md (excluding index.md files)
|
|
||||||
if (fs.existsSync(mdAPIPath)) {
|
|
||||||
const files = fs.readdirSync(mdAPIPath)
|
|
||||||
for (const file of files) {
|
|
||||||
if (file !== 'index.md') {
|
|
||||||
const filePath = path.join(mdAPIPath, file)
|
|
||||||
fs.rmSync(filePath, { recursive: true, force: true })
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (fs.existsSync(mdEnumPath)) {
|
|
||||||
const files = fs.readdirSync(mdEnumPath)
|
|
||||||
for (const file of files) {
|
|
||||||
if (file !== 'index.md') {
|
|
||||||
const filePath = path.join(mdEnumPath, file)
|
|
||||||
fs.rmSync(filePath, { recursive: true, force: true })
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Create directories
|
|
||||||
if (!fs.existsSync(mdAPIPath)) {
|
if (!fs.existsSync(mdAPIPath)) {
|
||||||
fs.mkdirSync(mdAPIPath, { recursive: true })
|
fs.mkdirSync(mdAPIPath, { recursive: true })
|
||||||
}
|
}
|
||||||
@@ -90,8 +68,7 @@ for (const yamlFile of yamlFiles) {
|
|||||||
appendLine("")
|
appendLine("")
|
||||||
|
|
||||||
if (c.IsStatic) {
|
if (c.IsStatic) {
|
||||||
appendLine("")
|
appendLine(`{{ staticclass(${c.Name.replace("Service", "")}) }}`)
|
||||||
appendLine(`{{ staticclass(${c.StaticAlias ? `"${c.StaticAlias}"` : ""}) }}`)
|
|
||||||
appendLine("")
|
appendLine("")
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -167,7 +144,7 @@ for (const yamlFile of yamlFiles) {
|
|||||||
fs.writeFileSync(mdPath, mk)
|
fs.writeFileSync(mdPath, mk)
|
||||||
}
|
}
|
||||||
|
|
||||||
console.log(`Converted ${yamlFiles.length} YAML files to Markdown`)
|
console.log(`Converted ${yamlFiles.length} XML files to Markdown`)
|
||||||
|
|
||||||
// Process Enums
|
// Process Enums
|
||||||
const yamlEnumFiles = fs.readdirSync(yamlEnumPath).filter(file => file.endsWith('.yaml'));
|
const yamlEnumFiles = fs.readdirSync(yamlEnumPath).filter(file => file.endsWith('.yaml'));
|
||||||
@@ -213,4 +190,4 @@ for (const yamlFile of yamlEnumFiles) {
|
|||||||
fs.writeFileSync(mdPath, mk)
|
fs.writeFileSync(mdPath, mk)
|
||||||
}
|
}
|
||||||
|
|
||||||
console.log(`Converted ${yamlEnumFiles.length} enum YAML files to Markdown`)
|
console.log(`Converted ${yamlEnumFiles.length} enum XML files to Markdown`)
|
||||||
58
autogen/package-lock.json
generated
Normal file
58
autogen/package-lock.json
generated
Normal file
@@ -0,0 +1,58 @@
|
|||||||
|
{
|
||||||
|
"name": "autogen",
|
||||||
|
"lockfileVersion": 3,
|
||||||
|
"requires": true,
|
||||||
|
"packages": {
|
||||||
|
"": {
|
||||||
|
"dependencies": {
|
||||||
|
"fast-xml-parser": "^5.3.3",
|
||||||
|
"yaml": "^2.8.2"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/fast-xml-parser": {
|
||||||
|
"version": "5.3.3",
|
||||||
|
"resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-5.3.3.tgz",
|
||||||
|
"integrity": "sha512-2O3dkPAAC6JavuMm8+4+pgTk+5hoAs+CjZ+sWcQLkX9+/tHRuTkQh/Oaifr8qDmZ8iEHb771Ea6G8CdwkrgvYA==",
|
||||||
|
"funding": [
|
||||||
|
{
|
||||||
|
"type": "github",
|
||||||
|
"url": "https://github.com/sponsors/NaturalIntelligence"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"strnum": "^2.1.0"
|
||||||
|
},
|
||||||
|
"bin": {
|
||||||
|
"fxparser": "src/cli/cli.js"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/strnum": {
|
||||||
|
"version": "2.1.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/strnum/-/strnum-2.1.2.tgz",
|
||||||
|
"integrity": "sha512-l63NF9y/cLROq/yqKXSLtcMeeyOfnSQlfMSlzFt/K73oIaD8DGaQWd7Z34X9GPiKqP5rbSh84Hl4bOlLcjiSrQ==",
|
||||||
|
"funding": [
|
||||||
|
{
|
||||||
|
"type": "github",
|
||||||
|
"url": "https://github.com/sponsors/NaturalIntelligence"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"license": "MIT"
|
||||||
|
},
|
||||||
|
"node_modules/yaml": {
|
||||||
|
"version": "2.8.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/yaml/-/yaml-2.8.2.tgz",
|
||||||
|
"integrity": "sha512-mplynKqc1C2hTVYxd0PU2xQAc22TI1vShAYGksCCfxbn/dFwnHTNi1bvYsBTkhdUNtGIf5xNOg938rrSSYvS9A==",
|
||||||
|
"license": "ISC",
|
||||||
|
"bin": {
|
||||||
|
"yaml": "bin.mjs"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">= 14.6"
|
||||||
|
},
|
||||||
|
"funding": {
|
||||||
|
"url": "https://github.com/sponsors/eemeli"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
6
autogen/package.json
Normal file
6
autogen/package.json
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"dependencies": {
|
||||||
|
"fast-xml-parser": "^5.3.3",
|
||||||
|
"yaml": "^2.8.2"
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -15,40 +15,6 @@ if (!fs.existsSync(yamlEnumPath)) {
|
|||||||
|
|
||||||
const data = JSON.parse(fs.readFileSync("def.json", "utf-8"))
|
const data = JSON.parse(fs.readFileSync("def.json", "utf-8"))
|
||||||
|
|
||||||
// Track current classes and enums
|
|
||||||
const currentClasses = new Set(data.Classes.map(c => c.Name))
|
|
||||||
const currentEnums = new Set(data.Enums.map(e => e.Name))
|
|
||||||
|
|
||||||
// Clean up removed classes
|
|
||||||
if (fs.existsSync(yamlAPIPath)) {
|
|
||||||
const existingFiles = fs.readdirSync(yamlAPIPath)
|
|
||||||
for (const file of existingFiles) {
|
|
||||||
if (file.endsWith('.yaml')) {
|
|
||||||
const className = path.basename(file, '.yaml')
|
|
||||||
if (!currentClasses.has(className)) {
|
|
||||||
const filePath = path.join(yamlAPIPath, file)
|
|
||||||
fs.unlinkSync(filePath)
|
|
||||||
console.log(`Removed obsolete class: ${className}`)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Clean up removed enums
|
|
||||||
if (fs.existsSync(yamlEnumPath)) {
|
|
||||||
const existingFiles = fs.readdirSync(yamlEnumPath)
|
|
||||||
for (const file of existingFiles) {
|
|
||||||
if (file.endsWith('.yaml')) {
|
|
||||||
const enumName = path.basename(file, '.yaml')
|
|
||||||
if (!currentEnums.has(enumName)) {
|
|
||||||
const filePath = path.join(yamlEnumPath, file)
|
|
||||||
fs.unlinkSync(filePath)
|
|
||||||
console.log(`Removed obsolete enum: ${enumName}`)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Process Classes
|
// Process Classes
|
||||||
for (const c of data.Classes) {
|
for (const c of data.Classes) {
|
||||||
let yamlPath = path.join(yamlAPIPath, c.Name + ".yaml")
|
let yamlPath = path.join(yamlAPIPath, c.Name + ".yaml")
|
||||||
@@ -66,8 +32,8 @@ for (const c of data.Classes) {
|
|||||||
let existingClassDescription = "Missing Documentation";
|
let existingClassDescription = "Missing Documentation";
|
||||||
|
|
||||||
if (fs.existsSync(yamlPath)) {
|
if (fs.existsSync(yamlPath)) {
|
||||||
const existingYaml = fs.readFileSync(yamlPath, "utf-8");
|
const existingXml = fs.readFileSync(yamlPath, "utf-8");
|
||||||
const existingData = yaml.parse(existingYaml);
|
const existingData = yaml.parse(existingXml);
|
||||||
|
|
||||||
// Preserve existing class description
|
// Preserve existing class description
|
||||||
if (existingData.Description) {
|
if (existingData.Description) {
|
||||||
@@ -151,8 +117,8 @@ for (const e of data.Enums) {
|
|||||||
let existingDescriptions = {};
|
let existingDescriptions = {};
|
||||||
let existingEnumDescription = "";
|
let existingEnumDescription = "";
|
||||||
if (fs.existsSync(yamlPath)) {
|
if (fs.existsSync(yamlPath)) {
|
||||||
const existingYaml = fs.readFileSync(yamlPath, "utf-8");
|
const existingXml = fs.readFileSync(yamlPath, "utf-8");
|
||||||
const existingData = yaml.parse(existingYaml);
|
const existingData = yaml.parse(existingXml);
|
||||||
|
|
||||||
existingEnumDescription = existingData.Description || "";
|
existingEnumDescription = existingData.Description || "";
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +0,0 @@
|
|||||||
---
|
|
||||||
title: Tutorials
|
|
||||||
weight: 3
|
|
||||||
empty: true
|
|
||||||
---
|
|
||||||
|
|
||||||
# Tutorials
|
|
||||||
@@ -1,80 +0,0 @@
|
|||||||
---
|
|
||||||
title: Migrating to 2.0
|
|
||||||
description: Guide on how you can migrate your place to 2.0
|
|
||||||
---
|
|
||||||
|
|
||||||
!! WORK IN PROGRESS !!
|
|
||||||
|
|
||||||
# Migrating to 2.0
|
|
||||||
|
|
||||||
Tutorial on how to migrate to 2.0
|
|
||||||
|
|
||||||
## Lua 5.2 -> Luau
|
|
||||||
|
|
||||||
This is the biggest compatibility breaking change for 2.0. The transition from Lua 5.2 (Moonsharp) to Luau. One of the big change being the now non-available `goto` statements. Which you'll have to switch to `continue` statement instead.
|
|
||||||
|
|
||||||
## Tweening
|
|
||||||
|
|
||||||
Tweening has been revamped in 2.0. You should create a tween object first, then tween it from there. Example:
|
|
||||||
|
|
||||||
```lua
|
|
||||||
local part: Part = script.Parent
|
|
||||||
local origin = part.Position
|
|
||||||
local tw = Tween:NewTween()
|
|
||||||
|
|
||||||
print("Tween Start!")
|
|
||||||
|
|
||||||
tw:TweenVector3(origin, origin + Vector3.New(0, 10, 0), 10, function(val)
|
|
||||||
part.Position = val
|
|
||||||
end)
|
|
||||||
|
|
||||||
tw.Finished:Wait()
|
|
||||||
|
|
||||||
print("Tween Finished!")
|
|
||||||
```
|
|
||||||
|
|
||||||
## Particles
|
|
||||||
|
|
||||||
Particles has been revamped in 2.0.
|
|
||||||
|
|
||||||
## Datastore retrieving
|
|
||||||
|
|
||||||
Datastore now no longer requires waiting for it to load first.
|
|
||||||
|
|
||||||
```lua
|
|
||||||
local ds = Datastore:GetDatastore("datastore1")
|
|
||||||
ds:SetAsync("coins", 11)
|
|
||||||
local coins: number = ds:GetAsync("coins")
|
|
||||||
print(coins)
|
|
||||||
```
|
|
||||||
|
|
||||||
You may notice that these function now require Async suffix, which brings us to:
|
|
||||||
|
|
||||||
## Async functions
|
|
||||||
|
|
||||||
Some function will now be required to be async in non compatibility mode. These include but not limited to: Http requests, Datastore data retrieving, Insert via InsertService etc.
|
|
||||||
|
|
||||||
Example HTTP Request made with 2.0:
|
|
||||||
|
|
||||||
```lua
|
|
||||||
local success, res = pcall(function()
|
|
||||||
return Http:GetAsync("http://example.com/")
|
|
||||||
end)
|
|
||||||
print(success, res)
|
|
||||||
```
|
|
||||||
|
|
||||||
To run multiple tasks simultaneously, use `spawn`
|
|
||||||
|
|
||||||
```lua
|
|
||||||
spawn(function()
|
|
||||||
local success, res = pcall(function()
|
|
||||||
return Http:GetAsync("https://example.com")
|
|
||||||
end)
|
|
||||||
print(success, res)
|
|
||||||
end)
|
|
||||||
|
|
||||||
local ds = Datastore:GetDatastore("datastore1")
|
|
||||||
ds:SetAsync("coins", 11)
|
|
||||||
local coins: number = ds:GetAsync("coins")
|
|
||||||
print(coins)
|
|
||||||
```
|
|
||||||
12
main.py
12
main.py
@@ -122,18 +122,10 @@ def define_env(env):
|
|||||||
</div>"""
|
</div>"""
|
||||||
|
|
||||||
@env.macro
|
@env.macro
|
||||||
def staticclass(className = ""):
|
def staticclass(className):
|
||||||
if className != "":
|
|
||||||
return """<div data-search-exclude markdown>
|
return """<div data-search-exclude markdown>
|
||||||
!!! tip "Static Class"
|
!!! tip "Static Class"
|
||||||
This object is a static class. It can be accessed like this: `%s`.
|
This object is a static class. It can be accessed by using its name as a keyword.
|
||||||
|
|
||||||
Additionally, it cannot be created in the creator menu or with `Instance.New()`.
|
|
||||||
</div>""" % (className)
|
|
||||||
else:
|
|
||||||
return """<div data-search-exclude markdown>
|
|
||||||
!!! tip "Static Class"
|
|
||||||
This object is a static class.
|
|
||||||
|
|
||||||
Additionally, it cannot be created in the creator menu or with `Instance.New()`.
|
Additionally, it cannot be created in the creator menu or with `Instance.New()`.
|
||||||
</div>"""
|
</div>"""
|
||||||
|
|||||||
51
package-lock.json
generated
51
package-lock.json
generated
@@ -7,56 +7,7 @@
|
|||||||
"": {
|
"": {
|
||||||
"name": "docs-2",
|
"name": "docs-2",
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"license": "ISC",
|
"license": "ISC"
|
||||||
"dependencies": {
|
|
||||||
"fast-xml-parser": "^5.3.3",
|
|
||||||
"yaml": "^2.8.2"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"node_modules/fast-xml-parser": {
|
|
||||||
"version": "5.3.3",
|
|
||||||
"resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-5.3.3.tgz",
|
|
||||||
"integrity": "sha512-2O3dkPAAC6JavuMm8+4+pgTk+5hoAs+CjZ+sWcQLkX9+/tHRuTkQh/Oaifr8qDmZ8iEHb771Ea6G8CdwkrgvYA==",
|
|
||||||
"funding": [
|
|
||||||
{
|
|
||||||
"type": "github",
|
|
||||||
"url": "https://github.com/sponsors/NaturalIntelligence"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"license": "MIT",
|
|
||||||
"dependencies": {
|
|
||||||
"strnum": "^2.1.0"
|
|
||||||
},
|
|
||||||
"bin": {
|
|
||||||
"fxparser": "src/cli/cli.js"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"node_modules/strnum": {
|
|
||||||
"version": "2.1.2",
|
|
||||||
"resolved": "https://registry.npmjs.org/strnum/-/strnum-2.1.2.tgz",
|
|
||||||
"integrity": "sha512-l63NF9y/cLROq/yqKXSLtcMeeyOfnSQlfMSlzFt/K73oIaD8DGaQWd7Z34X9GPiKqP5rbSh84Hl4bOlLcjiSrQ==",
|
|
||||||
"funding": [
|
|
||||||
{
|
|
||||||
"type": "github",
|
|
||||||
"url": "https://github.com/sponsors/NaturalIntelligence"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"license": "MIT"
|
|
||||||
},
|
|
||||||
"node_modules/yaml": {
|
|
||||||
"version": "2.8.2",
|
|
||||||
"resolved": "https://registry.npmjs.org/yaml/-/yaml-2.8.2.tgz",
|
|
||||||
"integrity": "sha512-mplynKqc1C2hTVYxd0PU2xQAc22TI1vShAYGksCCfxbn/dFwnHTNi1bvYsBTkhdUNtGIf5xNOg938rrSSYvS9A==",
|
|
||||||
"license": "ISC",
|
|
||||||
"bin": {
|
|
||||||
"yaml": "bin.mjs"
|
|
||||||
},
|
|
||||||
"engines": {
|
|
||||||
"node": ">= 14.6"
|
|
||||||
},
|
|
||||||
"funding": {
|
|
||||||
"url": "https://github.com/sponsors/eemeli"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -9,15 +9,11 @@
|
|||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "npm run gen && mkdocs serve",
|
"dev": "npm run gen && mkdocs serve",
|
||||||
"build": "npm run gen && mkdocs build",
|
"build": "npm run gen && mkdocs build",
|
||||||
"setup": "npm i && node autogen/mdgen.js && mkdocs build",
|
"setup": "npm i && npm run gen && mkdocs build",
|
||||||
"gen": "node autogen/yamlgen.js && node autogen/mdgen.js"
|
"gen": "node autogen/yamlgen.js && node autogen/mdgen.js"
|
||||||
},
|
},
|
||||||
"keywords": [],
|
"keywords": [],
|
||||||
"author": "",
|
"author": "",
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"type": "commonjs",
|
"type": "commonjs"
|
||||||
"dependencies": {
|
|
||||||
"fast-xml-parser": "^5.3.3",
|
|
||||||
"yaml": "^2.8.2"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
Name: AddonPermission
|
|
||||||
InternalName: AddonPermissionEnum
|
|
||||||
Options:
|
|
||||||
- Name: IORead
|
|
||||||
Description: ""
|
|
||||||
- Name: IOWrite
|
|
||||||
Description: ""
|
|
||||||
- Name: ScriptSource
|
|
||||||
Description: ""
|
|
||||||
Description: ""
|
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
Name: BlendMode
|
|
||||||
InternalName: BlendModeEnum
|
|
||||||
Options:
|
|
||||||
- Name: Mix
|
|
||||||
Description: ""
|
|
||||||
- Name: Add
|
|
||||||
Description: ""
|
|
||||||
- Name: Subtract
|
|
||||||
Description: ""
|
|
||||||
- Name: Multiply
|
|
||||||
Description: ""
|
|
||||||
Description: ""
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
Name: FontStyle
|
|
||||||
InternalName: FontStyleEnum
|
|
||||||
Options:
|
|
||||||
- Name: Normal
|
|
||||||
Description: ""
|
|
||||||
- Name: Italic
|
|
||||||
Description: ""
|
|
||||||
Description: ""
|
|
||||||
@@ -1,22 +0,0 @@
|
|||||||
Name: FontWeight
|
|
||||||
InternalName: FontWeightEnum
|
|
||||||
Options:
|
|
||||||
- Name: Thin
|
|
||||||
Description: ""
|
|
||||||
- Name: ExtraLight
|
|
||||||
Description: ""
|
|
||||||
- Name: Light
|
|
||||||
Description: ""
|
|
||||||
- Name: Regular
|
|
||||||
Description: ""
|
|
||||||
- Name: Medium
|
|
||||||
Description: ""
|
|
||||||
- Name: SemiBold
|
|
||||||
Description: ""
|
|
||||||
- Name: Bold
|
|
||||||
Description: ""
|
|
||||||
- Name: ExtraBold
|
|
||||||
Description: ""
|
|
||||||
- Name: Black
|
|
||||||
Description: ""
|
|
||||||
Description: ""
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
Name: GradientImageFill
|
|
||||||
InternalName: GradientImageFillEnum
|
|
||||||
Options:
|
|
||||||
- Name: Linear
|
|
||||||
Description: ""
|
|
||||||
- Name: Radial
|
|
||||||
Description: ""
|
|
||||||
- Name: Square
|
|
||||||
Description: ""
|
|
||||||
Description: ""
|
|
||||||
@@ -1,14 +0,0 @@
|
|||||||
Name: ParticleEmissionShape
|
|
||||||
InternalName: ParticleEmissionShapeEnum
|
|
||||||
Options:
|
|
||||||
- Name: Point
|
|
||||||
Description: ""
|
|
||||||
- Name: Sphere
|
|
||||||
Description: ""
|
|
||||||
- Name: SphereSurface
|
|
||||||
Description: ""
|
|
||||||
- Name: Box
|
|
||||||
Description: ""
|
|
||||||
- Name: Ring
|
|
||||||
Description: ""
|
|
||||||
Description: ""
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
Name: ParticleSimulationSpace
|
|
||||||
InternalName: ParticleSimulationSpaceEnum
|
|
||||||
Options:
|
|
||||||
- Name: Local
|
|
||||||
Description: ""
|
|
||||||
- Name: World
|
|
||||||
Description: ""
|
|
||||||
Description: ""
|
|
||||||
@@ -44,7 +44,7 @@ Methods:
|
|||||||
Type: number
|
Type: number
|
||||||
IsOptional: false
|
IsOptional: false
|
||||||
DefaultValue: ""
|
DefaultValue: ""
|
||||||
IsAsync: true
|
IsAsync: false
|
||||||
IsObsolete: false
|
IsObsolete: false
|
||||||
IsStatic: false
|
IsStatic: false
|
||||||
Description: Check if player of ID has the achievement, asynchronously.
|
Description: Check if player of ID has the achievement, asynchronously.
|
||||||
|
|||||||
@@ -1,56 +0,0 @@
|
|||||||
Name: AddonObject
|
|
||||||
BaseType: null
|
|
||||||
Properties:
|
|
||||||
- Name: Identifier
|
|
||||||
Type: string
|
|
||||||
IsAccessibleByScripts: true
|
|
||||||
IsReadOnly: true
|
|
||||||
IsObsolete: false
|
|
||||||
IsStatic: false
|
|
||||||
Description: Missing Documentation
|
|
||||||
- Name: AddonName
|
|
||||||
Type: string
|
|
||||||
IsAccessibleByScripts: true
|
|
||||||
IsReadOnly: false
|
|
||||||
IsObsolete: false
|
|
||||||
IsStatic: false
|
|
||||||
Description: Missing Documentation
|
|
||||||
- Name: AddonIcon
|
|
||||||
Type: PTImageAsset
|
|
||||||
IsAccessibleByScripts: true
|
|
||||||
IsReadOnly: false
|
|
||||||
IsObsolete: false
|
|
||||||
IsStatic: false
|
|
||||||
Description: Missing Documentation
|
|
||||||
Methods:
|
|
||||||
- Name: RequestPermissions
|
|
||||||
ReturnType: nil
|
|
||||||
Parameters:
|
|
||||||
- Name: perms
|
|
||||||
Type: "{ AddonPermissionEnum }"
|
|
||||||
IsOptional: false
|
|
||||||
DefaultValue: ""
|
|
||||||
IsAsync: true
|
|
||||||
IsObsolete: false
|
|
||||||
IsStatic: false
|
|
||||||
Description: Missing Documentation
|
|
||||||
- Name: CreateToolItem
|
|
||||||
ReturnType: AddonToolItem
|
|
||||||
Parameters:
|
|
||||||
- Name: txt
|
|
||||||
Type: string
|
|
||||||
IsOptional: false
|
|
||||||
DefaultValue: ""
|
|
||||||
IsAsync: false
|
|
||||||
IsObsolete: false
|
|
||||||
IsStatic: false
|
|
||||||
Description: Missing Documentation
|
|
||||||
Events:
|
|
||||||
- Name: CleanupReceived
|
|
||||||
Arguments: ""
|
|
||||||
Description: Missing Documentation
|
|
||||||
IsStatic: false
|
|
||||||
IsAbstract: false
|
|
||||||
IsInstantiatable: false
|
|
||||||
StaticAlias: null
|
|
||||||
Description: Missing Documentation
|
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
Name: AddonToolItem
|
|
||||||
BaseType: null
|
|
||||||
Properties: []
|
|
||||||
Methods: []
|
|
||||||
Events:
|
|
||||||
- Name: Pressed
|
|
||||||
Arguments: ""
|
|
||||||
Description: Missing Documentation
|
|
||||||
IsStatic: false
|
|
||||||
IsAbstract: false
|
|
||||||
IsInstantiatable: false
|
|
||||||
StaticAlias: null
|
|
||||||
Description: Missing Documentation
|
|
||||||
53
yaml/types/AssetService.yaml
Normal file
53
yaml/types/AssetService.yaml
Normal file
@@ -0,0 +1,53 @@
|
|||||||
|
Name: AssetService
|
||||||
|
BaseType: Instance
|
||||||
|
Properties: []
|
||||||
|
Methods:
|
||||||
|
- Name: NewAsset
|
||||||
|
ReturnType: BaseAsset
|
||||||
|
Parameters:
|
||||||
|
- Name: assetClassName
|
||||||
|
Type: string
|
||||||
|
IsOptional: false
|
||||||
|
DefaultValue: ""
|
||||||
|
IsAsync: false
|
||||||
|
IsObsolete: false
|
||||||
|
IsStatic: false
|
||||||
|
Description: Create new asset with the class name
|
||||||
|
- Name: NewPTImage
|
||||||
|
ReturnType: PTImageAsset
|
||||||
|
Parameters:
|
||||||
|
- Name: imgID
|
||||||
|
Type: number
|
||||||
|
IsOptional: false
|
||||||
|
DefaultValue: ""
|
||||||
|
IsAsync: false
|
||||||
|
IsObsolete: false
|
||||||
|
IsStatic: false
|
||||||
|
Description: Create new image from Polytoria with the target ID
|
||||||
|
- Name: NewPTAudio
|
||||||
|
ReturnType: PTAudioAsset
|
||||||
|
Parameters:
|
||||||
|
- Name: audioID
|
||||||
|
Type: number
|
||||||
|
IsOptional: false
|
||||||
|
DefaultValue: ""
|
||||||
|
IsAsync: false
|
||||||
|
IsObsolete: false
|
||||||
|
IsStatic: false
|
||||||
|
Description: Create new audio from Polytoria with the target ID
|
||||||
|
- Name: NewPTMesh
|
||||||
|
ReturnType: PTMeshAsset
|
||||||
|
Parameters:
|
||||||
|
- Name: assetID
|
||||||
|
Type: number
|
||||||
|
IsOptional: false
|
||||||
|
DefaultValue: ""
|
||||||
|
IsAsync: false
|
||||||
|
IsObsolete: false
|
||||||
|
IsStatic: false
|
||||||
|
Description: Create new mesh from Polytoria with the target ID
|
||||||
|
Events: []
|
||||||
|
IsStatic: true
|
||||||
|
IsAbstract: false
|
||||||
|
IsInstantiatable: false
|
||||||
|
Description: Service for managing assets
|
||||||
@@ -12,7 +12,7 @@ Methods:
|
|||||||
IsAsync: false
|
IsAsync: false
|
||||||
IsObsolete: false
|
IsObsolete: false
|
||||||
IsStatic: false
|
IsStatic: false
|
||||||
Description: Create new asset with the class name
|
Description: Missing Documentation
|
||||||
- Name: NewPTImage
|
- Name: NewPTImage
|
||||||
ReturnType: PTImageAsset
|
ReturnType: PTImageAsset
|
||||||
Parameters:
|
Parameters:
|
||||||
@@ -23,7 +23,7 @@ Methods:
|
|||||||
IsAsync: false
|
IsAsync: false
|
||||||
IsObsolete: false
|
IsObsolete: false
|
||||||
IsStatic: false
|
IsStatic: false
|
||||||
Description: Create new image from Polytoria with the target ID
|
Description: Missing Documentation
|
||||||
- Name: NewPTAudio
|
- Name: NewPTAudio
|
||||||
ReturnType: PTAudioAsset
|
ReturnType: PTAudioAsset
|
||||||
Parameters:
|
Parameters:
|
||||||
@@ -34,7 +34,7 @@ Methods:
|
|||||||
IsAsync: false
|
IsAsync: false
|
||||||
IsObsolete: false
|
IsObsolete: false
|
||||||
IsStatic: false
|
IsStatic: false
|
||||||
Description: Create new audio from Polytoria with the target ID
|
Description: Missing Documentation
|
||||||
- Name: NewPTMesh
|
- Name: NewPTMesh
|
||||||
ReturnType: PTMeshAsset
|
ReturnType: PTMeshAsset
|
||||||
Parameters:
|
Parameters:
|
||||||
@@ -45,32 +45,10 @@ Methods:
|
|||||||
IsAsync: false
|
IsAsync: false
|
||||||
IsObsolete: false
|
IsObsolete: false
|
||||||
IsStatic: false
|
IsStatic: false
|
||||||
Description: Create new mesh from Polytoria with the target ID
|
|
||||||
- Name: GetFileLinkByPath
|
|
||||||
ReturnType: FileLinkAsset
|
|
||||||
Parameters:
|
|
||||||
- Name: path
|
|
||||||
Type: string
|
|
||||||
IsOptional: false
|
|
||||||
DefaultValue: ""
|
|
||||||
IsAsync: false
|
|
||||||
IsObsolete: false
|
|
||||||
IsStatic: false
|
|
||||||
Description: Missing Documentation
|
|
||||||
- Name: GetFileLinkByID
|
|
||||||
ReturnType: FileLinkAsset
|
|
||||||
Parameters:
|
|
||||||
- Name: id
|
|
||||||
Type: string
|
|
||||||
IsOptional: false
|
|
||||||
DefaultValue: ""
|
|
||||||
IsAsync: false
|
|
||||||
IsObsolete: false
|
|
||||||
IsStatic: false
|
|
||||||
Description: Missing Documentation
|
Description: Missing Documentation
|
||||||
Events: []
|
Events: []
|
||||||
IsStatic: true
|
IsStatic: true
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: false
|
IsInstantiatable: false
|
||||||
StaticAlias: Assets
|
StaticAlias: Assets
|
||||||
Description: Service for managing/creating assets
|
Description: Missing Documentation
|
||||||
|
|||||||
@@ -8,20 +8,6 @@ Properties:
|
|||||||
IsObsolete: false
|
IsObsolete: false
|
||||||
IsStatic: false
|
IsStatic: false
|
||||||
Description: Target font to use
|
Description: Target font to use
|
||||||
- Name: FontWeight
|
|
||||||
Type: FontWeightEnum
|
|
||||||
IsAccessibleByScripts: false
|
|
||||||
IsReadOnly: false
|
|
||||||
IsObsolete: false
|
|
||||||
IsStatic: false
|
|
||||||
Description: Missing Documentation
|
|
||||||
- Name: FontStyle
|
|
||||||
Type: FontStyleEnum
|
|
||||||
IsAccessibleByScripts: false
|
|
||||||
IsReadOnly: false
|
|
||||||
IsObsolete: false
|
|
||||||
IsStatic: false
|
|
||||||
Description: Missing Documentation
|
|
||||||
Methods: []
|
Methods: []
|
||||||
Events: []
|
Events: []
|
||||||
IsStatic: false
|
IsStatic: false
|
||||||
|
|||||||
@@ -173,7 +173,7 @@ Methods:
|
|||||||
IsOptional: false
|
IsOptional: false
|
||||||
DefaultValue: ""
|
DefaultValue: ""
|
||||||
- Name: ignoreList
|
- Name: ignoreList
|
||||||
Type: "{ Instance }"
|
Type: table
|
||||||
IsOptional: true
|
IsOptional: true
|
||||||
DefaultValue: null
|
DefaultValue: null
|
||||||
- Name: maxDistance
|
- Name: maxDistance
|
||||||
@@ -194,7 +194,7 @@ Methods:
|
|||||||
IsOptional: false
|
IsOptional: false
|
||||||
DefaultValue: ""
|
DefaultValue: ""
|
||||||
- Name: ignoreList
|
- Name: ignoreList
|
||||||
Type: "{ Instance }"
|
Type: table
|
||||||
IsOptional: true
|
IsOptional: true
|
||||||
DefaultValue: null
|
DefaultValue: null
|
||||||
- Name: maxDistance
|
- Name: maxDistance
|
||||||
|
|||||||
@@ -1,13 +1,6 @@
|
|||||||
Name: ChatService
|
Name: ChatService
|
||||||
BaseType: Instance
|
BaseType: Instance
|
||||||
Properties:
|
Properties: []
|
||||||
- Name: ChatPredicate
|
|
||||||
Type: function
|
|
||||||
IsAccessibleByScripts: true
|
|
||||||
IsReadOnly: false
|
|
||||||
IsObsolete: false
|
|
||||||
IsStatic: false
|
|
||||||
Description: Missing Documentation
|
|
||||||
Methods:
|
Methods:
|
||||||
- Name: BroadcastMessage
|
- Name: BroadcastMessage
|
||||||
ReturnType: nil
|
ReturnType: nil
|
||||||
@@ -49,9 +42,6 @@ Events:
|
|||||||
Type: string
|
Type: string
|
||||||
Description: Fires when new message has been received from either
|
Description: Fires when new message has been received from either
|
||||||
`BroadcastMessage` or `UnicastMessage`
|
`BroadcastMessage` or `UnicastMessage`
|
||||||
- Name: MessageDeclined
|
|
||||||
Arguments: ""
|
|
||||||
Description: Missing Documentation
|
|
||||||
IsStatic: true
|
IsStatic: true
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: false
|
IsInstantiatable: false
|
||||||
|
|||||||
@@ -64,20 +64,6 @@ Methods:
|
|||||||
IsObsolete: false
|
IsObsolete: false
|
||||||
IsStatic: false
|
IsStatic: false
|
||||||
Description: Removes the point at the specified index from the color series.
|
Description: Removes the point at the specified index from the color series.
|
||||||
- Name: GetOffsets
|
|
||||||
ReturnType: "{ number }"
|
|
||||||
Parameters: []
|
|
||||||
IsAsync: false
|
|
||||||
IsObsolete: false
|
|
||||||
IsStatic: false
|
|
||||||
Description: Missing Documentation
|
|
||||||
- Name: GetColors
|
|
||||||
ReturnType: "{ Color }"
|
|
||||||
Parameters: []
|
|
||||||
IsAsync: false
|
|
||||||
IsObsolete: false
|
|
||||||
IsStatic: false
|
|
||||||
Description: Missing Documentation
|
|
||||||
- Name: SetOffset
|
- Name: SetOffset
|
||||||
ReturnType: nil
|
ReturnType: nil
|
||||||
Parameters:
|
Parameters:
|
||||||
@@ -115,21 +101,6 @@ Methods:
|
|||||||
IsObsolete: false
|
IsObsolete: false
|
||||||
IsStatic: false
|
IsStatic: false
|
||||||
Description: Gets the offset at the specified point in the color series.
|
Description: Gets the offset at the specified point in the color series.
|
||||||
- Name: AddPoint
|
|
||||||
ReturnType: number
|
|
||||||
Parameters:
|
|
||||||
- Name: offset
|
|
||||||
Type: number
|
|
||||||
IsOptional: false
|
|
||||||
DefaultValue: ""
|
|
||||||
- Name: color
|
|
||||||
Type: Color
|
|
||||||
IsOptional: false
|
|
||||||
DefaultValue: ""
|
|
||||||
IsAsync: false
|
|
||||||
IsObsolete: false
|
|
||||||
IsStatic: false
|
|
||||||
Description: Missing Documentation
|
|
||||||
- Name: Lerp
|
- Name: Lerp
|
||||||
ReturnType: Color
|
ReturnType: Color
|
||||||
Parameters:
|
Parameters:
|
||||||
|
|||||||
@@ -1,21 +0,0 @@
|
|||||||
Name: CreatorAddons
|
|
||||||
BaseType: Instance
|
|
||||||
Properties: []
|
|
||||||
Methods:
|
|
||||||
- Name: Register
|
|
||||||
ReturnType: AddonObject
|
|
||||||
Parameters:
|
|
||||||
- Name: identifier
|
|
||||||
Type: string
|
|
||||||
IsOptional: false
|
|
||||||
DefaultValue: ""
|
|
||||||
IsAsync: false
|
|
||||||
IsObsolete: false
|
|
||||||
IsStatic: false
|
|
||||||
Description: Missing Documentation
|
|
||||||
Events: []
|
|
||||||
IsStatic: true
|
|
||||||
IsAbstract: false
|
|
||||||
IsInstantiatable: false
|
|
||||||
StaticAlias: Addons
|
|
||||||
Description: Missing Documentation
|
|
||||||
@@ -43,9 +43,9 @@ Methods:
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
Description: Commit the current action
|
Description: Commit the current action
|
||||||
Events: []
|
Events: []
|
||||||
IsStatic: true
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: false
|
IsInstantiatable: false
|
||||||
StaticAlias: History
|
StaticAlias: null
|
||||||
Description: CreatorHistory is a class that manages history (undo-redo) of this
|
Description: CreatorHistory is a class that manages history (undo-redo) of this
|
||||||
game instance. This class is only available in the creator.
|
game instance. This class is only available in the creator.
|
||||||
|
|||||||
@@ -24,13 +24,6 @@ Methods:
|
|||||||
IsObsolete: false
|
IsObsolete: false
|
||||||
IsStatic: false
|
IsStatic: false
|
||||||
Description: Select all children of the instance
|
Description: Select all children of the instance
|
||||||
- Name: GetSelected
|
|
||||||
ReturnType: "{ Instance }"
|
|
||||||
Parameters: []
|
|
||||||
IsAsync: false
|
|
||||||
IsObsolete: false
|
|
||||||
IsStatic: false
|
|
||||||
Description: Missing Documentation
|
|
||||||
- Name: Deselect
|
- Name: Deselect
|
||||||
ReturnType: nil
|
ReturnType: nil
|
||||||
Parameters:
|
Parameters:
|
||||||
@@ -71,16 +64,10 @@ Methods:
|
|||||||
IsObsolete: false
|
IsObsolete: false
|
||||||
IsStatic: false
|
IsStatic: false
|
||||||
Description: Check if instance has been selected
|
Description: Check if instance has been selected
|
||||||
Events:
|
Events: []
|
||||||
- Name: Selected
|
IsStatic: false
|
||||||
Arguments: ""
|
|
||||||
Description: Missing Documentation
|
|
||||||
- Name: Deselected
|
|
||||||
Arguments: ""
|
|
||||||
Description: Missing Documentation
|
|
||||||
IsStatic: true
|
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: false
|
IsInstantiatable: false
|
||||||
StaticAlias: Selections
|
StaticAlias: null
|
||||||
Description: CreatorSelections is an object that manages selections in the game
|
Description: CreatorSelections is an object that manages selections in the game
|
||||||
instance. This class is only available in the creator.
|
instance. This class is only available in the creator.
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ Methods:
|
|||||||
Type: string
|
Type: string
|
||||||
IsOptional: false
|
IsOptional: false
|
||||||
DefaultValue: ""
|
DefaultValue: ""
|
||||||
IsAsync: true
|
IsAsync: false
|
||||||
IsObsolete: false
|
IsObsolete: false
|
||||||
IsStatic: false
|
IsStatic: false
|
||||||
Description: Retrieves a value from the datastore asynchronously using the
|
Description: Retrieves a value from the datastore asynchronously using the
|
||||||
@@ -32,7 +32,7 @@ Methods:
|
|||||||
Type: any
|
Type: any
|
||||||
IsOptional: false
|
IsOptional: false
|
||||||
DefaultValue: ""
|
DefaultValue: ""
|
||||||
IsAsync: true
|
IsAsync: false
|
||||||
IsObsolete: false
|
IsObsolete: false
|
||||||
IsStatic: false
|
IsStatic: false
|
||||||
Description: Stores a value in the datastore asynchronously using the specified key.
|
Description: Stores a value in the datastore asynchronously using the specified key.
|
||||||
@@ -43,18 +43,14 @@ Methods:
|
|||||||
Type: string
|
Type: string
|
||||||
IsOptional: false
|
IsOptional: false
|
||||||
DefaultValue: ""
|
DefaultValue: ""
|
||||||
IsAsync: true
|
|
||||||
IsObsolete: false
|
|
||||||
IsStatic: false
|
|
||||||
Description: Removes a value from the datastore asynchronously using the specified key.
|
|
||||||
- Name: Disconnect
|
|
||||||
ReturnType: nil
|
|
||||||
Parameters: []
|
|
||||||
IsAsync: false
|
IsAsync: false
|
||||||
IsObsolete: false
|
IsObsolete: false
|
||||||
IsStatic: false
|
IsStatic: false
|
||||||
Description: Missing Documentation
|
Description: Removes a value from the datastore asynchronously using the specified key.
|
||||||
Events: []
|
Events:
|
||||||
|
- Name: Loaded
|
||||||
|
Arguments: ""
|
||||||
|
Description: Fires when this datastore has been loaded
|
||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: false
|
IsInstantiatable: false
|
||||||
|
|||||||
@@ -153,6 +153,72 @@ Methods:
|
|||||||
IsObsolete: false
|
IsObsolete: false
|
||||||
IsStatic: false
|
IsStatic: false
|
||||||
Description: Rotates the object by the specified Euler angles.
|
Description: Rotates the object by the specified Euler angles.
|
||||||
|
- Name: InverseTransformPoint
|
||||||
|
ReturnType: Vector3
|
||||||
|
Parameters:
|
||||||
|
- Name: point
|
||||||
|
Type: Vector3
|
||||||
|
IsOptional: false
|
||||||
|
DefaultValue: ""
|
||||||
|
IsAsync: false
|
||||||
|
IsObsolete: false
|
||||||
|
IsStatic: false
|
||||||
|
Description: Transforms a point from world space to local space.
|
||||||
|
- Name: TransformPoint
|
||||||
|
ReturnType: Vector3
|
||||||
|
Parameters:
|
||||||
|
- Name: point
|
||||||
|
Type: Vector3
|
||||||
|
IsOptional: false
|
||||||
|
DefaultValue: ""
|
||||||
|
IsAsync: false
|
||||||
|
IsObsolete: false
|
||||||
|
IsStatic: false
|
||||||
|
Description: Transforms a point from local space to world space.
|
||||||
|
- Name: InverseTransformDirection
|
||||||
|
ReturnType: Vector3
|
||||||
|
Parameters:
|
||||||
|
- Name: direction
|
||||||
|
Type: Vector3
|
||||||
|
IsOptional: false
|
||||||
|
DefaultValue: ""
|
||||||
|
IsAsync: false
|
||||||
|
IsObsolete: false
|
||||||
|
IsStatic: false
|
||||||
|
Description: Transforms a direction from world space to local space.
|
||||||
|
- Name: TransformDirection
|
||||||
|
ReturnType: Vector3
|
||||||
|
Parameters:
|
||||||
|
- Name: direction
|
||||||
|
Type: Vector3
|
||||||
|
IsOptional: false
|
||||||
|
DefaultValue: ""
|
||||||
|
IsAsync: false
|
||||||
|
IsObsolete: false
|
||||||
|
IsStatic: false
|
||||||
|
Description: Transforms a direction from local space to world space.
|
||||||
|
- Name: InverseTransformVector
|
||||||
|
ReturnType: Vector3
|
||||||
|
Parameters:
|
||||||
|
- Name: vector
|
||||||
|
Type: Vector3
|
||||||
|
IsOptional: false
|
||||||
|
DefaultValue: ""
|
||||||
|
IsAsync: false
|
||||||
|
IsObsolete: false
|
||||||
|
IsStatic: false
|
||||||
|
Description: Transforms a vector from world space to local space.
|
||||||
|
- Name: InverseTransformPosition
|
||||||
|
ReturnType: Vector3
|
||||||
|
Parameters:
|
||||||
|
- Name: position
|
||||||
|
Type: Vector3
|
||||||
|
IsOptional: false
|
||||||
|
DefaultValue: ""
|
||||||
|
IsAsync: false
|
||||||
|
IsObsolete: false
|
||||||
|
IsStatic: false
|
||||||
|
Description: Transforms a position from world space to local space.
|
||||||
- Name: GetBounds
|
- Name: GetBounds
|
||||||
ReturnType: Bounds
|
ReturnType: Bounds
|
||||||
Parameters: []
|
Parameters: []
|
||||||
|
|||||||
@@ -48,7 +48,7 @@ Methods:
|
|||||||
IsOptional: true
|
IsOptional: true
|
||||||
DefaultValue: "10000"
|
DefaultValue: "10000"
|
||||||
- Name: ignoreList
|
- Name: ignoreList
|
||||||
Type: "{ Instance }"
|
Type: table
|
||||||
IsOptional: true
|
IsOptional: true
|
||||||
DefaultValue: null
|
DefaultValue: null
|
||||||
IsAsync: false
|
IsAsync: false
|
||||||
@@ -57,7 +57,7 @@ Methods:
|
|||||||
Description: Casts a ray from origin with a specified direction and returns a
|
Description: Casts a ray from origin with a specified direction and returns a
|
||||||
RayResult for the first hit object.
|
RayResult for the first hit object.
|
||||||
- Name: RaycastAll
|
- Name: RaycastAll
|
||||||
ReturnType: "{ RayResult }"
|
ReturnType: table
|
||||||
Parameters:
|
Parameters:
|
||||||
- Name: origin
|
- Name: origin
|
||||||
Type: Vector3
|
Type: Vector3
|
||||||
@@ -72,7 +72,7 @@ Methods:
|
|||||||
IsOptional: true
|
IsOptional: true
|
||||||
DefaultValue: "1000"
|
DefaultValue: "1000"
|
||||||
- Name: ignoreList
|
- Name: ignoreList
|
||||||
Type: "{ Instance }"
|
Type: table
|
||||||
IsOptional: true
|
IsOptional: true
|
||||||
DefaultValue: null
|
DefaultValue: null
|
||||||
IsAsync: false
|
IsAsync: false
|
||||||
@@ -81,7 +81,7 @@ Methods:
|
|||||||
Description: Casts a ray from origin with a specified direction and returns a
|
Description: Casts a ray from origin with a specified direction and returns a
|
||||||
RayResult array for all hit objects.
|
RayResult array for all hit objects.
|
||||||
- Name: OverlapSphere
|
- Name: OverlapSphere
|
||||||
ReturnType: "{ Instance }"
|
ReturnType: table
|
||||||
Parameters:
|
Parameters:
|
||||||
- Name: origin
|
- Name: origin
|
||||||
Type: Vector3
|
Type: Vector3
|
||||||
@@ -92,7 +92,7 @@ Methods:
|
|||||||
IsOptional: false
|
IsOptional: false
|
||||||
DefaultValue: ""
|
DefaultValue: ""
|
||||||
- Name: ignoreList
|
- Name: ignoreList
|
||||||
Type: "{ Instance }"
|
Type: table
|
||||||
IsOptional: true
|
IsOptional: true
|
||||||
DefaultValue: null
|
DefaultValue: null
|
||||||
IsAsync: false
|
IsAsync: false
|
||||||
@@ -101,7 +101,7 @@ Methods:
|
|||||||
Description: Returns a list of instances intersecting with the sphere in the
|
Description: Returns a list of instances intersecting with the sphere in the
|
||||||
given position and radius.
|
given position and radius.
|
||||||
- Name: OverlapBox
|
- Name: OverlapBox
|
||||||
ReturnType: "{ Instance }"
|
ReturnType: table
|
||||||
Parameters:
|
Parameters:
|
||||||
- Name: pos
|
- Name: pos
|
||||||
Type: Vector3
|
Type: Vector3
|
||||||
@@ -116,7 +116,7 @@ Methods:
|
|||||||
IsOptional: false
|
IsOptional: false
|
||||||
DefaultValue: ""
|
DefaultValue: ""
|
||||||
- Name: ignoreList
|
- Name: ignoreList
|
||||||
Type: "{ Instance }"
|
Type: table
|
||||||
IsOptional: true
|
IsOptional: true
|
||||||
DefaultValue: null
|
DefaultValue: null
|
||||||
IsAsync: false
|
IsAsync: false
|
||||||
|
|||||||
@@ -29,13 +29,6 @@ Properties:
|
|||||||
IsObsolete: false
|
IsObsolete: false
|
||||||
IsStatic: false
|
IsStatic: false
|
||||||
Description: The uptime of this game in seconds.
|
Description: The uptime of this game in seconds.
|
||||||
- Name: ServerTime
|
|
||||||
Type: number
|
|
||||||
IsAccessibleByScripts: true
|
|
||||||
IsReadOnly: true
|
|
||||||
IsObsolete: false
|
|
||||||
IsStatic: false
|
|
||||||
Description: Missing Documentation
|
|
||||||
- Name: InstanceCount
|
- Name: InstanceCount
|
||||||
Type: number
|
Type: number
|
||||||
IsAccessibleByScripts: true
|
IsAccessibleByScripts: true
|
||||||
|
|||||||
@@ -15,13 +15,6 @@ Properties:
|
|||||||
IsObsolete: false
|
IsObsolete: false
|
||||||
IsStatic: false
|
IsStatic: false
|
||||||
Description: Determines the max range that this object can be dragged.
|
Description: Determines the max range that this object can be dragged.
|
||||||
- Name: UseDragForce
|
|
||||||
Type: boolean
|
|
||||||
IsAccessibleByScripts: true
|
|
||||||
IsReadOnly: false
|
|
||||||
IsObsolete: false
|
|
||||||
IsStatic: false
|
|
||||||
Description: Missing Documentation
|
|
||||||
- Name: PermissionMode
|
- Name: PermissionMode
|
||||||
Type: GrabbablePermissionModeEnum
|
Type: GrabbablePermissionModeEnum
|
||||||
IsAccessibleByScripts: true
|
IsAccessibleByScripts: true
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
Name: Hidden
|
Name: Hidden
|
||||||
BaseType: HiddenBase
|
BaseType: Instance
|
||||||
Properties: []
|
Properties: []
|
||||||
Methods: []
|
Methods: []
|
||||||
Events: []
|
Events: []
|
||||||
IsStatic: true
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: false
|
IsInstantiatable: false
|
||||||
StaticAlias: Hidden
|
StaticAlias: null
|
||||||
Description: Hidden is a object used for hiding instances.
|
Description: Hidden is a object used for hiding instances.
|
||||||
|
|||||||
@@ -1,10 +0,0 @@
|
|||||||
Name: HiddenBase
|
|
||||||
BaseType: Instance
|
|
||||||
Properties: []
|
|
||||||
Methods: []
|
|
||||||
Events: []
|
|
||||||
IsStatic: false
|
|
||||||
IsAbstract: true
|
|
||||||
IsInstantiatable: false
|
|
||||||
StaticAlias: null
|
|
||||||
Description: Missing Documentation
|
|
||||||
@@ -30,13 +30,6 @@ Properties:
|
|||||||
IsObsolete: false
|
IsObsolete: false
|
||||||
IsStatic: false
|
IsStatic: false
|
||||||
Description: The response payload returned by the server as a string buffer.
|
Description: The response payload returned by the server as a string buffer.
|
||||||
- Name: Buffer
|
|
||||||
Type: buffer
|
|
||||||
IsAccessibleByScripts: true
|
|
||||||
IsReadOnly: true
|
|
||||||
IsObsolete: false
|
|
||||||
IsStatic: false
|
|
||||||
Description: Missing Documentation
|
|
||||||
Methods: []
|
Methods: []
|
||||||
Events: []
|
Events: []
|
||||||
IsStatic: false
|
IsStatic: false
|
||||||
|
|||||||
@@ -104,97 +104,6 @@ Methods:
|
|||||||
IsObsolete: false
|
IsObsolete: false
|
||||||
IsStatic: false
|
IsStatic: false
|
||||||
Description: Sends a PATCH request to the specified url.
|
Description: Sends a PATCH request to the specified url.
|
||||||
- Name: GetBufferAsync
|
|
||||||
ReturnType: buffer
|
|
||||||
Parameters:
|
|
||||||
- Name: url
|
|
||||||
Type: string
|
|
||||||
IsOptional: false
|
|
||||||
DefaultValue: ""
|
|
||||||
- Name: headers
|
|
||||||
Type: table
|
|
||||||
IsOptional: true
|
|
||||||
DefaultValue: null
|
|
||||||
IsAsync: true
|
|
||||||
IsObsolete: false
|
|
||||||
IsStatic: false
|
|
||||||
Description: Missing Documentation
|
|
||||||
- Name: PostBufferAsync
|
|
||||||
ReturnType: buffer
|
|
||||||
Parameters:
|
|
||||||
- Name: url
|
|
||||||
Type: string
|
|
||||||
IsOptional: false
|
|
||||||
DefaultValue: ""
|
|
||||||
- Name: body
|
|
||||||
Type: string
|
|
||||||
IsOptional: false
|
|
||||||
DefaultValue: ""
|
|
||||||
- Name: headers
|
|
||||||
Type: table
|
|
||||||
IsOptional: true
|
|
||||||
DefaultValue: null
|
|
||||||
IsAsync: true
|
|
||||||
IsObsolete: false
|
|
||||||
IsStatic: false
|
|
||||||
Description: Missing Documentation
|
|
||||||
- Name: PutBufferAsync
|
|
||||||
ReturnType: buffer
|
|
||||||
Parameters:
|
|
||||||
- Name: url
|
|
||||||
Type: string
|
|
||||||
IsOptional: false
|
|
||||||
DefaultValue: ""
|
|
||||||
- Name: body
|
|
||||||
Type: string
|
|
||||||
IsOptional: false
|
|
||||||
DefaultValue: ""
|
|
||||||
- Name: headers
|
|
||||||
Type: table
|
|
||||||
IsOptional: true
|
|
||||||
DefaultValue: null
|
|
||||||
IsAsync: true
|
|
||||||
IsObsolete: false
|
|
||||||
IsStatic: false
|
|
||||||
Description: Missing Documentation
|
|
||||||
- Name: DeleteBufferAsync
|
|
||||||
ReturnType: buffer
|
|
||||||
Parameters:
|
|
||||||
- Name: url
|
|
||||||
Type: string
|
|
||||||
IsOptional: false
|
|
||||||
DefaultValue: ""
|
|
||||||
- Name: body
|
|
||||||
Type: string
|
|
||||||
IsOptional: false
|
|
||||||
DefaultValue: ""
|
|
||||||
- Name: headers
|
|
||||||
Type: table
|
|
||||||
IsOptional: true
|
|
||||||
DefaultValue: null
|
|
||||||
IsAsync: true
|
|
||||||
IsObsolete: false
|
|
||||||
IsStatic: false
|
|
||||||
Description: Missing Documentation
|
|
||||||
- Name: PatchBufferAsync
|
|
||||||
ReturnType: buffer
|
|
||||||
Parameters:
|
|
||||||
- Name: url
|
|
||||||
Type: string
|
|
||||||
IsOptional: false
|
|
||||||
DefaultValue: ""
|
|
||||||
- Name: body
|
|
||||||
Type: string
|
|
||||||
IsOptional: false
|
|
||||||
DefaultValue: ""
|
|
||||||
- Name: headers
|
|
||||||
Type: table
|
|
||||||
IsOptional: true
|
|
||||||
DefaultValue: null
|
|
||||||
IsAsync: true
|
|
||||||
IsObsolete: false
|
|
||||||
IsStatic: false
|
|
||||||
Description: Missing Documentation
|
|
||||||
Events: []
|
Events: []
|
||||||
IsStatic: true
|
IsStatic: true
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
|
|||||||
@@ -3,17 +3,6 @@ BaseType: Instance
|
|||||||
Properties: []
|
Properties: []
|
||||||
Methods:
|
Methods:
|
||||||
- Name: ReadBytesFromPath
|
- Name: ReadBytesFromPath
|
||||||
ReturnType: buffer
|
|
||||||
Parameters:
|
|
||||||
- Name: path
|
|
||||||
Type: string
|
|
||||||
IsOptional: false
|
|
||||||
DefaultValue: ""
|
|
||||||
IsAsync: false
|
|
||||||
IsObsolete: false
|
|
||||||
IsStatic: false
|
|
||||||
Description: Read the file data from path
|
|
||||||
- Name: ReadTextFromPath
|
|
||||||
ReturnType: string
|
ReturnType: string
|
||||||
Parameters:
|
Parameters:
|
||||||
- Name: path
|
- Name: path
|
||||||
@@ -23,7 +12,7 @@ Methods:
|
|||||||
IsAsync: false
|
IsAsync: false
|
||||||
IsObsolete: false
|
IsObsolete: false
|
||||||
IsStatic: false
|
IsStatic: false
|
||||||
Description: Missing Documentation
|
Description: Read the file data from path
|
||||||
- Name: WriteBytesToPath
|
- Name: WriteBytesToPath
|
||||||
ReturnType: nil
|
ReturnType: nil
|
||||||
Parameters:
|
Parameters:
|
||||||
@@ -32,37 +21,22 @@ Methods:
|
|||||||
IsOptional: false
|
IsOptional: false
|
||||||
DefaultValue: ""
|
DefaultValue: ""
|
||||||
- Name: bytes
|
- Name: bytes
|
||||||
Type: buffer
|
Type: string
|
||||||
IsOptional: false
|
IsOptional: false
|
||||||
DefaultValue: ""
|
DefaultValue: ""
|
||||||
IsAsync: false
|
IsAsync: true
|
||||||
IsObsolete: false
|
IsObsolete: false
|
||||||
IsStatic: false
|
IsStatic: false
|
||||||
Description: Write data to file in the project
|
Description: Write data to file in the project
|
||||||
- Name: WriteTextToPath
|
|
||||||
ReturnType: nil
|
|
||||||
Parameters:
|
|
||||||
- Name: path
|
|
||||||
Type: string
|
|
||||||
IsOptional: false
|
|
||||||
DefaultValue: ""
|
|
||||||
- Name: txt
|
|
||||||
Type: string
|
|
||||||
IsOptional: false
|
|
||||||
DefaultValue: ""
|
|
||||||
IsAsync: false
|
|
||||||
IsObsolete: false
|
|
||||||
IsStatic: false
|
|
||||||
Description: Missing Documentation
|
|
||||||
- Name: ListProjectFiles
|
- Name: ListProjectFiles
|
||||||
ReturnType: "{ string }"
|
ReturnType: table
|
||||||
Parameters: []
|
Parameters: []
|
||||||
IsAsync: false
|
IsAsync: false
|
||||||
IsObsolete: false
|
IsObsolete: false
|
||||||
IsStatic: false
|
IsStatic: false
|
||||||
Description: List all files in the project
|
Description: List all files in the project
|
||||||
- Name: ReadBytesFromID
|
- Name: ReadBytesFromID
|
||||||
ReturnType: buffer
|
ReturnType: string
|
||||||
Parameters:
|
Parameters:
|
||||||
- Name: id
|
- Name: id
|
||||||
Type: string
|
Type: string
|
||||||
|
|||||||
@@ -1,52 +0,0 @@
|
|||||||
Name: ImageSky
|
|
||||||
BaseType: Sky
|
|
||||||
Properties:
|
|
||||||
- Name: TopImage
|
|
||||||
Type: ImageAsset
|
|
||||||
IsAccessibleByScripts: true
|
|
||||||
IsReadOnly: false
|
|
||||||
IsObsolete: false
|
|
||||||
IsStatic: false
|
|
||||||
Description: Missing Documentation
|
|
||||||
- Name: BottomImage
|
|
||||||
Type: ImageAsset
|
|
||||||
IsAccessibleByScripts: true
|
|
||||||
IsReadOnly: false
|
|
||||||
IsObsolete: false
|
|
||||||
IsStatic: false
|
|
||||||
Description: Missing Documentation
|
|
||||||
- Name: LeftImage
|
|
||||||
Type: ImageAsset
|
|
||||||
IsAccessibleByScripts: true
|
|
||||||
IsReadOnly: false
|
|
||||||
IsObsolete: false
|
|
||||||
IsStatic: false
|
|
||||||
Description: Missing Documentation
|
|
||||||
- Name: RightImage
|
|
||||||
Type: ImageAsset
|
|
||||||
IsAccessibleByScripts: true
|
|
||||||
IsReadOnly: false
|
|
||||||
IsObsolete: false
|
|
||||||
IsStatic: false
|
|
||||||
Description: Missing Documentation
|
|
||||||
- Name: FrontImage
|
|
||||||
Type: ImageAsset
|
|
||||||
IsAccessibleByScripts: true
|
|
||||||
IsReadOnly: false
|
|
||||||
IsObsolete: false
|
|
||||||
IsStatic: false
|
|
||||||
Description: Missing Documentation
|
|
||||||
- Name: BackImage
|
|
||||||
Type: ImageAsset
|
|
||||||
IsAccessibleByScripts: true
|
|
||||||
IsReadOnly: false
|
|
||||||
IsObsolete: false
|
|
||||||
IsStatic: false
|
|
||||||
Description: Missing Documentation
|
|
||||||
Methods: []
|
|
||||||
Events: []
|
|
||||||
IsStatic: false
|
|
||||||
IsAbstract: false
|
|
||||||
IsInstantiatable: true
|
|
||||||
StaticAlias: null
|
|
||||||
Description: Missing Documentation
|
|
||||||
@@ -83,7 +83,7 @@ Methods:
|
|||||||
ReturnType: Vector3
|
ReturnType: Vector3
|
||||||
Parameters:
|
Parameters:
|
||||||
- Name: ignoreList
|
- Name: ignoreList
|
||||||
Type: "{ Instance }"
|
Type: table
|
||||||
IsOptional: true
|
IsOptional: true
|
||||||
DefaultValue: null
|
DefaultValue: null
|
||||||
IsAsync: false
|
IsAsync: false
|
||||||
@@ -172,17 +172,13 @@ Events:
|
|||||||
Description: Fires when gamepad has been disconnected
|
Description: Fires when gamepad has been disconnected
|
||||||
- Name: KeyDown
|
- Name: KeyDown
|
||||||
Arguments:
|
Arguments:
|
||||||
- Name: keycode
|
Name: keycode
|
||||||
Type: KeyCodeEnum
|
Type: KeyCodeEnum
|
||||||
- Name: gameFocused
|
|
||||||
Type: boolean
|
|
||||||
Description: Fires when key has been pressed
|
Description: Fires when key has been pressed
|
||||||
- Name: KeyUp
|
- Name: KeyUp
|
||||||
Arguments:
|
Arguments:
|
||||||
- Name: keycode
|
Name: keycode
|
||||||
Type: KeyCodeEnum
|
Type: KeyCodeEnum
|
||||||
- Name: gameFocused
|
|
||||||
Type: boolean
|
|
||||||
Description: Fires when key has been released
|
Description: Fires when key has been released
|
||||||
- Name: AxisValueChanged
|
- Name: AxisValueChanged
|
||||||
Arguments:
|
Arguments:
|
||||||
|
|||||||
@@ -17,22 +17,15 @@ Properties:
|
|||||||
Description: Determine if children is editable, this is to be used if this
|
Description: Determine if children is editable, this is to be used if this
|
||||||
instance is a Linked model. Only used in creator.
|
instance is a Linked model. Only used in creator.
|
||||||
- Name: Tags
|
- Name: Tags
|
||||||
Type: "{ string }"
|
Type: table
|
||||||
IsAccessibleByScripts: true
|
IsAccessibleByScripts: true
|
||||||
IsReadOnly: false
|
IsReadOnly: false
|
||||||
IsObsolete: false
|
IsObsolete: false
|
||||||
IsStatic: false
|
IsStatic: false
|
||||||
Description: Tags associated with this instance.
|
Description: Tags associated with this instance.
|
||||||
- Name: Archivable
|
|
||||||
Type: boolean
|
|
||||||
IsAccessibleByScripts: true
|
|
||||||
IsReadOnly: false
|
|
||||||
IsObsolete: false
|
|
||||||
IsStatic: false
|
|
||||||
Description: Missing Documentation
|
|
||||||
Methods:
|
Methods:
|
||||||
- Name: GetDescendants
|
- Name: GetDescendants
|
||||||
ReturnType: "{ Instance }"
|
ReturnType: table
|
||||||
Parameters: []
|
Parameters: []
|
||||||
IsAsync: false
|
IsAsync: false
|
||||||
IsObsolete: false
|
IsObsolete: false
|
||||||
@@ -75,28 +68,6 @@ Methods:
|
|||||||
IsObsolete: false
|
IsObsolete: false
|
||||||
IsStatic: false
|
IsStatic: false
|
||||||
Description: Finds a child of this instance by class name.
|
Description: Finds a child of this instance by class name.
|
||||||
- Name: FindChildWithTag
|
|
||||||
ReturnType: Instance
|
|
||||||
Parameters:
|
|
||||||
- Name: tag
|
|
||||||
Type: string
|
|
||||||
IsOptional: false
|
|
||||||
DefaultValue: ""
|
|
||||||
IsAsync: false
|
|
||||||
IsObsolete: false
|
|
||||||
IsStatic: false
|
|
||||||
Description: Missing Documentation
|
|
||||||
- Name: GetChildrenWithTag
|
|
||||||
ReturnType: "{ Instance }"
|
|
||||||
Parameters:
|
|
||||||
- Name: tag
|
|
||||||
Type: string
|
|
||||||
IsOptional: false
|
|
||||||
DefaultValue: ""
|
|
||||||
IsAsync: false
|
|
||||||
IsObsolete: false
|
|
||||||
IsStatic: false
|
|
||||||
Description: Missing Documentation
|
|
||||||
- Name: FindAncestorByClass
|
- Name: FindAncestorByClass
|
||||||
ReturnType: Instance
|
ReturnType: Instance
|
||||||
Parameters:
|
Parameters:
|
||||||
@@ -135,14 +106,14 @@ Methods:
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
Description: Move children to specified index
|
Description: Move children to specified index
|
||||||
- Name: GetChildren
|
- Name: GetChildren
|
||||||
ReturnType: "{ Instance }"
|
ReturnType: table
|
||||||
Parameters: []
|
Parameters: []
|
||||||
IsAsync: false
|
IsAsync: false
|
||||||
IsObsolete: false
|
IsObsolete: false
|
||||||
IsStatic: false
|
IsStatic: false
|
||||||
Description: Gets all children of this instance.
|
Description: Gets all children of this instance.
|
||||||
- Name: GetChildrenOfClass
|
- Name: GetChildrenOfClass
|
||||||
ReturnType: "{ Instance }"
|
ReturnType: table
|
||||||
Parameters:
|
Parameters:
|
||||||
- Name: className
|
- Name: className
|
||||||
Type: string
|
Type: string
|
||||||
|
|||||||
54
yaml/types/InteractionPrompt.yaml
Normal file
54
yaml/types/InteractionPrompt.yaml
Normal file
@@ -0,0 +1,54 @@
|
|||||||
|
Name: InteractionPrompt
|
||||||
|
BaseType: Dynamic
|
||||||
|
Properties:
|
||||||
|
- Name: Title
|
||||||
|
Type: string
|
||||||
|
IsAccessibleByScripts: true
|
||||||
|
IsReadOnly: false
|
||||||
|
IsObsolete: false
|
||||||
|
IsStatic: false
|
||||||
|
Description: WIP
|
||||||
|
- Name: SubTitle
|
||||||
|
Type: string
|
||||||
|
IsAccessibleByScripts: true
|
||||||
|
IsReadOnly: false
|
||||||
|
IsObsolete: false
|
||||||
|
IsStatic: false
|
||||||
|
Description: WIP
|
||||||
|
- Name: HoldDuration
|
||||||
|
Type: number
|
||||||
|
IsAccessibleByScripts: true
|
||||||
|
IsReadOnly: false
|
||||||
|
IsObsolete: false
|
||||||
|
IsStatic: false
|
||||||
|
Description: WIP
|
||||||
|
- Name: Key
|
||||||
|
Type: KeyCodeEnum
|
||||||
|
IsAccessibleByScripts: true
|
||||||
|
IsReadOnly: false
|
||||||
|
IsObsolete: false
|
||||||
|
IsStatic: false
|
||||||
|
Description: WIP
|
||||||
|
- Name: UseDefaultUI
|
||||||
|
Type: boolean
|
||||||
|
IsAccessibleByScripts: true
|
||||||
|
IsReadOnly: false
|
||||||
|
IsObsolete: false
|
||||||
|
IsStatic: false
|
||||||
|
Description: WIP
|
||||||
|
Methods: []
|
||||||
|
Events:
|
||||||
|
- Name: Triggered
|
||||||
|
Arguments: ""
|
||||||
|
Description: WIP
|
||||||
|
- Name: TriggerStarted
|
||||||
|
Arguments: ""
|
||||||
|
Description: WIP
|
||||||
|
- Name: TriggerReleased
|
||||||
|
Arguments: ""
|
||||||
|
Description: WIP
|
||||||
|
IsStatic: false
|
||||||
|
IsAbstract: false
|
||||||
|
IsInstantiatable: true
|
||||||
|
StaticAlias: null
|
||||||
|
Description: WIP class, not functional yet
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
Name: Inventory
|
Name: Inventory
|
||||||
BaseType: HiddenBase
|
BaseType: Hidden
|
||||||
Properties: []
|
Properties: []
|
||||||
Methods: []
|
Methods: []
|
||||||
Events: []
|
Events: []
|
||||||
|
|||||||
@@ -64,13 +64,6 @@ Properties:
|
|||||||
IsObsolete: false
|
IsObsolete: false
|
||||||
IsStatic: false
|
IsStatic: false
|
||||||
Description: Indicates whether an animation is currently playing on the mesh.
|
Description: Indicates whether an animation is currently playing on the mesh.
|
||||||
- Name: Loading
|
|
||||||
Type: boolean
|
|
||||||
IsAccessibleByScripts: true
|
|
||||||
IsReadOnly: true
|
|
||||||
IsObsolete: false
|
|
||||||
IsStatic: false
|
|
||||||
Description: Missing Documentation
|
|
||||||
Methods:
|
Methods:
|
||||||
- Name: PlayAnimation
|
- Name: PlayAnimation
|
||||||
ReturnType: nil
|
ReturnType: nil
|
||||||
@@ -103,23 +96,20 @@ Methods:
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
Description: Stops the specified animation on the mesh.
|
Description: Stops the specified animation on the mesh.
|
||||||
- Name: GetAnimations
|
- Name: GetAnimations
|
||||||
ReturnType: "{ string }"
|
ReturnType: table
|
||||||
Parameters: []
|
Parameters: []
|
||||||
IsAsync: false
|
IsAsync: false
|
||||||
IsObsolete: false
|
IsObsolete: false
|
||||||
IsStatic: false
|
IsStatic: false
|
||||||
Description: Gets a list of all animations available on the mesh.
|
Description: Gets a list of all animations available on the mesh.
|
||||||
- Name: GetAnimationInfo
|
- Name: GetAnimationInfo
|
||||||
ReturnType: "{ MeshAnimationInfo }"
|
ReturnType: table
|
||||||
Parameters: []
|
Parameters: []
|
||||||
IsAsync: false
|
IsAsync: false
|
||||||
IsObsolete: false
|
IsObsolete: false
|
||||||
IsStatic: false
|
IsStatic: false
|
||||||
Description: Missing Documentation
|
Description: Missing Documentation
|
||||||
Events:
|
Events: []
|
||||||
- Name: Loaded
|
|
||||||
Arguments: ""
|
|
||||||
Description: Missing Documentation
|
|
||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: true
|
IsInstantiatable: true
|
||||||
|
|||||||
@@ -1,10 +0,0 @@
|
|||||||
Name: MissingInstance
|
|
||||||
BaseType: Instance
|
|
||||||
Properties: []
|
|
||||||
Methods: []
|
|
||||||
Events: []
|
|
||||||
IsStatic: false
|
|
||||||
IsAbstract: false
|
|
||||||
IsInstantiatable: false
|
|
||||||
StaticAlias: null
|
|
||||||
Description: Missing Documentation
|
|
||||||
@@ -50,13 +50,6 @@ Properties:
|
|||||||
IsObsolete: false
|
IsObsolete: false
|
||||||
IsStatic: false
|
IsStatic: false
|
||||||
Description: Determines the offset position of the NPC's nametag.
|
Description: Determines the offset position of the NPC's nametag.
|
||||||
- Name: NametagVisibleRadius
|
|
||||||
Type: number
|
|
||||||
IsAccessibleByScripts: true
|
|
||||||
IsReadOnly: false
|
|
||||||
IsObsolete: false
|
|
||||||
IsStatic: false
|
|
||||||
Description: Missing Documentation
|
|
||||||
- Name: DisplayName
|
- Name: DisplayName
|
||||||
Type: string
|
Type: string
|
||||||
IsAccessibleByScripts: true
|
IsAccessibleByScripts: true
|
||||||
|
|||||||
@@ -122,21 +122,6 @@ Methods:
|
|||||||
IsObsolete: false
|
IsObsolete: false
|
||||||
IsStatic: false
|
IsStatic: false
|
||||||
Description: Adds an Instance value to the message with the specified key.
|
Description: Adds an Instance value to the message with the specified key.
|
||||||
- Name: AddBuffer
|
|
||||||
ReturnType: nil
|
|
||||||
Parameters:
|
|
||||||
- Name: key
|
|
||||||
Type: string
|
|
||||||
IsOptional: false
|
|
||||||
DefaultValue: ""
|
|
||||||
- Name: buffer
|
|
||||||
Type: buffer
|
|
||||||
IsOptional: false
|
|
||||||
DefaultValue: ""
|
|
||||||
IsAsync: false
|
|
||||||
IsObsolete: false
|
|
||||||
IsStatic: false
|
|
||||||
Description: Missing Documentation
|
|
||||||
- Name: GetString
|
- Name: GetString
|
||||||
ReturnType: string
|
ReturnType: string
|
||||||
Parameters:
|
Parameters:
|
||||||
@@ -225,17 +210,6 @@ Methods:
|
|||||||
IsObsolete: false
|
IsObsolete: false
|
||||||
IsStatic: false
|
IsStatic: false
|
||||||
Description: Gets an Instance value from the message with the specified key.
|
Description: Gets an Instance value from the message with the specified key.
|
||||||
- Name: GetBuffer
|
|
||||||
ReturnType: buffer
|
|
||||||
Parameters:
|
|
||||||
- Name: key
|
|
||||||
Type: string
|
|
||||||
IsOptional: false
|
|
||||||
DefaultValue: ""
|
|
||||||
IsAsync: false
|
|
||||||
IsObsolete: false
|
|
||||||
IsStatic: false
|
|
||||||
Description: Missing Documentation
|
|
||||||
- Name: New
|
- Name: New
|
||||||
ReturnType: NetMessage
|
ReturnType: NetMessage
|
||||||
Parameters: []
|
Parameters: []
|
||||||
|
|||||||
@@ -16,8 +16,8 @@ Methods:
|
|||||||
Parameters:
|
Parameters:
|
||||||
- Name: msg
|
- Name: msg
|
||||||
Type: NetMessage
|
Type: NetMessage
|
||||||
IsOptional: true
|
IsOptional: false
|
||||||
DefaultValue: null
|
DefaultValue: ""
|
||||||
- Name: _
|
- Name: _
|
||||||
Type: any
|
Type: any
|
||||||
IsOptional: true
|
IsOptional: true
|
||||||
@@ -31,12 +31,12 @@ Methods:
|
|||||||
Parameters:
|
Parameters:
|
||||||
- Name: msg
|
- Name: msg
|
||||||
Type: NetMessage
|
Type: NetMessage
|
||||||
IsOptional: true
|
IsOptional: false
|
||||||
DefaultValue: null
|
DefaultValue: ""
|
||||||
- Name: player
|
- Name: player
|
||||||
Type: Player
|
Type: Player
|
||||||
IsOptional: true
|
IsOptional: false
|
||||||
DefaultValue: null
|
DefaultValue: ""
|
||||||
IsAsync: false
|
IsAsync: false
|
||||||
IsObsolete: false
|
IsObsolete: false
|
||||||
IsStatic: false
|
IsStatic: false
|
||||||
@@ -46,8 +46,8 @@ Methods:
|
|||||||
Parameters:
|
Parameters:
|
||||||
- Name: msg
|
- Name: msg
|
||||||
Type: NetMessage
|
Type: NetMessage
|
||||||
IsOptional: true
|
IsOptional: false
|
||||||
DefaultValue: null
|
DefaultValue: ""
|
||||||
IsAsync: false
|
IsAsync: false
|
||||||
IsObsolete: false
|
IsObsolete: false
|
||||||
IsStatic: false
|
IsStatic: false
|
||||||
@@ -62,6 +62,8 @@ Events:
|
|||||||
Description: Fires when server receives message from client
|
Description: Fires when server receives message from client
|
||||||
- Name: InvokedClient
|
- Name: InvokedClient
|
||||||
Arguments:
|
Arguments:
|
||||||
|
- Name: sender
|
||||||
|
Type: nil
|
||||||
- Name: msg
|
- Name: msg
|
||||||
Type: NetMessage
|
Type: NetMessage
|
||||||
Description: Fires when client receives message from server
|
Description: Fires when client receives message from server
|
||||||
|
|||||||
@@ -27,7 +27,7 @@ Methods:
|
|||||||
- Name: __tostring
|
- Name: __tostring
|
||||||
ReturnType: string
|
ReturnType: string
|
||||||
Parameters:
|
Parameters:
|
||||||
- Name: _
|
- Name: signal
|
||||||
Type: PTSignal
|
Type: PTSignal
|
||||||
IsOptional: false
|
IsOptional: false
|
||||||
DefaultValue: ""
|
DefaultValue: ""
|
||||||
|
|||||||
@@ -1,16 +1,9 @@
|
|||||||
Name: Particles
|
Name: Particles
|
||||||
BaseType: Dynamic
|
BaseType: Dynamic
|
||||||
Properties:
|
Properties:
|
||||||
- Name: Playing
|
|
||||||
Type: boolean
|
|
||||||
IsAccessibleByScripts: true
|
|
||||||
IsReadOnly: false
|
|
||||||
IsObsolete: false
|
|
||||||
IsStatic: false
|
|
||||||
Description: Missing Documentation
|
|
||||||
- Name: Image
|
- Name: Image
|
||||||
Type: ImageAsset
|
Type: ImageAsset
|
||||||
IsAccessibleByScripts: true
|
IsAccessibleByScripts: false
|
||||||
IsReadOnly: false
|
IsReadOnly: false
|
||||||
IsObsolete: false
|
IsObsolete: false
|
||||||
IsStatic: false
|
IsStatic: false
|
||||||
@@ -37,61 +30,12 @@ Properties:
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
Description: Determines the number of particles emitted.
|
Description: Determines the number of particles emitted.
|
||||||
- Name: Gravity
|
- Name: Gravity
|
||||||
Type: Vector3
|
Type: number
|
||||||
IsAccessibleByScripts: true
|
IsAccessibleByScripts: true
|
||||||
IsReadOnly: false
|
IsReadOnly: false
|
||||||
IsObsolete: false
|
IsObsolete: false
|
||||||
IsStatic: false
|
IsStatic: false
|
||||||
Description: Determines the gravity effect applied to the particles.
|
Description: Determines the gravity effect applied to the particles.
|
||||||
- Name: VelocityDirection
|
|
||||||
Type: Vector3
|
|
||||||
IsAccessibleByScripts: true
|
|
||||||
IsReadOnly: false
|
|
||||||
IsObsolete: false
|
|
||||||
IsStatic: false
|
|
||||||
Description: Missing Documentation
|
|
||||||
- Name: InitialVelocity
|
|
||||||
Type: NumberRange
|
|
||||||
IsAccessibleByScripts: true
|
|
||||||
IsReadOnly: false
|
|
||||||
IsObsolete: false
|
|
||||||
IsStatic: false
|
|
||||||
Description: Missing Documentation
|
|
||||||
- Name: Spread
|
|
||||||
Type: number
|
|
||||||
IsAccessibleByScripts: true
|
|
||||||
IsReadOnly: false
|
|
||||||
IsObsolete: false
|
|
||||||
IsStatic: false
|
|
||||||
Description: Missing Documentation
|
|
||||||
- Name: Flatness
|
|
||||||
Type: number
|
|
||||||
IsAccessibleByScripts: true
|
|
||||||
IsReadOnly: false
|
|
||||||
IsObsolete: false
|
|
||||||
IsStatic: false
|
|
||||||
Description: Missing Documentation
|
|
||||||
- Name: Scale
|
|
||||||
Type: NumberRange
|
|
||||||
IsAccessibleByScripts: true
|
|
||||||
IsReadOnly: false
|
|
||||||
IsObsolete: false
|
|
||||||
IsStatic: false
|
|
||||||
Description: Missing Documentation
|
|
||||||
- Name: HueVariation
|
|
||||||
Type: NumberRange
|
|
||||||
IsAccessibleByScripts: true
|
|
||||||
IsReadOnly: false
|
|
||||||
IsObsolete: false
|
|
||||||
IsStatic: false
|
|
||||||
Description: Missing Documentation
|
|
||||||
- Name: BlendMode
|
|
||||||
Type: BlendModeEnum
|
|
||||||
IsAccessibleByScripts: true
|
|
||||||
IsReadOnly: false
|
|
||||||
IsObsolete: false
|
|
||||||
IsStatic: false
|
|
||||||
Description: Missing Documentation
|
|
||||||
- Name: Shaded
|
- Name: Shaded
|
||||||
Type: boolean
|
Type: boolean
|
||||||
IsAccessibleByScripts: true
|
IsAccessibleByScripts: true
|
||||||
@@ -99,27 +43,13 @@ Properties:
|
|||||||
IsObsolete: false
|
IsObsolete: false
|
||||||
IsStatic: false
|
IsStatic: false
|
||||||
Description: Determines whether the particles are shaded.
|
Description: Determines whether the particles are shaded.
|
||||||
- Name: EmissionShape
|
- Name: Autoplay
|
||||||
Type: ParticleEmissionShapeEnum
|
Type: boolean
|
||||||
IsAccessibleByScripts: true
|
IsAccessibleByScripts: true
|
||||||
IsReadOnly: false
|
IsReadOnly: false
|
||||||
IsObsolete: false
|
IsObsolete: false
|
||||||
IsStatic: false
|
IsStatic: false
|
||||||
Description: Missing Documentation
|
Description: Determines whether the particle system plays automatically.
|
||||||
- Name: EmissionShapeScale
|
|
||||||
Type: Vector3
|
|
||||||
IsAccessibleByScripts: true
|
|
||||||
IsReadOnly: false
|
|
||||||
IsObsolete: false
|
|
||||||
IsStatic: false
|
|
||||||
Description: Missing Documentation
|
|
||||||
- Name: SimulationSpace
|
|
||||||
Type: ParticleSimulationSpaceEnum
|
|
||||||
IsAccessibleByScripts: true
|
|
||||||
IsReadOnly: false
|
|
||||||
IsObsolete: false
|
|
||||||
IsStatic: false
|
|
||||||
Description: Missing Documentation
|
|
||||||
Methods:
|
Methods:
|
||||||
- Name: Play
|
- Name: Play
|
||||||
ReturnType: nil
|
ReturnType: nil
|
||||||
|
|||||||
@@ -42,7 +42,7 @@ Methods:
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
Description: Sets the network authority of this object to the specified player.
|
Description: Sets the network authority of this object to the specified player.
|
||||||
- Name: GetTouching
|
- Name: GetTouching
|
||||||
ReturnType: "{ Physical }"
|
ReturnType: table
|
||||||
Parameters: []
|
Parameters: []
|
||||||
IsAsync: false
|
IsAsync: false
|
||||||
IsObsolete: false
|
IsObsolete: false
|
||||||
|
|||||||
@@ -43,7 +43,7 @@ Methods:
|
|||||||
ReturnType: nil
|
ReturnType: nil
|
||||||
Parameters:
|
Parameters:
|
||||||
- Name: plrs
|
- Name: plrs
|
||||||
Type: "{ Player }"
|
Type: table
|
||||||
IsOptional: false
|
IsOptional: false
|
||||||
DefaultValue: ""
|
DefaultValue: ""
|
||||||
- Name: to
|
- Name: to
|
||||||
@@ -73,7 +73,7 @@ Methods:
|
|||||||
ReturnType: nil
|
ReturnType: nil
|
||||||
Parameters:
|
Parameters:
|
||||||
- Name: players
|
- Name: players
|
||||||
Type: "{ Player }"
|
Type: table
|
||||||
IsOptional: false
|
IsOptional: false
|
||||||
DefaultValue: ""
|
DefaultValue: ""
|
||||||
- Name: accessID
|
- Name: accessID
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
Name: PlayerDefaults
|
Name: PlayerDefaults
|
||||||
BaseType: HiddenBase
|
BaseType: Hidden
|
||||||
Properties:
|
Properties:
|
||||||
- Name: MaxHealth
|
- Name: MaxHealth
|
||||||
Type: number
|
Type: number
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ Properties:
|
|||||||
Description: The number of players currently in the game.
|
Description: The number of players currently in the game.
|
||||||
Methods:
|
Methods:
|
||||||
- Name: GetPlayers
|
- Name: GetPlayers
|
||||||
ReturnType: "{ Player }"
|
ReturnType: table
|
||||||
Parameters: []
|
Parameters: []
|
||||||
IsAsync: false
|
IsAsync: false
|
||||||
IsObsolete: false
|
IsObsolete: false
|
||||||
|
|||||||
@@ -131,10 +131,6 @@ Methods:
|
|||||||
Type: number
|
Type: number
|
||||||
IsOptional: false
|
IsOptional: false
|
||||||
DefaultValue: ""
|
DefaultValue: ""
|
||||||
- Name: loadTool
|
|
||||||
Type: boolean
|
|
||||||
IsOptional: true
|
|
||||||
DefaultValue: "True"
|
|
||||||
IsAsync: false
|
IsAsync: false
|
||||||
IsObsolete: false
|
IsObsolete: false
|
||||||
IsStatic: false
|
IsStatic: false
|
||||||
@@ -160,18 +156,7 @@ Methods:
|
|||||||
IsAsync: false
|
IsAsync: false
|
||||||
IsObsolete: false
|
IsObsolete: false
|
||||||
IsStatic: false
|
IsStatic: false
|
||||||
Description: Missing Documentation
|
Description: Set Bone override mode
|
||||||
- Name: SetAnimationOverrideTo
|
|
||||||
ReturnType: nil
|
|
||||||
Parameters:
|
|
||||||
- Name: to
|
|
||||||
Type: boolean
|
|
||||||
IsOptional: false
|
|
||||||
DefaultValue: ""
|
|
||||||
IsAsync: false
|
|
||||||
IsObsolete: false
|
|
||||||
IsStatic: false
|
|
||||||
Description: Missing Documentation
|
|
||||||
- Name: SetBoneOverridePosition
|
- Name: SetBoneOverridePosition
|
||||||
ReturnType: nil
|
ReturnType: nil
|
||||||
Parameters:
|
Parameters:
|
||||||
@@ -186,7 +171,7 @@ Methods:
|
|||||||
IsAsync: false
|
IsAsync: false
|
||||||
IsObsolete: false
|
IsObsolete: false
|
||||||
IsStatic: false
|
IsStatic: false
|
||||||
Description: Missing Documentation
|
Description: Set bone override position
|
||||||
- Name: SetBoneOverrideRotation
|
- Name: SetBoneOverrideRotation
|
||||||
ReturnType: nil
|
ReturnType: nil
|
||||||
Parameters:
|
Parameters:
|
||||||
@@ -201,7 +186,7 @@ Methods:
|
|||||||
IsAsync: false
|
IsAsync: false
|
||||||
IsObsolete: false
|
IsObsolete: false
|
||||||
IsStatic: false
|
IsStatic: false
|
||||||
Description: Missing Documentation
|
Description: Set bone override rotation
|
||||||
- Name: GetBoneOverridePosition
|
- Name: GetBoneOverridePosition
|
||||||
ReturnType: Vector3
|
ReturnType: Vector3
|
||||||
Parameters:
|
Parameters:
|
||||||
@@ -212,7 +197,7 @@ Methods:
|
|||||||
IsAsync: false
|
IsAsync: false
|
||||||
IsObsolete: false
|
IsObsolete: false
|
||||||
IsStatic: false
|
IsStatic: false
|
||||||
Description: Missing Documentation
|
Description: Get bone override position
|
||||||
- Name: GetBoneOverrideRotation
|
- Name: GetBoneOverrideRotation
|
||||||
ReturnType: Vector3
|
ReturnType: Vector3
|
||||||
Parameters:
|
Parameters:
|
||||||
@@ -223,7 +208,7 @@ Methods:
|
|||||||
IsAsync: false
|
IsAsync: false
|
||||||
IsObsolete: false
|
IsObsolete: false
|
||||||
IsStatic: false
|
IsStatic: false
|
||||||
Description: Missing Documentation
|
Description: Get bone override rotation
|
||||||
Events:
|
Events:
|
||||||
- Name: RagdollStarted
|
- Name: RagdollStarted
|
||||||
Arguments: ""
|
Arguments: ""
|
||||||
|
|||||||
@@ -2,8 +2,8 @@ Name: PurchasesService
|
|||||||
BaseType: Instance
|
BaseType: Instance
|
||||||
Properties: []
|
Properties: []
|
||||||
Methods:
|
Methods:
|
||||||
- Name: PromptAsync
|
- Name: Prompt
|
||||||
ReturnType: boolean
|
ReturnType: nil
|
||||||
Parameters:
|
Parameters:
|
||||||
- Name: player
|
- Name: player
|
||||||
Type: Player
|
Type: Player
|
||||||
@@ -13,10 +13,10 @@ Methods:
|
|||||||
Type: number
|
Type: number
|
||||||
IsOptional: false
|
IsOptional: false
|
||||||
DefaultValue: ""
|
DefaultValue: ""
|
||||||
IsAsync: true
|
IsAsync: false
|
||||||
IsObsolete: false
|
IsObsolete: false
|
||||||
IsStatic: false
|
IsStatic: false
|
||||||
Description: Missing Documentation
|
Description: Prompts the specified player to purchase the asset with the given asset ID.
|
||||||
- Name: OwnsItemAsync
|
- Name: OwnsItemAsync
|
||||||
ReturnType: boolean
|
ReturnType: boolean
|
||||||
Parameters:
|
Parameters:
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ BaseType: Instance
|
|||||||
Properties:
|
Properties:
|
||||||
- Name: Source
|
- Name: Source
|
||||||
Type: string
|
Type: string
|
||||||
IsAccessibleByScripts: true
|
IsAccessibleByScripts: false
|
||||||
IsReadOnly: false
|
IsReadOnly: false
|
||||||
IsObsolete: false
|
IsObsolete: false
|
||||||
IsStatic: false
|
IsStatic: false
|
||||||
@@ -14,7 +14,7 @@ Properties:
|
|||||||
IsReadOnly: false
|
IsReadOnly: false
|
||||||
IsObsolete: false
|
IsObsolete: false
|
||||||
IsStatic: false
|
IsStatic: false
|
||||||
Description: Missing Documentation
|
Description: Determine if this script should run, can be set to false in runtime to stop running script when it yields.
|
||||||
- Name: LinkedScript
|
- Name: LinkedScript
|
||||||
Type: FileLinkAsset
|
Type: FileLinkAsset
|
||||||
IsAccessibleByScripts: false
|
IsAccessibleByScripts: false
|
||||||
@@ -60,17 +60,6 @@ Methods:
|
|||||||
IsObsolete: false
|
IsObsolete: false
|
||||||
IsStatic: false
|
IsStatic: false
|
||||||
Description: Calls a function in the script asynchronously with the given arguments.
|
Description: Calls a function in the script asynchronously with the given arguments.
|
||||||
- Name: LinkWithScriptFile
|
|
||||||
ReturnType: nil
|
|
||||||
Parameters:
|
|
||||||
- Name: scriptPath
|
|
||||||
Type: string
|
|
||||||
IsOptional: false
|
|
||||||
DefaultValue: ""
|
|
||||||
IsAsync: false
|
|
||||||
IsObsolete: false
|
|
||||||
IsStatic: false
|
|
||||||
Description: Missing Documentation
|
|
||||||
Events: []
|
Events: []
|
||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: true
|
IsAbstract: true
|
||||||
|
|||||||
@@ -2,46 +2,6 @@ Name: ScriptSharedTable
|
|||||||
BaseType: null
|
BaseType: null
|
||||||
Properties: []
|
Properties: []
|
||||||
Methods:
|
Methods:
|
||||||
- Name: Clear
|
|
||||||
ReturnType: nil
|
|
||||||
Parameters: []
|
|
||||||
IsAsync: false
|
|
||||||
IsObsolete: false
|
|
||||||
IsStatic: false
|
|
||||||
Description: Missing Documentation
|
|
||||||
- Name: Remove
|
|
||||||
ReturnType: nil
|
|
||||||
Parameters:
|
|
||||||
- Name: key
|
|
||||||
Type: string
|
|
||||||
IsOptional: false
|
|
||||||
DefaultValue: ""
|
|
||||||
IsAsync: false
|
|
||||||
IsObsolete: false
|
|
||||||
IsStatic: false
|
|
||||||
Description: Missing Documentation
|
|
||||||
- Name: ClearPrefix
|
|
||||||
ReturnType: nil
|
|
||||||
Parameters:
|
|
||||||
- Name: prefix
|
|
||||||
Type: string
|
|
||||||
IsOptional: false
|
|
||||||
DefaultValue: ""
|
|
||||||
IsAsync: false
|
|
||||||
IsObsolete: false
|
|
||||||
IsStatic: false
|
|
||||||
Description: Missing Documentation
|
|
||||||
- Name: ClearSuffix
|
|
||||||
ReturnType: nil
|
|
||||||
Parameters:
|
|
||||||
- Name: suffix
|
|
||||||
Type: string
|
|
||||||
IsOptional: false
|
|
||||||
DefaultValue: ""
|
|
||||||
IsAsync: false
|
|
||||||
IsObsolete: false
|
|
||||||
IsStatic: false
|
|
||||||
Description: Missing Documentation
|
|
||||||
- Name: __index
|
- Name: __index
|
||||||
ReturnType: any
|
ReturnType: any
|
||||||
Parameters:
|
Parameters:
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
Name: ServerHidden
|
Name: ServerHidden
|
||||||
BaseType: HiddenBase
|
BaseType: Hidden
|
||||||
Properties: []
|
Properties: []
|
||||||
Methods: []
|
Methods: []
|
||||||
Events: []
|
Events: []
|
||||||
|
|||||||
@@ -1,10 +0,0 @@
|
|||||||
Name: SocialService
|
|
||||||
BaseType: Instance
|
|
||||||
Properties: []
|
|
||||||
Methods: []
|
|
||||||
Events: []
|
|
||||||
IsStatic: true
|
|
||||||
IsAbstract: false
|
|
||||||
IsInstantiatable: false
|
|
||||||
StaticAlias: Social
|
|
||||||
Description: Missing Documentation
|
|
||||||
@@ -50,7 +50,7 @@ Properties:
|
|||||||
IsReadOnly: false
|
IsReadOnly: false
|
||||||
IsObsolete: false
|
IsObsolete: false
|
||||||
IsStatic: false
|
IsStatic: false
|
||||||
Description: Missing Documentation
|
Description: Determines if this sound is paused
|
||||||
- Name: MaxDistance
|
- Name: MaxDistance
|
||||||
Type: number
|
Type: number
|
||||||
IsAccessibleByScripts: true
|
IsAccessibleByScripts: true
|
||||||
@@ -112,7 +112,7 @@ Methods:
|
|||||||
IsAsync: false
|
IsAsync: false
|
||||||
IsObsolete: false
|
IsObsolete: false
|
||||||
IsStatic: false
|
IsStatic: false
|
||||||
Description: Missing Documentation
|
Description: Pause the sound if it is currently playing.
|
||||||
- Name: Stop
|
- Name: Stop
|
||||||
ReturnType: nil
|
ReturnType: nil
|
||||||
Parameters: []
|
Parameters: []
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
Name: Temporary
|
Name: Temporary
|
||||||
BaseType: ServerHidden
|
BaseType: Hidden
|
||||||
Properties: []
|
Properties: []
|
||||||
Methods: []
|
Methods: []
|
||||||
Events: []
|
Events: []
|
||||||
|
|||||||
@@ -210,29 +210,6 @@ Methods:
|
|||||||
IsObsolete: false
|
IsObsolete: false
|
||||||
IsStatic: false
|
IsStatic: false
|
||||||
Description: Tweens a Vector3 between two specified values.
|
Description: Tweens a Vector3 between two specified values.
|
||||||
- Name: TweenQuaternion
|
|
||||||
ReturnType: nil
|
|
||||||
Parameters:
|
|
||||||
- Name: from
|
|
||||||
Type: Quaternion
|
|
||||||
IsOptional: false
|
|
||||||
DefaultValue: ""
|
|
||||||
- Name: to
|
|
||||||
Type: Quaternion
|
|
||||||
IsOptional: false
|
|
||||||
DefaultValue: ""
|
|
||||||
- Name: time
|
|
||||||
Type: number
|
|
||||||
IsOptional: false
|
|
||||||
DefaultValue: ""
|
|
||||||
- Name: callback
|
|
||||||
Type: function
|
|
||||||
IsOptional: false
|
|
||||||
DefaultValue: ""
|
|
||||||
IsAsync: false
|
|
||||||
IsObsolete: false
|
|
||||||
IsStatic: false
|
|
||||||
Description: Missing Documentation
|
|
||||||
- Name: Play
|
- Name: Play
|
||||||
ReturnType: nil
|
ReturnType: nil
|
||||||
Parameters: []
|
Parameters: []
|
||||||
|
|||||||
@@ -77,21 +77,14 @@ Properties:
|
|||||||
IsReadOnly: false
|
IsReadOnly: false
|
||||||
IsObsolete: false
|
IsObsolete: false
|
||||||
IsStatic: false
|
IsStatic: false
|
||||||
Description: Missing Documentation
|
Description: If true, this UI field can grab the UI focus via cursor.
|
||||||
- Name: ZIndex
|
- Name: ZIndex
|
||||||
Type: number
|
Type: number
|
||||||
IsAccessibleByScripts: true
|
IsAccessibleByScripts: true
|
||||||
IsReadOnly: false
|
IsReadOnly: false
|
||||||
IsObsolete: false
|
IsObsolete: false
|
||||||
IsStatic: false
|
IsStatic: false
|
||||||
Description: Missing Documentation
|
Description: The Z-Index layer value
|
||||||
- Name: AbsolutePosition
|
|
||||||
Type: Vector2
|
|
||||||
IsAccessibleByScripts: true
|
|
||||||
IsReadOnly: true
|
|
||||||
IsObsolete: false
|
|
||||||
IsStatic: false
|
|
||||||
Description: Missing Documentation
|
|
||||||
- Name: AbsoluteSize
|
- Name: AbsoluteSize
|
||||||
Type: Vector2
|
Type: Vector2
|
||||||
IsAccessibleByScripts: true
|
IsAccessibleByScripts: true
|
||||||
|
|||||||
@@ -90,12 +90,6 @@ Events:
|
|||||||
Name: text
|
Name: text
|
||||||
Type: string
|
Type: string
|
||||||
Description: Fires when user changed the text
|
Description: Fires when user changed the text
|
||||||
- Name: FocusEnter
|
|
||||||
Arguments: ""
|
|
||||||
Description: Missing Documentation
|
|
||||||
- Name: FocusExit
|
|
||||||
Arguments: ""
|
|
||||||
Description: Missing Documentation
|
|
||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: true
|
IsInstantiatable: true
|
||||||
|
|||||||
@@ -1,52 +1,52 @@
|
|||||||
Name: GradientImageAsset
|
Name: Vehicle
|
||||||
BaseType: ImageAsset
|
BaseType: PhysicalModel
|
||||||
Properties:
|
Properties:
|
||||||
- Name: Series
|
- Name: MaxSpeed
|
||||||
Type: ColorSeries
|
|
||||||
IsAccessibleByScripts: true
|
|
||||||
IsReadOnly: false
|
|
||||||
IsObsolete: false
|
|
||||||
IsStatic: false
|
|
||||||
Description: Missing Documentation
|
|
||||||
- Name: Width
|
|
||||||
Type: number
|
Type: number
|
||||||
IsAccessibleByScripts: true
|
IsAccessibleByScripts: true
|
||||||
IsReadOnly: false
|
IsReadOnly: false
|
||||||
IsObsolete: false
|
IsObsolete: false
|
||||||
IsStatic: false
|
IsStatic: false
|
||||||
Description: Missing Documentation
|
Description: Determines the forward force limit in kg/s.
|
||||||
- Name: Height
|
- Name: SteerLimit
|
||||||
Type: number
|
Type: number
|
||||||
IsAccessibleByScripts: true
|
IsAccessibleByScripts: true
|
||||||
IsReadOnly: false
|
IsReadOnly: false
|
||||||
IsObsolete: false
|
IsObsolete: false
|
||||||
IsStatic: false
|
IsStatic: false
|
||||||
Description: Missing Documentation
|
Description: Determines the steering limit in degrees.
|
||||||
- Name: Fill
|
- Name: Force
|
||||||
Type: GradientImageFillEnum
|
Type: number
|
||||||
IsAccessibleByScripts: true
|
IsAccessibleByScripts: true
|
||||||
IsReadOnly: false
|
IsReadOnly: false
|
||||||
IsObsolete: false
|
IsObsolete: false
|
||||||
IsStatic: false
|
IsStatic: false
|
||||||
Description: Missing Documentation
|
Description: Determines the forward force in kg/s.
|
||||||
- Name: FillFrom
|
- Name: Brake
|
||||||
Type: Vector2
|
Type: number
|
||||||
IsAccessibleByScripts: true
|
IsAccessibleByScripts: true
|
||||||
IsReadOnly: false
|
IsReadOnly: false
|
||||||
IsObsolete: false
|
IsObsolete: false
|
||||||
IsStatic: false
|
IsStatic: false
|
||||||
Description: Missing Documentation
|
Description: Determines the break amount in kg/s.
|
||||||
- Name: FillTo
|
- Name: Steering
|
||||||
Type: Vector2
|
Type: number
|
||||||
IsAccessibleByScripts: true
|
IsAccessibleByScripts: true
|
||||||
IsReadOnly: false
|
IsReadOnly: false
|
||||||
IsObsolete: false
|
IsObsolete: false
|
||||||
IsStatic: false
|
IsStatic: false
|
||||||
Description: Missing Documentation
|
Description: Determines the steering angle in degrees
|
||||||
|
- Name: Driver
|
||||||
|
Type: Player
|
||||||
|
IsAccessibleByScripts: true
|
||||||
|
IsReadOnly: false
|
||||||
|
IsObsolete: false
|
||||||
|
IsStatic: false
|
||||||
|
Description: Determines the current driver of this vehicle.
|
||||||
Methods: []
|
Methods: []
|
||||||
Events: []
|
Events: []
|
||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: true
|
IsInstantiatable: true
|
||||||
StaticAlias: null
|
StaticAlias: null
|
||||||
Description: Missing Documentation
|
Description: Vehicle class represents a vehicle that can be driven by a player
|
||||||
10
yaml/types/VehicleSeat.yaml
Normal file
10
yaml/types/VehicleSeat.yaml
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
Name: VehicleSeat
|
||||||
|
BaseType: Seat
|
||||||
|
Properties: []
|
||||||
|
Methods: []
|
||||||
|
Events: []
|
||||||
|
IsStatic: false
|
||||||
|
IsAbstract: false
|
||||||
|
IsInstantiatable: true
|
||||||
|
StaticAlias: null
|
||||||
|
Description: A seat for Vehicle
|
||||||
31
yaml/types/VehicleWheel.yaml
Normal file
31
yaml/types/VehicleWheel.yaml
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
Name: VehicleWheel
|
||||||
|
BaseType: Dynamic
|
||||||
|
Properties:
|
||||||
|
- Name: UseForTraction
|
||||||
|
Type: boolean
|
||||||
|
IsAccessibleByScripts: true
|
||||||
|
IsReadOnly: false
|
||||||
|
IsObsolete: false
|
||||||
|
IsStatic: false
|
||||||
|
Description: Determines if this wheel should be used for traction.
|
||||||
|
- Name: UseForSteering
|
||||||
|
Type: boolean
|
||||||
|
IsAccessibleByScripts: true
|
||||||
|
IsReadOnly: false
|
||||||
|
IsObsolete: false
|
||||||
|
IsStatic: false
|
||||||
|
Description: Determines if this wheel should be used for steering.
|
||||||
|
- Name: Radius
|
||||||
|
Type: number
|
||||||
|
IsAccessibleByScripts: true
|
||||||
|
IsReadOnly: false
|
||||||
|
IsObsolete: false
|
||||||
|
IsStatic: false
|
||||||
|
Description: Determines the radius for this wheel.
|
||||||
|
Methods: []
|
||||||
|
Events: []
|
||||||
|
IsStatic: false
|
||||||
|
IsAbstract: false
|
||||||
|
IsInstantiatable: true
|
||||||
|
StaticAlias: null
|
||||||
|
Description: A wheel for the vehicle
|
||||||
Reference in New Issue
Block a user