You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
---@field GetEntityDriveMode function \`Serverside\`, Sandbox and Sandbox derived only. Called by the Drive property to override the default drive type, which is \`drive_sandbox\`.
51
-
---@field OnEntityCopyTableFinish function Documented at ENTITY:OnEntityCopyTableFinish.
52
-
---@field PostEntityCopy function Documented at ENTITY:PostEntityCopy.
53
-
---@field PostEntityPaste function Documented at ENTITY:PostEntityPaste.
54
-
---@field PreEntityCopy function Documented at ENTITY:PreEntityCopy.
55
-
---@field OnDuplicated function Documented at ENTITY:OnDuplicated.
56
-
---@field PhysgunDisabled boolean \`Shared\`, Sandbox or Sandbox derived only. If set to \`true\`, physgun will not be able to pick this entity up. This can also be set from map, see Sandbox Specific Mapping
57
-
---@field PhysgunPickup function \`Shared\`, Sandbox or Sandbox derived only. Called from GM:PhysgunPickup, overrides \`PhysgunDisabled\`
58
-
---@field m_tblToolsAllowed table \`Shared\`, Sandbox or Sandbox derived only. Controls which tools **and** properties can be used on this entity. Format is a list of strings where each string is the tool or property classname. This can also be set from map, see Sandbox Specific Mapping
59
-
---@field GravGunPickupAllowed function Documented at ENTITY:GravGunPickupAllowed.
60
-
---@field GravGunPunt function Documented at ENTITY:GravGunPunt.
61
-
---@field CanProperty function Documented at ENTITY:CanProperty.
62
-
---@field CanTool function Documented at ENTITY:CanTool.
63
-
---@field CalcAbsolutePosition function Documented at ENTITY:CalcAbsolutePosition.
64
-
---@field RenderOverride function Documented at ENTITY:RenderOverride.
65
-
---@field m_RenderOrigin Vector (Clientside) Do not use.
66
-
---@field m_RenderAngles Angle (Clientside) Do not use.
67
-
local Custom_Entity_Fields = {}\n\n`;
49
+
exportconstapiDefinition=
50
+
`---@class Custom_Entity_Fields
51
+
local Custom_Entity_Fields = {}
52
+
53
+
---\`Serverside\`, Sandbox and Sandbox derived only. Called by the Drive property to override the default drive type, which is \`drive_sandbox\`.
---\`Shared\`, Sandbox or Sandbox derived only. If set to \`true\`, physgun will not be able to pick this entity up. This can also be set from map, see Sandbox Specific Mapping
78
+
---@type boolean
79
+
Custom_Entity_Fields.PhysgunDisabled = nil
80
+
81
+
---\`Shared\`, Sandbox or Sandbox derived only. Called from GM:PhysgunPickup, overrides \`PhysgunDisabled\`
82
+
---@type function
83
+
Custom_Entity_Fields.PhysgunPickup = nil
84
+
85
+
---\`Shared\`, Sandbox or Sandbox derived only. Controls which tools **and** properties can be used on this entity. Format is a list of strings where each string is the tool or property classname. This can also be set from map, see Sandbox Specific Mapping
0 commit comments