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 IsStatic: false
Description: Commit the current action Description: Commit the current action
Events: [] Events: []
IsStatic: false IsStatic: true
IsAbstract: false IsAbstract: false
IsInstantiatable: false IsInstantiatable: false
StaticAlias: null StaticAlias: History
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.

View File

@@ -64,10 +64,16 @@ 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:
IsStatic: false - Name: Selected
Arguments: ""
Description: Missing Documentation
- Name: Deselected
Arguments: ""
Description: Missing Documentation
IsStatic: true
IsAbstract: false IsAbstract: false
IsInstantiatable: false IsInstantiatable: false
StaticAlias: null StaticAlias: Selections
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.

View File

@@ -15,6 +15,13 @@ 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

View File

@@ -30,6 +30,13 @@ 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

View File

@@ -104,6 +104,97 @@ 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

View File

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

View File

@@ -122,6 +122,21 @@ 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:
@@ -210,6 +225,17 @@ 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: []

View File

@@ -16,8 +16,8 @@ Methods:
Parameters: Parameters:
- Name: msg - Name: msg
Type: NetMessage Type: NetMessage
IsOptional: false IsOptional: true
DefaultValue: "" DefaultValue: null
- 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: false IsOptional: true
DefaultValue: "" DefaultValue: null
- Name: player - Name: player
Type: Player Type: Player
IsOptional: false IsOptional: true
DefaultValue: "" DefaultValue: null
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: false IsOptional: true
DefaultValue: "" DefaultValue: null
IsAsync: false IsAsync: false
IsObsolete: false IsObsolete: false
IsStatic: false IsStatic: false

View File

@@ -15,13 +15,6 @@ Properties:
IsObsolete: false IsObsolete: false
IsStatic: false IsStatic: false
Description: Determines whether this object can collide with other objects. 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 - Name: Velocity
Type: Vector3 Type: Vector3
IsAccessibleByScripts: true IsAccessibleByScripts: true

View File

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

View File

@@ -85,6 +85,13 @@ Properties:
IsObsolete: false IsObsolete: false
IsStatic: false IsStatic: false
Description: Missing Documentation Description: Missing Documentation
- 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