Ejemplo n.º 1
0
 // Token: 0x060006A8 RID: 1704 RVA: 0x000252F5 File Offset: 0x000234F5
 private void SpawnEMF(Vector3 pos, EMF.Type type)
 {
     this.view.RPC("SpawnEMFNetworked", PhotonTargets.All, new object[]
     {
         pos,
         (int)type
     });
 }
Ejemplo n.º 2
0
 // Token: 0x06000640 RID: 1600 RVA: 0x00022C2F File Offset: 0x00020E2F
 public void SetType(EMF.Type type)
 {
     if (type == EMF.Type.GhostInteraction)
     {
         this.strength = 1;
         return;
     }
     if (type == EMF.Type.GhostThrowing)
     {
         this.strength = 2;
         return;
     }
     if (type == EMF.Type.GhostAppeared)
     {
         this.strength = 3;
         return;
     }
     if (type == EMF.Type.GhostEvidence)
     {
         this.strength = 4;
     }
 }