open_toontown_panda3d/direct/src/showbase/InputStateGlobal.py

11 lines
263 B
Python

"""instantiate global InputState object"""
__all__ = ['inputState']
# This file had to be separated from MessengerGlobal to resolve a
# circular include dependency with DirectObject.
from direct.controls import InputState
inputState = InputState.InputState()