Uses of Class
cz.cuni.amis.pogamut.unreal.t3dgenerator.datatypes.UnrealReference

Packages that use UnrealReference
cz.cuni.amis.pogamut.unreal.t3dgenerator.datatypes This package contains datatypes that are defined in unreal. 
cz.cuni.amis.pogamut.unreal.t3dgenerator.elements This package contains abstract classes that are implemented by elements from various domains. 
cz.cuni.amis.pogamut.unreal.t3dgenerator.elements.kismet This package contains classes that represent Kismet objects. 
cz.cuni.amis.pogamut.unreal.t3dgenerator.elements.map This package contains classes that represent objects in an unreal map - meshes, lights, navigation points etc. 
 

Uses of UnrealReference in cz.cuni.amis.pogamut.unreal.t3dgenerator.datatypes
 

Subclasses of UnrealReference in cz.cuni.amis.pogamut.unreal.t3dgenerator.datatypes
 class DynamicReference
          A reference created by reading name and class of another object.
 class NullReference
          An empty reference.
 class StaticReference
          A reference that is initialized by string classname and name.
 

Methods in cz.cuni.amis.pogamut.unreal.t3dgenerator.datatypes that return UnrealReference
 UnrealReference KismetVariableLink.getExpectedType()
           
 UnrealReference KismetVariableLink.getExternalVariable()
          Get external variable
 UnrealReference KismetOutputLink.getLinkOrigin()
           
 UnrealReference KismetInputLink.getTarget()
           
 UnrealReference KismetLinkTarget.getTargetObject()
           
 

Methods in cz.cuni.amis.pogamut.unreal.t3dgenerator.datatypes that return types with arguments of type UnrealReference
 List<UnrealReference> KismetVariableLink.getLinkedVariables()
           
 

Methods in cz.cuni.amis.pogamut.unreal.t3dgenerator.datatypes with parameters of type UnrealReference
 void KismetVariableLink.addLinkedVariable(UnrealReference variable)
           
 void KismetVariableLink.setExpectedType(UnrealReference expectedType)
           
 void KismetVariableLink.setExternalVariable(UnrealReference linkVar)
           
 void KismetOutputLink.setLinkOrigin(UnrealReference linkOrigin)
           
 void KismetInputLink.setTarget(UnrealReference target)
           
 

Constructors in cz.cuni.amis.pogamut.unreal.t3dgenerator.datatypes with parameters of type UnrealReference
KismetInputLink(UnrealReference target)
           
KismetInputLink(UnrealReference target, Integer drawY, Integer overrideDelta)
           
KismetLinkTarget(UnrealReference targetObject, int inputLinkIndex)
           
KismetVariableLink(UnrealReference singleLinkedVariable)
           
 

Constructor parameters in cz.cuni.amis.pogamut.unreal.t3dgenerator.datatypes with type arguments of type UnrealReference
KismetVariableLink(List<UnrealReference> linkedVariables)
           
KismetVariableLink(List<UnrealReference> linkedVariables, Integer drawY, Integer overrideDelta)
           
 

Uses of UnrealReference in cz.cuni.amis.pogamut.unreal.t3dgenerator.elements
 

Methods in cz.cuni.amis.pogamut.unreal.t3dgenerator.elements that return UnrealReference
 UnrealReference AbstractUnrealBean.getArchetype()
           
 UnrealReference IUnrealReferencable.getReference()
           
 UnrealReference AbstractUnrealBean.getReference()
           
 

Constructors in cz.cuni.amis.pogamut.unreal.t3dgenerator.elements with parameters of type UnrealReference
AbstractUnrealBean(String className, UnrealReference archetype)
           
AbstractUnrealBean(String className, UnrealReference archetype, String name)
           
AbstractUnrealObject(String className, UnrealReference archetype)
           
 

Uses of UnrealReference in cz.cuni.amis.pogamut.unreal.t3dgenerator.elements.kismet
 

Methods in cz.cuni.amis.pogamut.unreal.t3dgenerator.elements.kismet that return UnrealReference
 UnrealReference ExternalVariable.getExpectedType()
           
 UnrealReference TriggerUsedEvent.getOriginator()
           
 UnrealReference ObjectVariable.getValue()
           
 

Methods in cz.cuni.amis.pogamut.unreal.t3dgenerator.elements.kismet with parameters of type UnrealReference
 void AbstractKismetObject.addVariableLinkTarget(String linkName, UnrealReference target)
           
 void ExternalVariable.setExpectedType(UnrealReference expectedType)
           
 void AbstractKismetObject.setIntputLinkTarget(String linkName, UnrealReference target)
           
 void TriggerUsedEvent.setOriginator(UnrealReference originator)
           
 void ObjectVariable.setValue(UnrealReference value)
           
 

Constructors in cz.cuni.amis.pogamut.unreal.t3dgenerator.elements.kismet with parameters of type UnrealReference
AbstractKismetObject(String className, UnrealReference archetype, String[] inputLinkNames, String[] outputLinkNames, String[] variableLinkNames)
           
KismetEvent(String className, UnrealReference archetype, String[] outputLinkNames, String[] variableLinkNames)
          Creates new KismetEvent, "instigator" default variable link is added as first variable link.
KismetVariable(String className, UnrealReference archetype)
           
ObjectVariable(String archetypeName, UnrealReference value)
           
ObjectVariable(UnrealReference value)
           
TriggerUsedEvent(String archetypeName, UnrealReference originator)
           
TriggerUsedEvent(UnrealReference originator)
           
 

Uses of UnrealReference in cz.cuni.amis.pogamut.unreal.t3dgenerator.elements.map
 

Methods in cz.cuni.amis.pogamut.unreal.t3dgenerator.elements.map that return UnrealReference
 UnrealReference DoorMarker.getDoorTrigger()
           
 UnrealReference DoorMarker.getMover()
           
 UnrealReference AbstractPrimitiveComponent.getReplacementPrimitive()
           
 UnrealReference SpriteComponent.getSprite()
           
 UnrealReference StaticMeshComponent.getStaticMesh()
           
 UnrealReference PrefabInstance.getTemplatePrefab()
           
 

Methods in cz.cuni.amis.pogamut.unreal.t3dgenerator.elements.map with parameters of type UnrealReference
 void DoorMarker.setDoorTrigger(UnrealReference doorTrigger)
           
 void DoorMarker.setMover(UnrealReference mover)
           
 void AbstractPrimitiveComponent.setReplacementPrimitive(UnrealReference replacementPrimitive)
           
 void SpriteComponent.setSprite(UnrealReference sprite)
           
 void StaticMeshComponent.setStaticMesh(UnrealReference staticMesh)
           
 

Constructors in cz.cuni.amis.pogamut.unreal.t3dgenerator.elements.map with parameters of type UnrealReference
AbstractPrimitiveComponent(String componentName, UnrealReference archetype)
           
AbstractPrimitiveComponent(String componentName, UnrealReference archetype, String className)
           
DoorMarker(Point3D location, UnrealReference mover)
           
 



Copyright © 2012 AMIS research group, Faculty of Mathematics and Physics, Charles University in Prague, Czech Republic. All Rights Reserved.