Group PlayerPrefsConditions
Contains PlayerPrefs-related Pose Mod conditions that work on any application.
Assembly: kg_PoseMod.dll
Commands
PFloat(String, Single)
Checks if the value of the PlayerPref "name" of type "float" is different than value.
Declaration
public bool PFloat(string name, float value)
PInt(String, Int32)
Checks if the value of the PlayerPref "name" of type "int" is different than value.
Declaration
public bool PInt(string name, int value)
PPFloat(String, Single)
Checks if the value of the PlayerPref "name" of type "float" is equal to value.
Declaration
public bool PPFloat(string name, float value)
PPInt(String, Int32)
Checks if the value of the PlayerPref "name" of type "int" is equal to value.
Declaration
public bool PPInt(string name, int value)
PPString(String, String)
Checks if the value of the PlayerPref "name" of type "string" is equal to value.
Declaration
public bool PPString(string name, string value)
pstring(String, String)
Checks if the value of the PlayerPref "name" of type "string" is different than value.
Declaration
public bool pstring(string name, string value)