Category:Entity functions

From Fortress Forever Wiki
Revision as of 22:18, 25 June 2011 by Crazycarl (talk | contribs)
Jump to navigationJump to search


Mapping for FF
The Basics

Setting up Hammer
Getting Started With Lua
Releasing a map

FF-specific Entities

Lua location system

Map Templates
FF Lua Documentation

Entity Typing
Entity Collections

Commands
Callbacks

Entity Functions

These Lua functions are common to all entities in FF Generally, any entity placed in the map should work with these.

  • object = baseentity:new({collection}) creates a Lua object that corresponds to a map entity. You must call new() before you can access any entity through Lua. Collection is a table you can use to define any custom Lua variables you want. See Lua:info_ff_script#Example for example code.
  • baseentity:Teleport(Vector neworigin, QAngle newangles, Vector newvelocity)
  • entity = baseentity:GetOwner() Returns the entity that "owns" the first entity.

This category currently contains no pages or media.