Garry's Mod Wiki

Garry's Mod Wiki

  Entity:Activate()

Description

Activates the entity. This needs to be used on some entities (like constraints) after being spawned.

For some entity types when this function is used after Entity:SetModelScale, the physics object will be recreated with the new scale. Source-sdk-2013.

Calling this method after Entity:SetModelScale will recreate a new scaled SOLID_VPHYSICS PhysObj on scripted entities. This can be a problem if you made a properly scaled PhysObj of another kind (using Entity:PhysicsInitSphere for instance) or if you edited the PhysObj's properties. This is especially the behavior of the Sandbox spawn menu.

Example

Spawns a sent_ball on the player.

function ENT:SpawnMe(ply) local ent = ents.Create("sent_ball") ent:SetPos( ply:GetPos() ) ent:Spawn() ent:Activate() end

This site is a community mirror of the official Garry's Mod wiki.. This site is not maintained by Facepunch Studios.

Page content is automatically updated four times a day. Edits and history are not available.

Last Parsed: Loading...