public DecayableBillboard CreateBillboard(BillboardSystemType type, Vector3 position)
 {
     return BillboardSystemMapper[type].CreateBillboard(position);
 }
 public DecayableBillboard CreateBillboard(BillboardSystemType type, Vector3 position, Vector2 dimension, float timeToLive)
 {
     return BillboardSystemMapper[type].CreateBillboard(position, dimension, timeToLive);
 }
Esempio n. 3
0
 public DecayableBillboard CreateDecayableBillboard(BillboardSystemType type, Vector3 position)
 {
     return BillboardSystemManager.CreateBillboard(type, position);
 }