Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ function Ext.RegisterConsoleCommand(cmd, handler) end
--- @class EntityHandle
--- @field CreateComponent fun(self:EntityHandle, type:ExtComponentType):BaseComponent
--- @field GetComponent fun(self:EntityHandle, type:ExtComponentType):BaseComponent
--- @field HasRawComponent fun(self:EntityHandle, type:FixedString):boolean
--- @field GetAllComponents fun(self:EntityHandle, warnOnMissing:boolean?):table<ExtComponentType,BaseComponent>
--- @field GetAllComponentNames fun(self:EntityHandle, mapped:boolean?):table<number,string>
--- @field GetEntityType fun(self:EntityHandle):number
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,9 @@ function Ext_ServerOsiris.RegisterListener(name, arity, typeName, callback) end
["ExtuiTreeParent.AddChildWindow"] = {
ReplaceReturnValue = "ExtuiChildWindow"
},
["ExtuiTreeParent.AddMenu"] = {
ReplaceReturnValue = "ExtuiMenu"
},
["ExtuiTreeParent.AddRadioButton"] = {
ReplaceReturnValue = "ExtuiRadioButton"
},
Expand Down