direct.showbase.Factory

from direct.showbase.Factory import Factory

Contains the Factory class.

Inheritance diagram

Inheritance diagram of direct.showbase.Factory

class Factory[source]

Bases: object

This class manages a list of object types and their corresponding constructors. Objects may be created on-demand from their type. Object types may be any hashable piece of unique data (such as a string).

This class is intended to be derived from. Subclasses should call self._registerTypes to set up type constructors.

__init__(self)[source]
create(self, type, *args, **kwArgs)[source]
notify = <direct.directnotify.Notifier.Notifier object>
nullCtor(self, *args, **kwArgs)[source]