Example #1
0
 def remove_public(self):
     """Remove the notify flag and makes the cvar no longer public."""
     self.remove_flags(ConVarFlags.NOTIFY)
     cvar.call_global_change_callbacks(
         self, self.get_string(), self.get_float())
Example #2
0
 def make_public(self):
     """Set the notify flag and makes the cvar public."""
     self.add_flags(ConVarFlags.NOTIFY)
     cvar.call_global_change_callbacks(
         self, self.get_string(), self.get_float())