ALFA.SystemInfo.SetGameObjUpdateTime C# (CSharp) Метод

SetGameObjUpdateTime() публичный статический Метод

This function sets the GameObjUpdate interval. The default is 200 milliseconds.
public static SetGameObjUpdateTime ( CLRScriptBase Script, int GameObjUpdateTime ) : void
Script CLRScriptFramework.CLRScriptBase Supplies the caller's script object.
GameObjUpdateTime int Supplies the new game object update /// time, in milliseconds.
Результат void
        public static void SetGameObjUpdateTime(CLRScriptBase Script, int GameObjUpdateTime)
        {
            Script.SetGlobalInt("ACR_GAMEOBJUPDATE_TIME", GameObjUpdateTime);
            Script.NWNXSetInt("BUGF", "GAMEOBJUPDATETIME", "", 0, GameObjUpdateTime * 1000);
        }