Object

From Bohemia Interactive Community
Revision as of 03:24, 27 August 2007 by Mikero (talk | contribs)
Jump to navigation Jump to search

An Object in the scripting(sqs)language is a generic reference for a soldier, vehicle or building.

Such an object can be animated (a house, a tank), can have ai associated with it (a soldier), or, simply be a 'Rock'

various commands in the scripting language can refer as equally to generic (eg Object) types, as much as specific subtypes.

_pos = GetPos player; _pos = GetPos _MyHouse;