Ogre::MaterialManager - Ogre::MaterialManager documentation


Ogre documentation Contained in the Ogre distribution.

Index


Code Index:

NAME

Top

Ogre::MaterialManager

SYNOPSIS

Top

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

DESCRIPTION

Top

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

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

CLASS METHODS

Top

Ogre::MaterialManager->getSingletonPtr()

Returns

MaterialManager *

INSTANCE METHODS

Top

$obj->load($String name, $String group, $bool isManual=false, $ManualResourceLoader *loader=0)

Parameter types

$String name : (no info available)
$String group : (no info available)
$bool isManual=false : (no info available)
$ManualResourceLoader *loader=0 : (no info available)

Returns

Material *

$obj->setDefaultTextureFiltering($fo)

Parameter types

$fo : int

Returns

void

$obj->setDefaultAnisotropy($maxAniso)

Parameter types

$maxAniso : unsigned int

Returns

void

$obj->getDefaultAnisotropy()

Returns

unsigned int

AUTHOR

Top

Scott Lanning <slanning@cpan.org>

For licensing information, see README.txt .


Ogre documentation Contained in the Ogre distribution.

package Ogre::MaterialManager;

use strict;
use warnings;

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



1;

__END__