Ejemplo n.º 1
0
 public void Process(EntityManagerWrapper wrapper, EntityVariableMap variables, ref EntityBuilderData data)
 {
     wrapper.SetComponentData(data.entity, new Translation {
         Value = m_position
     });
 }
Ejemplo n.º 2
0
 public void Process(EntityManagerWrapper wrapper, EntityVariableMap variables, Entity entity)
 {
     wrapper.SetComponentData(entity, m_componentData);
 }
 public void Process(EntityManagerWrapper wrapper, EntityVariableMap variables, Entity entity)
 {
     wrapper.SetComponentData(entity, new Translation {
         Value = m_position
     });
 }
Ejemplo n.º 4
0