| Ogre documentation | Contained in the Ogre distribution. |
Ogre::BillboardChain
use Ogre; use Ogre::BillboardChain; # (for now see examples/README.txt)
See the online API documentation athttp://www.ogre3d.org/docs/api/html/classOgre_1_1BillboardChain.html
Note: this Perl binding is currently experimental and subject to API changes.
Scott Lanning <slanning@cpan.org>
For licensing information, see README.txt .
| Ogre documentation | Contained in the Ogre distribution. |
package Ogre::BillboardChain; use strict; use warnings; use Ogre::MovableObject; use Ogre::Renderable; our @ISA = qw(Ogre::MovableObject Ogre::Renderable); ########## GENERATED CONSTANTS BEGIN require Exporter; unshift @Ogre::BillboardChain::ISA, 'Exporter'; our %EXPORT_TAGS = ( 'TexCoordDirection' => [qw( TCD_U TCD_V )], ); $EXPORT_TAGS{'all'} = [ map { @{ $EXPORT_TAGS{$_} } } keys %EXPORT_TAGS ]; our @EXPORT_OK = @{ $EXPORT_TAGS{'all'} }; our @EXPORT = (); ########## GENERATED CONSTANTS END 1; __END__