This wiki is archived and useful information is being migrated to the main bzflag.org website

Difference between revisions of "Define"

From BZFlagWiki
Jump to: navigation, search
(Group Definitions)
 
(Added Categories)
Line 13: Line 13:
 
   # meshbox
 
   # meshbox
 
   # meshpyr
 
   # meshpyr
 +
  # arc
 +
  # sphere
 
   
 
   
 
  enddef
 
  enddef
Line 29: Line 31:
 
==History==
 
==History==
 
The group definition object was added with the [[BZFlag 2.0.0|v2.0.0]] release of BZFlag.
 
The group definition object was added with the [[BZFlag 2.0.0|v2.0.0]] release of BZFlag.
 +
 +
[[Category:Map_making]]
 +
[[Category:Map_Objects]]

Revision as of 17:01, 10 March 2007

Group Definition, or define, will group a set of objects that can be recalled and duplicated multiple times with the group object.

Define goes hand-in-hand with the group object.

Code

define my_group

  # You can put the following objects in a group definition:
  # box
  # pyramid
  # base
  # mesh
  # meshbox
  # meshpyr
  # arc
  # sphere

enddef
#You can then recall the group with

group my_group
  shift 0 0 0
end

A more detailed description of the group installation can be found here.

Editor Support

There are currently no supported editors: group definitions are normally most useful when editing by hand.

History

The group definition object was added with the v2.0.0 release of BZFlag.