Entity DeleteThis

From CryWiki

Jump to: navigation, search

entity:DeleteThis()

Description

Deletes the entity.


Example

Lua (example)
local e = System.GetEntityByName("US_apc1");
  e:DeleteThis();


Notes

You can also delete an entity with System.RemoveEntity:

local e = System.GetEntityByName("US_apc1");
  System.RemoveEntity(e.id);
Personal tools