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())
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())