Ogre::OverlayContainer - Ogre::OverlayContainer documentation


Ogre documentation Contained in the Ogre distribution.

Index


Code Index:

NAME

Top

Ogre::OverlayContainer

SYNOPSIS

Top

  use Ogre;
  use Ogre::OverlayContainer;
  # (for now see examples/README.txt)

DESCRIPTION

Top

See the online API documentation athttp://www.ogre3d.org/docs/api/html/classOgre_1_1OverlayContainer.html

Note: this Perl binding is currently experimental and subject to API changes.

INSTANCE METHODS

Top

$obj->isContainer()

Returns

bool

$obj->addChild($elem)

Parameter types

$elem : OverlayElement *

Returns

void

$obj->addChildImpl($cont)

Parameter types

$cont : OverlayContainer *

Returns

void

$obj->removeChild($name)

Parameter types

$name : String

Returns

void

$obj->getChild($name)

Parameter types

$name : String

Returns

OverlayElement *

$obj->isChildrenProcessEvents()

Returns

bool

$obj->setChildrenProcessEvents($val)

Parameter types

$val : bool

Returns

void

AUTHOR

Top

Scott Lanning <slanning@cpan.org>

For licensing information, see README.txt .


Ogre documentation Contained in the Ogre distribution.

package Ogre::OverlayContainer;

use strict;
use warnings;

use Ogre::OverlayElement;
our @ISA = qw(Ogre::OverlayElement);


1;

__END__