Uses of Interface
com.smartfoxserver.v2.entities.variables.UserVariable
-
Packages that use UserVariable Package Description com.smartfoxserver.v2.api com.smartfoxserver.v2.entities com.smartfoxserver.v2.entities.variables com.smartfoxserver.v2.mmo -
-
Uses of UserVariable in com.smartfoxserver.v2.api
Method parameters in com.smartfoxserver.v2.api with type arguments of type UserVariable Modifier and Type Method Description void
ISFSApi. setUserVariables(User owner, java.util.List<UserVariable> variables)
Set User Variables.void
ISFSApi. setUserVariables(User owner, java.util.List<UserVariable> variables, boolean fireClientEvent, boolean fireServerEvent)
Set User Variables.void
SFSApi. setUserVariables(User owner, java.util.List<UserVariable> variables)
Set User Variables.void
SFSApi. setUserVariables(User owner, java.util.List<UserVariable> variables, boolean fireClientEvent, boolean fireServerEvent)
Set User Variables. -
Uses of UserVariable in com.smartfoxserver.v2.entities
Methods in com.smartfoxserver.v2.entities that return UserVariable Modifier and Type Method Description UserVariable
SFSUser. getVariable(java.lang.String varName)
UserVariable
User. getVariable(java.lang.String key)
Return a UserVariable.Methods in com.smartfoxserver.v2.entities that return types with arguments of type UserVariable Modifier and Type Method Description java.util.List<UserVariable>
SFSUser. getVariables()
java.util.List<UserVariable>
User. getVariables()
Obtain the full list of UserVariablesMethods in com.smartfoxserver.v2.entities with parameters of type UserVariable Modifier and Type Method Description void
SFSUser. setVariable(UserVariable var)
void
User. setVariable(UserVariable userVariable)
Method parameters in com.smartfoxserver.v2.entities with type arguments of type UserVariable Modifier and Type Method Description void
SFSUser. setVariables(java.util.List<UserVariable> userVariables)
void
User. setVariables(java.util.List<UserVariable> userVariables)
-
Uses of UserVariable in com.smartfoxserver.v2.entities.variables
Subinterfaces of UserVariable in com.smartfoxserver.v2.entities.variables Modifier and Type Interface Description interface
RoomVariable
Classes in com.smartfoxserver.v2.entities.variables that implement UserVariable Modifier and Type Class Description class
SFSRoomVariable
RoomVariables are custom values attached to each Room object that get automatically updated between client and server on every change.class
SFSUserVariable
UserVariables are custom values attached to each User object that get automatically updated between client and server on every change. -
Uses of UserVariable in com.smartfoxserver.v2.mmo
Subinterfaces of UserVariable in com.smartfoxserver.v2.mmo Modifier and Type Interface Description interface
IMMOItemVariable
Classes in com.smartfoxserver.v2.mmo that implement UserVariable Modifier and Type Class Description class
MMOItemVariable
MMOItem Variables allow to attach custom properties to MMOItems inside an MMORoom.
-