Liberi
An exergame built for kids with CP!
PlayerHitLogger.cs
1 using UnityEngine;
2 using System.Collections;
3 
9 [Script(ScriptRole.ClientOwner)]
10 public class PlayerHitLogger : MonoBehaviour
11 {
12  void OnHit(HitInfo hit)
13  {
14  GameObject shooter = null;
15 
16  if (hit.Details.HasChild("Shooter"))
17  shooter = hit.Details["Shooter"].GameObjectValue;
18 
19  var trueSourceObject = shooter ?? hit.SourceObject;
20 
21  if (trueSourceObject != null)
22  Study.LogEvent(VitalsLogEvent.HitBy, Game.GetPlayerNickname(Sync.GetOwner(trueSourceObject)), hit.SourceObject.name, hit.Value);
23  }
24 }
Describes a hit on an object.
Definition: HitInfo.cs:12
float Value
An arbitrary value describing the magnitude of the hit. Depends on receiver interpretation.
Definition: HitInfo.cs:21
static int GetOwner(GameObject go)
Gets the owner peer index of a given object.
Definition: Sync.Static.cs:263
GameObject SourceObject
The object from which the hit originated.
Definition: HitInfo.cs:33
Attach to an Avatar to log inbound hits. Will only log hits from a source object is another player (o...
Class for managing study-related game components.
Definition: Study.cs:13
static void LogEvent(Enum eventType, params object[] args)
Log a game event.
Definition: Study.cs:57
UJeli Details
Additional hit details.
Definition: HitInfo.cs:41
This class server two main functions: 1) As a MonoBehaviour, it allows for network synchronization of...
Definition: Sync.cs:13