Ogre::BillboardChain - Ogre::BillboardChain documentation


Ogre documentation Contained in the Ogre distribution.

Index


Code Index:

NAME

Top

Ogre::BillboardChain

SYNOPSIS

Top

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

DESCRIPTION

Top

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.

AUTHOR

Top

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__