Microshart 11
This commit is contained in:
@@ -68,7 +68,8 @@ for (const yamlFile of yamlFiles) {
|
|||||||
appendLine("")
|
appendLine("")
|
||||||
|
|
||||||
if (c.IsStatic) {
|
if (c.IsStatic) {
|
||||||
appendLine(`{{ staticclass(${c.Name.replace("Service", "")}) }}`)
|
appendLine("")
|
||||||
|
appendLine(`{{ staticclass(${c.StaticAlias ? `"${c.StaticAlias}"` : ""}) }}`)
|
||||||
appendLine("")
|
appendLine("")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
14
main.py
14
main.py
@@ -122,10 +122,18 @@ def define_env(env):
|
|||||||
</div>"""
|
</div>"""
|
||||||
|
|
||||||
@env.macro
|
@env.macro
|
||||||
def staticclass(className):
|
def staticclass(className = ""):
|
||||||
return """<div data-search-exclude markdown>
|
if className != "":
|
||||||
|
return """<div data-search-exclude markdown>
|
||||||
!!! tip "Static Class"
|
!!! tip "Static Class"
|
||||||
This object is a static class. It can be accessed by using its name as a keyword.
|
This object is a static class. It can be accessed like this: `%s`.
|
||||||
|
|
||||||
|
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>"""
|
||||||
|
|||||||
@@ -12,5 +12,6 @@ Events: []
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: true
|
IsInstantiatable: true
|
||||||
|
StaticAlias: null
|
||||||
Description: Accessory represents a attachable object that can be equipped by a
|
Description: Accessory represents a attachable object that can be equipped by a
|
||||||
CharacterModel.
|
CharacterModel.
|
||||||
|
|||||||
@@ -93,4 +93,5 @@ Events:
|
|||||||
IsStatic: true
|
IsStatic: true
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: false
|
IsInstantiatable: false
|
||||||
|
StaticAlias: Achievements
|
||||||
Description: Service for managing achievements
|
Description: Service for managing achievements
|
||||||
|
|||||||
@@ -6,4 +6,5 @@ Events: []
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: true
|
IsInstantiatable: true
|
||||||
|
StaticAlias: null
|
||||||
Description: WIP class
|
Description: WIP class
|
||||||
|
|||||||
@@ -42,4 +42,5 @@ Events: []
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: true
|
IsInstantiatable: true
|
||||||
|
StaticAlias: null
|
||||||
Description: WIP class
|
Description: WIP class
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
Name: AssetService
|
Name: AssetsService
|
||||||
BaseType: Instance
|
BaseType: Instance
|
||||||
Properties: []
|
Properties: []
|
||||||
Methods:
|
Methods:
|
||||||
@@ -50,4 +50,5 @@ Events: []
|
|||||||
IsStatic: true
|
IsStatic: true
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: false
|
IsInstantiatable: false
|
||||||
Description: Service for managing assets
|
StaticAlias: Assets
|
||||||
|
Description: Service for managing/creating assets
|
||||||
@@ -6,4 +6,5 @@ Events: []
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: true
|
IsAbstract: true
|
||||||
IsInstantiatable: false
|
IsInstantiatable: false
|
||||||
|
StaticAlias: null
|
||||||
Description: Abstract class for audio
|
Description: Abstract class for audio
|
||||||
|
|||||||
@@ -6,4 +6,5 @@ Events: []
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: true
|
IsAbstract: true
|
||||||
IsInstantiatable: false
|
IsInstantiatable: false
|
||||||
|
StaticAlias: null
|
||||||
Description: Base class for all assets
|
Description: Base class for all assets
|
||||||
|
|||||||
@@ -22,5 +22,6 @@ Events:
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: true
|
IsInstantiatable: true
|
||||||
|
StaticAlias: null
|
||||||
Description: BindableEvent are events that can be called to communicate between
|
Description: BindableEvent are events that can be called to communicate between
|
||||||
scripts in the same boundary.
|
scripts in the same boundary.
|
||||||
|
|||||||
@@ -25,5 +25,6 @@ Events: []
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: true
|
IsInstantiatable: true
|
||||||
|
StaticAlias: null
|
||||||
Description: BodyPosition are objects that apply a force to their parent until
|
Description: BodyPosition are objects that apply a force to their parent until
|
||||||
it moves toward the target position.
|
it moves toward the target position.
|
||||||
|
|||||||
@@ -12,4 +12,5 @@ Events: []
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: true
|
IsInstantiatable: true
|
||||||
|
StaticAlias: null
|
||||||
Description: BoolValue is a ValueBase that stores a boolean.
|
Description: BoolValue is a ValueBase that stores a boolean.
|
||||||
|
|||||||
@@ -188,4 +188,5 @@ Events: []
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: false
|
IsInstantiatable: false
|
||||||
|
StaticAlias: null
|
||||||
Description: Represents a bounding box in 3D space.
|
Description: Represents a bounding box in 3D space.
|
||||||
|
|||||||
@@ -12,4 +12,5 @@ Events: []
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: true
|
IsInstantiatable: true
|
||||||
|
StaticAlias: null
|
||||||
Description: Audio asset that's built-in with the client
|
Description: Audio asset that's built-in with the client
|
||||||
|
|||||||
@@ -12,4 +12,5 @@ Events: []
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: true
|
IsInstantiatable: true
|
||||||
|
StaticAlias: null
|
||||||
Description: Font asset that's built-in with the client
|
Description: Font asset that's built-in with the client
|
||||||
|
|||||||
@@ -258,4 +258,5 @@ Events:
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: true
|
IsInstantiatable: true
|
||||||
|
StaticAlias: null
|
||||||
Description: Camera is a class that represents the local player's camera.
|
Description: Camera is a class that represents the local player's camera.
|
||||||
|
|||||||
@@ -74,4 +74,5 @@ Events: []
|
|||||||
IsStatic: true
|
IsStatic: true
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: false
|
IsInstantiatable: false
|
||||||
|
StaticAlias: Capture
|
||||||
Description: Service for capturing photos
|
Description: Service for capturing photos
|
||||||
|
|||||||
@@ -23,4 +23,5 @@ Events: []
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: true
|
IsInstantiatable: true
|
||||||
|
StaticAlias: null
|
||||||
Description: Base class for Character Models
|
Description: Base class for Character Models
|
||||||
|
|||||||
@@ -45,4 +45,5 @@ Events:
|
|||||||
IsStatic: true
|
IsStatic: true
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: false
|
IsInstantiatable: false
|
||||||
|
StaticAlias: Chat
|
||||||
Description: Chat is a static class used for various actions regarding the chat.
|
Description: Chat is a static class used for various actions regarding the chat.
|
||||||
|
|||||||
@@ -6,5 +6,6 @@ Events: []
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: true
|
IsInstantiatable: true
|
||||||
|
StaticAlias: null
|
||||||
Description: ClientScript is a script that runs locally for each player. It can
|
Description: ClientScript is a script that runs locally for each player. It can
|
||||||
only see what the player can see.
|
only see what the player can see.
|
||||||
|
|||||||
@@ -127,6 +127,7 @@ Events: []
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: false
|
IsInstantiatable: false
|
||||||
|
StaticAlias: null
|
||||||
Description: >-
|
Description: >-
|
||||||
Color is a data type that represents a color.
|
Color is a data type that represents a color.
|
||||||
|
|
||||||
|
|||||||
@@ -30,5 +30,6 @@ Events: []
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: true
|
IsInstantiatable: true
|
||||||
|
StaticAlias: null
|
||||||
Description: ColorAdjustModifier is a LightingModifier that allows the
|
Description: ColorAdjustModifier is a LightingModifier that allows the
|
||||||
adjustment of lighting
|
adjustment of lighting
|
||||||
|
|||||||
@@ -30,6 +30,13 @@ Methods:
|
|||||||
IsObsolete: false
|
IsObsolete: false
|
||||||
IsStatic: true
|
IsStatic: true
|
||||||
Description: Create color series by this color range
|
Description: Create color series by this color range
|
||||||
|
- Name: Clear
|
||||||
|
ReturnType: nil
|
||||||
|
Parameters: []
|
||||||
|
IsAsync: false
|
||||||
|
IsObsolete: false
|
||||||
|
IsStatic: false
|
||||||
|
Description: Missing Documentation
|
||||||
- Name: SetColor
|
- Name: SetColor
|
||||||
ReturnType: nil
|
ReturnType: nil
|
||||||
Parameters:
|
Parameters:
|
||||||
@@ -108,5 +115,6 @@ Events: []
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: false
|
IsInstantiatable: false
|
||||||
|
StaticAlias: null
|
||||||
Description: Color series is a data type that represents a collection of color
|
Description: Color series is a data type that represents a collection of color
|
||||||
and points, also known as gradient.
|
and points, also known as gradient.
|
||||||
|
|||||||
@@ -12,4 +12,5 @@ Events: []
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: true
|
IsInstantiatable: true
|
||||||
|
StaticAlias: null
|
||||||
Description: ColorValue is an object that holds a Color value.
|
Description: ColorValue is an object that holds a Color value.
|
||||||
|
|||||||
@@ -55,4 +55,5 @@ Events: []
|
|||||||
IsStatic: true
|
IsStatic: true
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: false
|
IsInstantiatable: false
|
||||||
|
StaticAlias: CoreUI
|
||||||
Description: CoreUI is a static class that allows for the toggling of certain core GUI.
|
Description: CoreUI is a static class that allows for the toggling of certain core GUI.
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ Events: []
|
|||||||
IsStatic: true
|
IsStatic: true
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: false
|
IsInstantiatable: false
|
||||||
|
StaticAlias: CreatorContext
|
||||||
Description: CreatorContextService is a service that manage per game specific
|
Description: CreatorContextService is a service that manage per game specific
|
||||||
tools, such as Selections and History. This class is only available in the
|
tools, such as Selections and History. This class is only available in the
|
||||||
creator.
|
creator.
|
||||||
|
|||||||
@@ -3,8 +3,9 @@ BaseType: PlayerGUI
|
|||||||
Properties: []
|
Properties: []
|
||||||
Methods: []
|
Methods: []
|
||||||
Events: []
|
Events: []
|
||||||
IsStatic: false
|
IsStatic: true
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: false
|
IsInstantiatable: false
|
||||||
|
StaticAlias: PlayerGUI
|
||||||
Description: CreatorGUI is an object that allows GUI to overlay on top of the
|
Description: CreatorGUI is an object that allows GUI to overlay on top of the
|
||||||
viewport in the creator. This class is only available in the creator.
|
viewport in the creator. This class is only available in the creator.
|
||||||
|
|||||||
@@ -46,5 +46,6 @@ Events: []
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: false
|
IsInstantiatable: false
|
||||||
|
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.
|
||||||
|
|||||||
@@ -60,5 +60,6 @@ Events: []
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: false
|
IsInstantiatable: false
|
||||||
|
StaticAlias: null
|
||||||
Description: CreatorInterface represent the user interface of the creator. This
|
Description: CreatorInterface represent the user interface of the creator. This
|
||||||
class is only available in the creator.
|
class is only available in the creator.
|
||||||
|
|||||||
@@ -68,5 +68,6 @@ Events: []
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: false
|
IsInstantiatable: false
|
||||||
|
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.
|
||||||
|
|||||||
@@ -36,5 +36,6 @@ Events:
|
|||||||
IsStatic: true
|
IsStatic: true
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: false
|
IsInstantiatable: false
|
||||||
|
StaticAlias: Creator
|
||||||
Description: CreatorService is the class that manages the creator. This class is
|
Description: CreatorService is the class that manages the creator. This class is
|
||||||
only available in the creator.
|
only available in the creator.
|
||||||
|
|||||||
@@ -53,4 +53,5 @@ Events:
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: false
|
IsInstantiatable: false
|
||||||
|
StaticAlias: null
|
||||||
Description: Datastore is an object that represent datastore connection.
|
Description: Datastore is an object that represent datastore connection.
|
||||||
|
|||||||
@@ -17,5 +17,6 @@ Events: []
|
|||||||
IsStatic: true
|
IsStatic: true
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: false
|
IsInstantiatable: false
|
||||||
|
StaticAlias: Datastore
|
||||||
Description: Datastore (not to be confused with the Datastore data type) is a
|
Description: Datastore (not to be confused with the Datastore data type) is a
|
||||||
service used for storing data between place sessions.
|
service used for storing data between place sessions.
|
||||||
|
|||||||
@@ -24,5 +24,6 @@ Events: []
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: true
|
IsInstantiatable: true
|
||||||
|
StaticAlias: null
|
||||||
Description: Decals are objects that can have an image texture and are wrapped
|
Description: Decals are objects that can have an image texture and are wrapped
|
||||||
around other objects.
|
around other objects.
|
||||||
|
|||||||
@@ -43,6 +43,12 @@ Properties:
|
|||||||
IsReadOnly: false
|
IsReadOnly: false
|
||||||
IsObsolete: false
|
IsObsolete: false
|
||||||
Description: The rotation of the object represented as a quaternion.
|
Description: The rotation of the object represented as a quaternion.
|
||||||
|
- Name: LocalQuaternion
|
||||||
|
Type: Quaternion
|
||||||
|
IsAccessibleByScripts: true
|
||||||
|
IsReadOnly: false
|
||||||
|
IsObsolete: false
|
||||||
|
Description: Missing Documentation
|
||||||
- Name: Locked
|
- Name: Locked
|
||||||
Type: boolean
|
Type: boolean
|
||||||
IsAccessibleByScripts: true
|
IsAccessibleByScripts: true
|
||||||
@@ -212,5 +218,6 @@ Events: []
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: true
|
IsInstantiatable: true
|
||||||
|
StaticAlias: null
|
||||||
Description: Dynamic is the base class where all objects with a position,
|
Description: Dynamic is the base class where all objects with a position,
|
||||||
rotation and scale derive from.
|
rotation and scale derive from.
|
||||||
|
|||||||
@@ -139,5 +139,6 @@ Events: []
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: true
|
IsAbstract: true
|
||||||
IsInstantiatable: false
|
IsInstantiatable: false
|
||||||
|
StaticAlias: null
|
||||||
Description: Entity represents a physics object that's related to building
|
Description: Entity represents a physics object that's related to building
|
||||||
blocks (inherited by Part and Mesh)
|
blocks (inherited by Part and Mesh)
|
||||||
|
|||||||
@@ -143,5 +143,6 @@ Events: []
|
|||||||
IsStatic: true
|
IsStatic: true
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: false
|
IsInstantiatable: false
|
||||||
|
StaticAlias: Environment
|
||||||
Description: Environment is the primary object intended for storing active
|
Description: Environment is the primary object intended for storing active
|
||||||
objects in the place.
|
objects in the place.
|
||||||
|
|||||||
@@ -51,5 +51,6 @@ Events:
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: true
|
IsInstantiatable: true
|
||||||
|
StaticAlias: null
|
||||||
Description: Explosion is a deadly explosion killing players and applying force
|
Description: Explosion is a deadly explosion killing players and applying force
|
||||||
to parts at the given position.
|
to parts at the given position.
|
||||||
|
|||||||
@@ -12,4 +12,5 @@ Events: []
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: true
|
IsInstantiatable: true
|
||||||
|
StaticAlias: null
|
||||||
Description: Represents a link to a file path in the file system
|
Description: Represents a link to a file path in the file system
|
||||||
|
|||||||
@@ -17,4 +17,5 @@ Events: []
|
|||||||
IsStatic: true
|
IsStatic: true
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: false
|
IsInstantiatable: false
|
||||||
|
StaticAlias: Filter
|
||||||
Description: FilterService is a service which processes and filter user inputs
|
Description: FilterService is a service which processes and filter user inputs
|
||||||
|
|||||||
@@ -6,4 +6,5 @@ Events: []
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: true
|
IsInstantiatable: true
|
||||||
|
StaticAlias: null
|
||||||
Description: Folder is similar to a model, used for storing objects in the place.
|
Description: Folder is similar to a model, used for storing objects in the place.
|
||||||
|
|||||||
@@ -6,4 +6,5 @@ Events: []
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: true
|
IsAbstract: true
|
||||||
IsInstantiatable: false
|
IsInstantiatable: false
|
||||||
|
StaticAlias: null
|
||||||
Description: Base class for font assets
|
Description: Base class for font assets
|
||||||
|
|||||||
@@ -6,4 +6,5 @@ Events: []
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: true
|
IsInstantiatable: true
|
||||||
|
StaticAlias: null
|
||||||
Description: GUI is a class that is used to create a GUI.
|
Description: GUI is a class that is used to create a GUI.
|
||||||
|
|||||||
@@ -31,4 +31,5 @@ Events: []
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: true
|
IsInstantiatable: true
|
||||||
|
StaticAlias: null
|
||||||
Description: GUI3D is a class that allows GUI to be displayed in a 3D space.
|
Description: GUI3D is a class that allows GUI to be displayed in a 3D space.
|
||||||
|
|||||||
@@ -45,5 +45,6 @@ Events:
|
|||||||
IsStatic: true
|
IsStatic: true
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: false
|
IsInstantiatable: false
|
||||||
|
StaticAlias: null
|
||||||
Description: Game is the root object in the Polytoria instance tree. It is the
|
Description: Game is the root object in the Polytoria instance tree. It is the
|
||||||
object from which everything is descended.
|
object from which everything is descended.
|
||||||
|
|||||||
@@ -59,5 +59,6 @@ Events:
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: true
|
IsInstantiatable: true
|
||||||
|
StaticAlias: null
|
||||||
Description: Grabbable represents a object that can be dragged by user. It can
|
Description: Grabbable represents a object that can be dragged by user. It can
|
||||||
be parented to Physical to give user ability to drag that object.
|
be parented to Physical to give user ability to drag that object.
|
||||||
|
|||||||
@@ -78,4 +78,5 @@ Events: []
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: true
|
IsInstantiatable: true
|
||||||
|
StaticAlias: null
|
||||||
Description: GradientSky is a class that is used to set a gradient skybox in the world.
|
Description: GradientSky is a class that is used to set a gradient skybox in the world.
|
||||||
|
|||||||
@@ -6,4 +6,5 @@ Events: []
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: false
|
IsInstantiatable: false
|
||||||
|
StaticAlias: null
|
||||||
Description: Hidden is a object used for hiding instances.
|
Description: Hidden is a object used for hiding instances.
|
||||||
|
|||||||
@@ -38,4 +38,5 @@ Events: []
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: false
|
IsInstantiatable: false
|
||||||
|
StaticAlias: null
|
||||||
Description: HttpRequestData represents the data required to construct an HTTP request
|
Description: HttpRequestData represents the data required to construct an HTTP request
|
||||||
|
|||||||
@@ -31,4 +31,5 @@ Events: []
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: false
|
IsInstantiatable: false
|
||||||
|
StaticAlias: null
|
||||||
Description: HttpResponseData represents the result of an HTTP request.
|
Description: HttpResponseData represents the result of an HTTP request.
|
||||||
|
|||||||
@@ -108,4 +108,5 @@ Events: []
|
|||||||
IsStatic: true
|
IsStatic: true
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: false
|
IsInstantiatable: false
|
||||||
|
StaticAlias: Http
|
||||||
Description: Http is a service used for HTTP communications and requests.
|
Description: Http is a service used for HTTP communications and requests.
|
||||||
|
|||||||
@@ -61,5 +61,6 @@ Events: []
|
|||||||
IsStatic: true
|
IsStatic: true
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: false
|
IsInstantiatable: false
|
||||||
|
StaticAlias: IO
|
||||||
Description: Class for interacting with IO in project, only usable with scripts
|
Description: Class for interacting with IO in project, only usable with scripts
|
||||||
with the respective permission.
|
with the respective permission.
|
||||||
|
|||||||
@@ -48,4 +48,5 @@ Events: []
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: true
|
IsInstantiatable: true
|
||||||
|
StaticAlias: null
|
||||||
Description: Decals are objects that can have an image texture and are placed in the world.
|
Description: Decals are objects that can have an image texture and are placed in the world.
|
||||||
|
|||||||
@@ -6,4 +6,5 @@ Events: []
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: true
|
IsAbstract: true
|
||||||
IsInstantiatable: false
|
IsInstantiatable: false
|
||||||
|
StaticAlias: null
|
||||||
Description: Base class for image assets
|
Description: Base class for image assets
|
||||||
|
|||||||
@@ -6,4 +6,5 @@ Events: []
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: false
|
IsInstantiatable: false
|
||||||
|
StaticAlias: null
|
||||||
Description: Base class for input action
|
Description: Base class for input action
|
||||||
|
|||||||
@@ -24,4 +24,5 @@ Events: []
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: false
|
IsInstantiatable: false
|
||||||
|
StaticAlias: null
|
||||||
Description: InputActionAxis is a class that represents input action of axis type.
|
Description: InputActionAxis is a class that represents input action of axis type.
|
||||||
|
|||||||
@@ -31,4 +31,5 @@ Events:
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: false
|
IsInstantiatable: false
|
||||||
|
StaticAlias: null
|
||||||
Description: InputActionButton is a class that represents input action of button type.
|
Description: InputActionButton is a class that represents input action of button type.
|
||||||
|
|||||||
@@ -36,4 +36,5 @@ Events: []
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: false
|
IsInstantiatable: false
|
||||||
|
StaticAlias: null
|
||||||
Description: InputActionVector2 is a class that represents input action of Vector2 type.
|
Description: InputActionVector2 is a class that represents input action of Vector2 type.
|
||||||
|
|||||||
@@ -30,4 +30,5 @@ Events: []
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: false
|
IsInstantiatable: false
|
||||||
|
StaticAlias: null
|
||||||
Description: InputButton is a class that represents a button KeyCode
|
Description: InputButton is a class that represents a button KeyCode
|
||||||
|
|||||||
@@ -28,4 +28,5 @@ Events: []
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: false
|
IsInstantiatable: false
|
||||||
|
StaticAlias: null
|
||||||
Description: A collection of Input Buttons
|
Description: A collection of Input Buttons
|
||||||
|
|||||||
@@ -179,5 +179,6 @@ Events:
|
|||||||
IsStatic: true
|
IsStatic: true
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: false
|
IsInstantiatable: false
|
||||||
|
StaticAlias: Input
|
||||||
Description: InputService is a class used for retrieving user input data, such
|
Description: InputService is a class used for retrieving user input data, such
|
||||||
as the mouse and keyboard.
|
as the mouse and keyboard.
|
||||||
|
|||||||
@@ -39,5 +39,6 @@ Events: []
|
|||||||
IsStatic: true
|
IsStatic: true
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: false
|
IsInstantiatable: false
|
||||||
|
StaticAlias: Insert
|
||||||
Description: Insert is a class used for inserting user-generated models into
|
Description: Insert is a class used for inserting user-generated models into
|
||||||
your game via scripts.
|
your game via scripts.
|
||||||
|
|||||||
@@ -65,6 +65,17 @@ 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: FindChildByIndex
|
||||||
|
ReturnType: Instance
|
||||||
|
Parameters:
|
||||||
|
- Name: index
|
||||||
|
Type: number
|
||||||
|
IsOptional: false
|
||||||
|
DefaultValue: ""
|
||||||
|
IsAsync: false
|
||||||
|
IsObsolete: false
|
||||||
|
IsStatic: false
|
||||||
|
Description: Missing Documentation
|
||||||
- Name: MoveChild
|
- Name: MoveChild
|
||||||
ReturnType: nil
|
ReturnType: nil
|
||||||
Parameters:
|
Parameters:
|
||||||
@@ -233,5 +244,6 @@ Events:
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: true
|
IsAbstract: true
|
||||||
IsInstantiatable: false
|
IsInstantiatable: false
|
||||||
|
StaticAlias: null
|
||||||
Description: Instance is the base class of all classes. Every class derives from
|
Description: Instance is the base class of all classes. Every class derives from
|
||||||
it and has all properties, events and functions Instance has.
|
it and has all properties, events and functions Instance has.
|
||||||
|
|||||||
@@ -12,4 +12,5 @@ Events: []
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: true
|
IsInstantiatable: true
|
||||||
|
StaticAlias: null
|
||||||
Description: InstanceValue is an object that holds an Instance value.
|
Description: InstanceValue is an object that holds an Instance value.
|
||||||
|
|||||||
@@ -12,4 +12,5 @@ Events: []
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: true
|
IsInstantiatable: true
|
||||||
|
StaticAlias: null
|
||||||
Description: IntValue is an object that holds an integer value.
|
Description: IntValue is an object that holds an integer value.
|
||||||
|
|||||||
@@ -45,4 +45,5 @@ Events:
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: true
|
IsInstantiatable: true
|
||||||
|
StaticAlias: null
|
||||||
Description: WIP class, not functional yet
|
Description: WIP class, not functional yet
|
||||||
|
|||||||
@@ -6,4 +6,5 @@ Events: []
|
|||||||
IsStatic: true
|
IsStatic: true
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: false
|
IsInstantiatable: false
|
||||||
|
StaticAlias: null
|
||||||
Description: Inventory is a container for Tools, equippable by player.
|
Description: Inventory is a container for Tools, equippable by player.
|
||||||
|
|||||||
@@ -30,4 +30,5 @@ Events: []
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: true
|
IsAbstract: true
|
||||||
IsInstantiatable: false
|
IsInstantiatable: false
|
||||||
|
StaticAlias: null
|
||||||
Description: Light is an abstract base class for all light objects in the world.
|
Description: Light is an abstract base class for all light objects in the world.
|
||||||
|
|||||||
@@ -48,6 +48,7 @@ Events: []
|
|||||||
IsStatic: true
|
IsStatic: true
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: false
|
IsInstantiatable: false
|
||||||
|
StaticAlias: Lighting
|
||||||
Description: Lighting is responsible for controlling the state of the lighting
|
Description: Lighting is responsible for controlling the state of the lighting
|
||||||
in the place. It provides many different options for creators to enhance and
|
in the place. It provides many different options for creators to enhance and
|
||||||
fine-tune the visuals of their worlds.
|
fine-tune the visuals of their worlds.
|
||||||
|
|||||||
@@ -6,4 +6,5 @@ Events: []
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: true
|
IsAbstract: true
|
||||||
IsInstantiatable: false
|
IsInstantiatable: false
|
||||||
|
StaticAlias: null
|
||||||
Description: Base class for lighting modifiers
|
Description: Base class for lighting modifiers
|
||||||
|
|||||||
@@ -18,5 +18,6 @@ Events: []
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: true
|
IsInstantiatable: true
|
||||||
|
StaticAlias: null
|
||||||
Description: Marker3D is a object that allows marking a specific point in world.
|
Description: Marker3D is a object that allows marking a specific point in world.
|
||||||
This will hint an axis gizmo in local test and creator.
|
This will hint an axis gizmo in local test and creator.
|
||||||
|
|||||||
@@ -93,10 +93,18 @@ Methods:
|
|||||||
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
|
||||||
|
ReturnType: table
|
||||||
|
Parameters: []
|
||||||
|
IsAsync: false
|
||||||
|
IsObsolete: false
|
||||||
|
IsStatic: false
|
||||||
|
Description: Missing Documentation
|
||||||
Events: []
|
Events: []
|
||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: true
|
IsInstantiatable: true
|
||||||
|
StaticAlias: null
|
||||||
Description: Represents a part that can have custom mesh applied to it, the mesh
|
Description: Represents a part that can have custom mesh applied to it, the mesh
|
||||||
may be from the Polytoria Store (Hats, Tools and Heads) or user-uploaded
|
may be from the Polytoria Store (Hats, Tools and Heads) or user-uploaded
|
||||||
meshes.
|
meshes.
|
||||||
|
|||||||
28
yaml/types/MeshAnimationInfo.yaml
Normal file
28
yaml/types/MeshAnimationInfo.yaml
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
Name: MeshAnimationInfo
|
||||||
|
BaseType: ValueType
|
||||||
|
Properties:
|
||||||
|
- Name: Name
|
||||||
|
Type: string
|
||||||
|
IsAccessibleByScripts: true
|
||||||
|
IsReadOnly: false
|
||||||
|
IsObsolete: false
|
||||||
|
Description: Missing Documentation
|
||||||
|
- Name: Length
|
||||||
|
Type: number
|
||||||
|
IsAccessibleByScripts: true
|
||||||
|
IsReadOnly: false
|
||||||
|
IsObsolete: false
|
||||||
|
Description: Missing Documentation
|
||||||
|
- Name: IsPlaying
|
||||||
|
Type: boolean
|
||||||
|
IsAccessibleByScripts: true
|
||||||
|
IsReadOnly: false
|
||||||
|
IsObsolete: false
|
||||||
|
Description: Missing Documentation
|
||||||
|
Methods: []
|
||||||
|
Events: []
|
||||||
|
IsStatic: false
|
||||||
|
IsAbstract: false
|
||||||
|
IsInstantiatable: false
|
||||||
|
StaticAlias: null
|
||||||
|
Description: Missing Documentation
|
||||||
@@ -6,4 +6,5 @@ Events: []
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: true
|
IsAbstract: true
|
||||||
IsInstantiatable: false
|
IsInstantiatable: false
|
||||||
|
StaticAlias: null
|
||||||
Description: Base class for mesh assets
|
Description: Base class for mesh assets
|
||||||
|
|||||||
@@ -6,5 +6,6 @@ Events: []
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: true
|
IsInstantiatable: true
|
||||||
|
StaticAlias: null
|
||||||
Description: Model is an instance that can hold other instances, and which
|
Description: Model is an instance that can hold other instances, and which
|
||||||
transform affects its children.
|
transform affects its children.
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ Events: []
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: true
|
IsInstantiatable: true
|
||||||
|
StaticAlias: null
|
||||||
Description: ModuleScripts are specialized scripts to hold data that can be
|
Description: ModuleScripts are specialized scripts to hold data that can be
|
||||||
accessed by other scripts using the require() function. It is important to
|
accessed by other scripts using the require() function. It is important to
|
||||||
define and return a table in a ModuleScript. When the place starts, the server
|
define and return a table in a ModuleScript. When the place starts, the server
|
||||||
|
|||||||
@@ -247,6 +247,7 @@ Events:
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: true
|
IsInstantiatable: true
|
||||||
|
StaticAlias: null
|
||||||
Description: NPC (non-player character) is an object similar to a Player but
|
Description: NPC (non-player character) is an object similar to a Player but
|
||||||
that can be controlled by code. Like players, it can walk and jump, and its
|
that can be controlled by code. Like players, it can walk and jump, and its
|
||||||
body part colors can be customized.
|
body part colors can be customized.
|
||||||
|
|||||||
@@ -221,5 +221,6 @@ Events: []
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: false
|
IsInstantiatable: false
|
||||||
|
StaticAlias: null
|
||||||
Description: Represents a network message used for communication between clients
|
Description: Represents a network message used for communication between clients
|
||||||
and servers.
|
and servers.
|
||||||
|
|||||||
@@ -69,6 +69,7 @@ Events:
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: true
|
IsInstantiatable: true
|
||||||
|
StaticAlias: null
|
||||||
Description: NetworkEvents are events that can be called to communicate between
|
Description: NetworkEvents are events that can be called to communicate between
|
||||||
server and client. NetMessages are the class used for sharing data between
|
server and client. NetMessages are the class used for sharing data between
|
||||||
server and client when sending NetworkEvents.
|
server and client when sending NetworkEvents.
|
||||||
|
|||||||
@@ -103,5 +103,6 @@ Events:
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: true
|
IsAbstract: true
|
||||||
IsInstantiatable: false
|
IsInstantiatable: false
|
||||||
|
StaticAlias: null
|
||||||
Description: NetworkedObject is a base class for all object that's synchronized
|
Description: NetworkedObject is a base class for all object that's synchronized
|
||||||
by the network.
|
by the network.
|
||||||
|
|||||||
@@ -25,5 +25,6 @@ Events: []
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: false
|
IsInstantiatable: false
|
||||||
|
StaticAlias: null
|
||||||
Description: NewServerRequestData represents the request data for a new server
|
Description: NewServerRequestData represents the request data for a new server
|
||||||
instance, to be used with PlacesService.
|
instance, to be used with PlacesService.
|
||||||
|
|||||||
@@ -46,5 +46,6 @@ Events: []
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: false
|
IsInstantiatable: false
|
||||||
|
StaticAlias: null
|
||||||
Description: NumberRange is a data type that represents a range between two
|
Description: NumberRange is a data type that represents a range between two
|
||||||
numbers, defined by a minimum and maximum value.
|
numbers, defined by a minimum and maximum value.
|
||||||
|
|||||||
@@ -12,4 +12,5 @@ Events: []
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: true
|
IsInstantiatable: true
|
||||||
|
StaticAlias: null
|
||||||
Description: NumberValue is an object that holds a number value.
|
Description: NumberValue is an object that holds a number value.
|
||||||
|
|||||||
@@ -12,4 +12,5 @@ Events: []
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: true
|
IsInstantiatable: true
|
||||||
|
StaticAlias: null
|
||||||
Description: Audio asset which is loaded from Polytoria
|
Description: Audio asset which is loaded from Polytoria
|
||||||
|
|||||||
@@ -6,5 +6,6 @@ Events: []
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: false
|
IsInstantiatable: false
|
||||||
|
StaticAlias: null
|
||||||
Description: A function that doesn't expect a return value. This will sometimes
|
Description: A function that doesn't expect a return value. This will sometimes
|
||||||
be referred as `function`
|
be referred as `function`
|
||||||
|
|||||||
@@ -6,5 +6,6 @@ Events: []
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: false
|
IsInstantiatable: false
|
||||||
|
StaticAlias: null
|
||||||
Description: A function that expects a return value. This will sometimes be
|
Description: A function that expects a return value. This will sometimes be
|
||||||
referred as `function`
|
referred as `function`
|
||||||
|
|||||||
@@ -18,4 +18,5 @@ Events: []
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: true
|
IsInstantiatable: true
|
||||||
|
StaticAlias: null
|
||||||
Description: An image asset that's loaded from Polytoria.
|
Description: An image asset that's loaded from Polytoria.
|
||||||
|
|||||||
@@ -12,4 +12,5 @@ Events: []
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: true
|
IsInstantiatable: true
|
||||||
|
StaticAlias: null
|
||||||
Description: A mesh asset that's loaded from Polytoria.
|
Description: A mesh asset that's loaded from Polytoria.
|
||||||
|
|||||||
@@ -46,4 +46,5 @@ Events: []
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: false
|
IsInstantiatable: false
|
||||||
|
StaticAlias: null
|
||||||
Description: A signal which scripts can subscribe to
|
Description: A signal which scripts can subscribe to
|
||||||
|
|||||||
@@ -30,4 +30,5 @@ Events: []
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: true
|
IsInstantiatable: true
|
||||||
|
StaticAlias: null
|
||||||
Description: Parts represent the basic building blocks of the world.
|
Description: Parts represent the basic building blocks of the world.
|
||||||
|
|||||||
@@ -73,5 +73,6 @@ Events: []
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: true
|
IsInstantiatable: true
|
||||||
|
StaticAlias: null
|
||||||
Description: Particles represents a particle system that can be used to create
|
Description: Particles represents a particle system that can be used to create
|
||||||
various visual effects.
|
various visual effects.
|
||||||
|
|||||||
@@ -84,4 +84,5 @@ Events:
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: true
|
IsAbstract: true
|
||||||
IsInstantiatable: false
|
IsInstantiatable: false
|
||||||
|
StaticAlias: null
|
||||||
Description: Physical represents an object affected by physics in the world.
|
Description: Physical represents an object affected by physics in the world.
|
||||||
|
|||||||
@@ -6,5 +6,6 @@ Events: []
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: true
|
IsInstantiatable: true
|
||||||
|
StaticAlias: null
|
||||||
Description: PhysicalModel is a object that represent a group of objects, that's
|
Description: PhysicalModel is a object that represent a group of objects, that's
|
||||||
affected by physics.
|
affected by physics.
|
||||||
|
|||||||
@@ -88,4 +88,5 @@ Events: []
|
|||||||
IsStatic: true
|
IsStatic: true
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: false
|
IsInstantiatable: false
|
||||||
|
StaticAlias: Places
|
||||||
Description: PlacesService is a service that is used to join players to other places
|
Description: PlacesService is a service that is used to join players to other places
|
||||||
|
|||||||
@@ -179,4 +179,5 @@ Events:
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: false
|
IsInstantiatable: false
|
||||||
|
StaticAlias: null
|
||||||
Description: Player represents a user playing the game.
|
Description: Player represents a user playing the game.
|
||||||
|
|||||||
@@ -110,5 +110,6 @@ Events: []
|
|||||||
IsStatic: true
|
IsStatic: true
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: false
|
IsInstantiatable: false
|
||||||
|
StaticAlias: PlayerDefaults
|
||||||
Description: PlayerDefaults is a service used for storing the default values of
|
Description: PlayerDefaults is a service used for storing the default values of
|
||||||
the Player when created.
|
the Player when created.
|
||||||
|
|||||||
@@ -6,4 +6,5 @@ Events: []
|
|||||||
IsStatic: true
|
IsStatic: true
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: false
|
IsInstantiatable: false
|
||||||
|
StaticAlias: PlayerGUI
|
||||||
Description: PlayerGUI is a class that contains all custom GUIs.
|
Description: PlayerGUI is a class that contains all custom GUIs.
|
||||||
|
|||||||
@@ -63,4 +63,5 @@ Events:
|
|||||||
IsStatic: true
|
IsStatic: true
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: false
|
IsInstantiatable: false
|
||||||
|
StaticAlias: Players
|
||||||
Description: Players is the container class for all Player instances.
|
Description: Players is the container class for all Player instances.
|
||||||
|
|||||||
@@ -12,5 +12,6 @@ Events: []
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: true
|
IsInstantiatable: true
|
||||||
|
StaticAlias: null
|
||||||
Description: PointLight is a type of light that emits light in all directions
|
Description: PointLight is a type of light that emits light in all directions
|
||||||
from a single point.
|
from a single point.
|
||||||
|
|||||||
@@ -139,4 +139,5 @@ Events:
|
|||||||
IsStatic: false
|
IsStatic: false
|
||||||
IsAbstract: false
|
IsAbstract: false
|
||||||
IsInstantiatable: true
|
IsInstantiatable: true
|
||||||
|
StaticAlias: null
|
||||||
Description: PolytorianModel is a CharacterModel that represent default Polytoria Character.
|
Description: PolytorianModel is a CharacterModel that represent default Polytoria Character.
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user