C4 Engine
C4 Engine API Documentation

class Space

Defined in:  C4Spaces.h
The Space class represents a space node in a world.
Definition

class Space : public Node

Member Functions
Space::GetSpaceType Returns the specific type of a space.
Constructor

Space(SpaceType type);

Parameters
type The type of the space. See below for a list of possible types.
Description
The Space class is the base class for all space nodes. The type parameter can be one of the following constants, and it is specified by the subclass's constructor.
kSpaceFog Fog space.
kSpaceShadow Shadow space.
kSpaceIlluminance Illuminance space.
kSpaceAcoustics Acoustics space.
kSpaceOcclusion Occlusion space.
kSpacePaint Paint space.
kSpacePhysics Physics space.
kSpaceVisual Visual space.
Base Classes
Node A Space node is a scene graph node.
See Also

SpaceObject

Wiki Articles

Spaces