Files
gtav-src/tools_ng/bin/audio/FaceFx 2012/Scripts/FxUtil.py
T
2025-09-29 00:52:08 +02:00

20 lines
487 B
Python
Executable File

""" This module provides utility functions for FaceFX python scripting that
needed a good home.
Owner: Jamie Redmond
Copyright (c) 2002-2011 OC3 Entertainment, Inc.
"""
import FxStudio
def isConsoleVariableSetToDefault(cvarName):
""" Returns True if the given console variable is currently set to its
default value and False otherwise.
"""
return FxStudio.getConsoleVariable(cvarName) == \
FxStudio.getConsoleVariableDefault(cvarName)