Liberi
An exergame built for kids with CP!
ProjectileHitLogger.cs
1 using UnityEngine;
2 using System.Collections;
3 
7 [Script(ScriptRole.ClientOwner)]
8 public class ProjectileHitLogger : MonoBehaviour
9 {
14  void OnOutgoingHit(GameObject hitObject, HitInfo hit)
15  {
16  if (!hitObject.CompareTag("Avatar"))
17  Study.LogEvent(VitalsLogEvent.Hit, hitObject.name, name, hit.Value);
18 
19  else
20  {
21  string playerName = "Bot";
22 
23  if (Sync.IsClientOwned(hitObject))
24  playerName = Game.GetPlayerProfile(Game.GetPlayerID(Sync.GetOwner(hitObject))).Basic.Nickname;
25 
26  Study.LogEvent(VitalsLogEvent.Hit, playerName, name, hit.Value);
27  }
28  }
29 }
static bool IsClientOwned(GameObject go)
Gets whether or not the given object is owned by a client.
Definition: Sync.Static.cs:359
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
Logs Projectile hits for the owner of that projectile.
static int GetOwner(GameObject go)
Gets the owner peer index of a given object.
Definition: Sync.Static.cs:263
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
This class server two main functions: 1) As a MonoBehaviour, it allows for network synchronization of...
Definition: Sync.cs:13