|
|
|
@ -35,23 +35,23 @@ export class ModelInfo_mark_particle extends ModelInfo_mark {
|
|
|
|
|
case MarkType.H: |
|
|
|
|
particleJsonPath.push("assets/particlesystem/fire/fire_h_1.json"); |
|
|
|
|
particleJsonPath.push("assets/particlesystem/smoke/smoke_a.json"); |
|
|
|
|
instance.modelBox.scaling = new Vector3(5, 1, 5); |
|
|
|
|
instance.modelBox.scaling = new Vector3(50, 70, 50); |
|
|
|
|
posOffset.y = 0.7 / instance.modelBox.scaling.y; |
|
|
|
|
break; |
|
|
|
|
case MarkType.SNH: |
|
|
|
|
particleJsonPath.push("assets/particlesystem/fire/fire_snh_1.json"); |
|
|
|
|
particleJsonPath.push("assets/particlesystem/smoke/smoke_snh.json"); |
|
|
|
|
instance.modelBox.scaling = new Vector3(3, 1, 3); |
|
|
|
|
instance.modelBox.scaling = new Vector3(30, 60, 30); |
|
|
|
|
posOffset.y = 0.2 / instance.modelBox.scaling.y; |
|
|
|
|
break; |
|
|
|
|
case MarkType.YWA: |
|
|
|
|
particleJsonPath.push("assets/particlesystem/smoke/smoke_a.json"); |
|
|
|
|
instance.modelBox.scaling = new Vector3(5, 1, 5); |
|
|
|
|
instance.modelBox.scaling = new Vector3(50, 130, 50); |
|
|
|
|
posOffset.y = 0.1 / instance.modelBox.scaling.y; |
|
|
|
|
break; |
|
|
|
|
case MarkType.YWB: |
|
|
|
|
particleJsonPath.push("assets/particlesystem/smoke/smoke_snh.json"); |
|
|
|
|
instance.modelBox.scaling = new Vector3(3, 1, 3); |
|
|
|
|
instance.modelBox.scaling = new Vector3(30, 60, 30); |
|
|
|
|
posOffset.y = 0.2 / instance.modelBox.scaling.y; |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|