AIWorld
from panda3d.ai import AIWorld
- class AIWorld
Bases:
A class that implements the virtual AI world which keeps track of the AI characters active at any given time. It contains a linked list of AI characters, obstactle data and unique name for each character. It also updates each characters state. The AI characters can also be added to the world as flocks.
Inheritance diagram
- __init__(render: panda3d.core.NodePath)
- addAiChar(ai_ch: AICharacter)
- addFlock(flock: Flock)
This function adds all the AI characters in the Flock object to the AICharPool. This function allows adding the AI characetrs as part of a flock.
- addObstacle(obstacle: panda3d.core.NodePath)
This function adds the nodepath as an obstacle that is needed by the obstacle avoidance behavior.
- flockOff(flock_id: int)
This function turns off the flock behavior temporarily. Similar to pausing the behavior.
- printList()
This function prints the names of the AI characters that have been added to the
AIWorld
. Useful for debugging purposes.
- removeObstacle(obstacle: panda3d.core.NodePath)
This function removes the nodepath from the obstacles list that is needed by the obstacle avoidance behavior.