-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgmobject.lua
62 lines (55 loc) · 2.96 KB
/
gmobject.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
---@meta _
--- A `GMObject` is a specific type of [Instance](https://saturnyoshi.gitlab.io/RoRML-Docs/class/instance.html).
---
--- `GMObject` inherits all functionality from [GMObjectBase](https://saturnyoshi.gitlab.io/RoRML-Docs/class/gmObjectBase.html).
---
--- A list of most usable objects added by the base game can be found on [this page](https://saturnyoshi.gitlab.io/RoRML-Docs/misc/objects.html).
---
---@class GMObject: GMObjectBase
---@field id Id The object's GameMaker resource ID
---@field ID Id alias for `id`
---@field sprite Sprite The default sprite of the object
---@field depth number The depth the object will be rendered at. A higher depth means the object will be rendered further back. *defaults to 0*
local GMObject = {}
--- Creates an [Instance](https://saturnyoshi.gitlab.io/RoRML-Docs/class/instance.html) of the object at the specified position in the game world.
---
--- # Example
--- Create an instance of the object `eggplant` at coordinates 200, 200.
--- ```lua
--- eggplant:create(200, 200)
--- ```
---
---@param x number The horizontal coordinate to create the instance at
---@param y number The vertical coordinate to create the instance at
---@return Instance '' The newly created instance.
function GMObject:create(x, y) end
--- See the page on [namespace searching](https://saturnyoshi.gitlab.io/RoRML-Docs/misc/contextSearch.html#context-origin) for more information.
---
---@return Namespace namespace '' The namespace containing the object
function GMObject:getOrigin() end
--- See the page on [namespace searching](https://saturnyoshi.gitlab.io/RoRML-Docs/misc/contextSearch.html#context-name) for more information.
---
---@return string '' The name of the object
function GMObject:getName() end
---@alias GMObjectCallback
---| 'create' [*built-in object compatible*] Called each time a new instance is created.
---| 'destroy' [*built-in object compatible*] Called when an instance is destroyed.
---| 'step' [*built-in object incompatible*] Called each frame when instance logic is handled.
---| 'draw' [*built-in object incompatible*] Called when the instance is rendered to the screen.
--- Binds a function to be called by [Instances](https://saturnyoshi.gitlab.io/RoRML-Docs/class/instance.html) of the object alongside a specific event.
---
--- The [Instance](https://saturnyoshi.gitlab.io/RoRML-Docs/class/instance.html) calling the function is passed along to it.
---
--- **Note**: that some events are not currently supported by built-in objects.
---
--- # Example
--- Make instances of the object `leftMover` move to the left by 2 pixels each frame.
--- ```lua
--- leftMover:addCallback("step", function(self)
--- self.x = self.x - 2
--- end)
--- ```
---
---@param callback GMObjectCallback The name of the callback to bind a function onto
---@param bind fun(self: Instance) The function to be run when the callback is fired. The function is always passed the Instance which fired the callback
function GMObject:addCallback(callback, bind) end