Uses of Class
com.threerings.opengl.model.config.ModelConfig

Packages that use ModelConfig
com.threerings.opengl.effect.config Effect configurations. 
com.threerings.opengl.gui.config GUI configurations. 
com.threerings.opengl.model   
com.threerings.opengl.model.config Model and animation configurations. 
com.threerings.opengl.model.tools   
com.threerings.opengl.scene Scene management classes. 
com.threerings.opengl.scene.config Scene configurations. 
com.threerings.opengl.util   
com.threerings.tudey.client   
com.threerings.tudey.client.sprite   
com.threerings.tudey.config Tudey configurations. 
com.threerings.tudey.data Tudey data. 
com.threerings.tudey.server.logic   
 

Uses of ModelConfig in com.threerings.opengl.effect.config
 

Fields in com.threerings.opengl.effect.config with type parameters of type ModelConfig
 ConfigReference<ModelConfig> ParticleSystemConfig.Meshes.model
          The model containing the mesh.
 ConfigReference<ModelConfig> MetaParticleSystemConfig.Layer.model
          The model to use for the particles.
 

Uses of ModelConfig in com.threerings.opengl.gui.config
 

Fields in com.threerings.opengl.gui.config with type parameters of type ModelConfig
 ConfigReference<ModelConfig> ComponentConfig.ViewModel.model
          The model reference.
 

Uses of ModelConfig in com.threerings.opengl.model
 

Methods in com.threerings.opengl.model that return ModelConfig
 ModelConfig Model.getConfig()
          Returns a reference to this model's configuration.
 

Methods in com.threerings.opengl.model with parameters of type ModelConfig
 void Model.setConfig(ModelConfig config)
          Sets the configuration of this model.
 

Method parameters in com.threerings.opengl.model with type arguments of type ModelConfig
 void Model.configUpdated(ConfigEvent<ModelConfig> event)
           
 void Model.setConfig(ConfigReference<ModelConfig> ref)
          Sets the configuration of this model.
 

Constructors in com.threerings.opengl.model with parameters of type ModelConfig
Model(GlContext ctx, ModelConfig config)
          Creates a new model with the given configuration.
 

Constructor parameters in com.threerings.opengl.model with type arguments of type ModelConfig
Model(GlContext ctx, ConfigReference<ModelConfig> ref)
          Creates a new model with the referenced configuration.
 

Uses of ModelConfig in com.threerings.opengl.model.config
 

Fields in com.threerings.opengl.model.config with type parameters of type ModelConfig
 ConfigReference<ModelConfig> ConditionalConfig.defaultModel
          The default model reference.
 ConfigReference<ModelConfig> ModelConfig.Derived.model
          The model reference.
 ConfigReference<ModelConfig> ModelConfig.SchemedModel.model
          The model reference.
 ConfigReference<ModelConfig> ConditionalConfig.Case.model
          The model reference.
 ConfigReference<ModelConfig> CompoundConfig.ComponentModel.model
          The model reference.
 ConfigReference<ModelConfig> ArticulatedConfig.Attachment.model
          The model to attach to the node.
 ConfigReference<ModelConfig> ActionConfig.SpawnTransient.model
          The model to spawn.
 

Constructor parameters in com.threerings.opengl.model.config with type arguments of type ModelConfig
CompoundConfig.ComponentModel(ConfigReference<ModelConfig> model, Transform3D transform)
          Constructor that takes a precreated model reference and transform.
 

Uses of ModelConfig in com.threerings.opengl.model.tools
 

Fields in com.threerings.opengl.model.tools with type parameters of type ModelConfig
 ConfigReference<ModelConfig> ModelTool.EnvironmentModel.model
          The model reference.
 

Method parameters in com.threerings.opengl.model.tools with type arguments of type ModelConfig
 void ModelViewer.configUpdated(ConfigEvent<ModelConfig> event)
           
 

Uses of ModelConfig in com.threerings.opengl.scene
 

Method parameters in com.threerings.opengl.scene with type arguments of type ModelConfig
 Scene.Transient Scene.getFromTransientPool(ConfigReference<ModelConfig> ref)
          Returns an instance of the referenced model from the transient pool.
 Scene.Transient Scene.spawnTransient(ConfigReference<ModelConfig> ref, Transform3D transform)
          Spawns a transient model.
 

Constructor parameters in com.threerings.opengl.scene with type arguments of type ModelConfig
Scene.Transient(GlContext ctx, ConfigReference<ModelConfig> ref)
          Creates a new transient model.
 

Uses of ModelConfig in com.threerings.opengl.scene.config
 

Fields in com.threerings.opengl.scene.config with type parameters of type ModelConfig
 ConfigReference<ModelConfig> ViewerEffectConfig.Skybox.model
          The configuration of the skybox model.
 ConfigReference<ModelConfig> ViewerEffectConfig.Particles.model
          The configuration of the particle system model.
 

Uses of ModelConfig in com.threerings.opengl.util
 

Methods in com.threerings.opengl.util that return types with arguments of type ModelConfig
 ConfigReference<ModelConfig> Preloadable.Model.getReference()
          Returns a reference to the model config reference.
 

Constructor parameters in com.threerings.opengl.util with type arguments of type ModelConfig
Preloadable.Model(ConfigReference<ModelConfig> ref)
          Creates a new model resource.
 

Uses of ModelConfig in com.threerings.tudey.client
 

Method parameters in com.threerings.tudey.client with type arguments of type ModelConfig
 Model TudeySceneView.maybeMerge(int x, int y, ConfigReference<ModelConfig> ref, Transform3D transform, int floorFlags)
          Attempts to merge a static model.
 boolean TudeySceneView.unmerge(int x, int y, ConfigReference<ModelConfig> ref, Transform3D transform)
          Unmerges a model.
 

Uses of ModelConfig in com.threerings.tudey.client.sprite
 

Method parameters in com.threerings.tudey.client.sprite with type arguments of type ModelConfig
 void ActorSprite.spawnAttachedTransientModel(ConfigReference<ModelConfig> ref)
          Gets and attaches a transient model to this sprite.
 Model ActorSprite.spawnOffsetTransientModel(ConfigReference<ModelConfig> ref, boolean rotate)
          Spawns a transient model at a z-offset of the location of this sprite.
 Model ActorSprite.spawnOffsetTransientModel(ConfigReference<ModelConfig> ref, boolean rotate, float offset)
          Spawns a transient model at a z-offset of the location of this sprite.
 Model ActorSprite.spawnTransientModel(ConfigReference<ModelConfig> ref)
          Spawns a transient model at the location (translation and rotation) of this sprite.
 Model ActorSprite.spawnTransientModel(ConfigReference<ModelConfig> ref, boolean rotate)
          Spawns a transient model at the location of this sprite.
 

Uses of ModelConfig in com.threerings.tudey.config
 

Subclasses of ModelConfig in com.threerings.tudey.config
 class ActorModelConfig
          A model config wrapper for using an actor's model config.
 

Fields in com.threerings.tudey.config with type parameters of type ModelConfig
 ConfigReference<ModelConfig> ActorSpriteConfig.creationTransient
          A transient to spawn when the actor is created.
 ConfigReference<ModelConfig> ActorSpriteConfig.destructionTransient
          A transient to spawn when the actor is destroyed.
 ConfigReference<ModelConfig> TileConfig.Original.model
          The model to use for the tile.
 ConfigReference<ModelConfig> SceneGlobalConfig.EnvironmentModel.model
          The model to load.
 ConfigReference<ModelConfig> PlaceableConfig.Original.model
          The model to use to represent the placeable on the client.
 ConfigReference<ModelConfig> EffectSpriteConfig.model
          The transient to fire off for the effect.
 ConfigReference<ModelConfig> ActorSpriteConfig.model
          The actor model.
 

Uses of ModelConfig in com.threerings.tudey.data
 

Methods in com.threerings.tudey.data that return types with arguments of type ModelConfig
 ConfigReference<ModelConfig> TudeySceneModel.Entry.getModel(ConfigManager cfgmgr)
          Returns a reference to the model associated with the entry, if any.
 ConfigReference<ModelConfig> TudeySceneModel.TileEntry.getModel(ConfigManager cfgmgr)
           
 ConfigReference<ModelConfig> TudeySceneModel.PlaceableEntry.getModel(ConfigManager cfgmgr)
           
 

Uses of ModelConfig in com.threerings.tudey.server.logic
 

Methods in com.threerings.tudey.server.logic that return types with arguments of type ModelConfig
 ConfigReference<ModelConfig> Logic.getModel()
          Returns a reference to the model associated with this logic, if any.
 ConfigReference<ModelConfig> EntryLogic.getModel()
           
 ConfigReference<ModelConfig> ActorLogic.getModel()
           
 



Copyright © 2011. All Rights Reserved.