2.0.0-beta46

This commit is contained in:
maji
2026-01-24 22:18:09 +07:00
parent aa032aff3d
commit ca19c86476
14 changed files with 237 additions and 24 deletions

View File

@@ -0,0 +1,42 @@
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: CreateToolItem
ReturnType: AddonToolItem
Parameters:
- Name: txt
Type: string
IsOptional: false
DefaultValue: ""
IsAsync: false
IsObsolete: false
IsStatic: false
Description: Missing Documentation
Events: []
IsStatic: false
IsAbstract: false
IsInstantiatable: false
StaticAlias: null
Description: Missing Documentation

View File

@@ -0,0 +1,13 @@
Name: AddonToolItem
BaseType: null
Properties: []
Methods: []
Events:
- Name: Pressed
Arguments: ""
Description: Missing Documentation
IsStatic: false
IsAbstract: false
IsInstantiatable: false
StaticAlias: null
Description: Missing Documentation

View File

@@ -0,0 +1,21 @@
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

View File

@@ -43,9 +43,9 @@ Methods:
IsStatic: false
Description: Commit the current action
Events: []
IsStatic: false
IsStatic: true
IsAbstract: false
IsInstantiatable: false
StaticAlias: null
StaticAlias: History
Description: CreatorHistory is a class that manages history (undo-redo) of this
game instance. This class is only available in the creator.

View File

@@ -64,10 +64,16 @@ Methods:
IsObsolete: false
IsStatic: false
Description: Check if instance has been selected
Events: []
IsStatic: false
Events:
- Name: Selected
Arguments: ""
Description: Missing Documentation
- Name: Deselected
Arguments: ""
Description: Missing Documentation
IsStatic: true
IsAbstract: false
IsInstantiatable: false
StaticAlias: null
StaticAlias: Selections
Description: CreatorSelections is an object that manages selections in the game
instance. This class is only available in the creator.

View File

@@ -15,6 +15,13 @@ Properties:
IsObsolete: false
IsStatic: false
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
Type: GrabbablePermissionModeEnum
IsAccessibleByScripts: true

View File

@@ -30,6 +30,13 @@ Properties:
IsObsolete: false
IsStatic: false
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: []
Events: []
IsStatic: false

View File

@@ -104,6 +104,97 @@ Methods:
IsObsolete: false
IsStatic: false
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: []
IsStatic: true
IsAbstract: false

View File

@@ -3,7 +3,7 @@ BaseType: Instance
Properties: []
Methods:
- Name: ReadBytesFromPath
ReturnType: string
ReturnType: buffer
Parameters:
- Name: path
Type: string
@@ -21,7 +21,7 @@ Methods:
IsOptional: false
DefaultValue: ""
- Name: bytes
Type: string
Type: buffer
IsOptional: false
DefaultValue: ""
IsAsync: true
@@ -36,7 +36,7 @@ Methods:
IsStatic: false
Description: List all files in the project
- Name: ReadBytesFromID
ReturnType: string
ReturnType: buffer
Parameters:
- Name: id
Type: string

View File

@@ -122,6 +122,21 @@ Methods:
IsObsolete: false
IsStatic: false
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
ReturnType: string
Parameters:
@@ -210,6 +225,17 @@ Methods:
IsObsolete: false
IsStatic: false
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
ReturnType: NetMessage
Parameters: []

View File

@@ -16,8 +16,8 @@ Methods:
Parameters:
- Name: msg
Type: NetMessage
IsOptional: false
DefaultValue: ""
IsOptional: true
DefaultValue: null
- Name: _
Type: any
IsOptional: true
@@ -31,12 +31,12 @@ Methods:
Parameters:
- Name: msg
Type: NetMessage
IsOptional: false
DefaultValue: ""
IsOptional: true
DefaultValue: null
- Name: player
Type: Player
IsOptional: false
DefaultValue: ""
IsOptional: true
DefaultValue: null
IsAsync: false
IsObsolete: false
IsStatic: false
@@ -46,8 +46,8 @@ Methods:
Parameters:
- Name: msg
Type: NetMessage
IsOptional: false
DefaultValue: ""
IsOptional: true
DefaultValue: null
IsAsync: false
IsObsolete: false
IsStatic: false

View File

@@ -15,13 +15,6 @@ Properties:
IsObsolete: false
IsStatic: false
Description: Determines whether this object can collide with other objects.
- Name: CanTouch
Type: boolean
IsAccessibleByScripts: true
IsReadOnly: false
IsObsolete: false
IsStatic: false
Description: Missing Documentation
- Name: Velocity
Type: Vector3
IsAccessibleByScripts: true

View File

@@ -3,7 +3,7 @@ BaseType: Instance
Properties:
- Name: Source
Type: string
IsAccessibleByScripts: false
IsAccessibleByScripts: true
IsReadOnly: false
IsObsolete: false
IsStatic: false

View File

@@ -85,6 +85,13 @@ Properties:
IsObsolete: false
IsStatic: false
Description: Missing Documentation
- Name: AbsolutePosition
Type: Vector2
IsAccessibleByScripts: true
IsReadOnly: true
IsObsolete: false
IsStatic: false
Description: Missing Documentation
- Name: AbsoluteSize
Type: Vector2
IsAccessibleByScripts: true