Ejemplo n.º 1
0
        public FXCreateEntity SetData(Vector3 pos, Enum.FXType type)
        {
            Position = pos;
            FXType   = type;

            return(this);
        }
Ejemplo n.º 2
0
 public FXCreateEntity(Vector3 pos, Enum.FXType type)
 {
     SetData(pos, type);
 }
Ejemplo n.º 3
0
 public FXCreateEntity(Vector3 pos, Enum.FXType type, Color fxColor)
 {
     SetData(pos, type);
     FXColor = fxColor;
 }
Ejemplo n.º 4
0
 public void InvokeHop(Enum.FXType type)
 {
     _onHop.OnNext(_actionEntity.SetData(this.transform.position, type));
 }