Liberi
An exergame built for kids with CP!
HitInfo.cs
1 using UnityEngine;
2 using System.Collections;
3 using System.Collections.Generic;
4 using Janus;
5 using System;
6 using System.Linq;
7 using System.Reflection;
8 
12 public class HitInfo
13 {
17  public Vector3 Location;
21  public float Value;
25  public bool IsFatal;
33  public GameObject SourceObject;
37  public string HitTag;
41  public UJeli Details;
45  public bool Cancel;
46 }
Vector3 Location
The location at which the hit took place.
Definition: HitInfo.cs:17
Describes a hit on an object.
Definition: HitInfo.cs:12
string HitTag
A tag describing the hit.
Definition: HitInfo.cs:37
bool Cancel
Whether or not the hit should be canceled.
Definition: HitInfo.cs:45
Manages the "vitals" of an object (health, regeneration, damage).
Definition: Vitals.cs:17
float Value
An arbitrary value describing the magnitude of the hit. Depends on receiver interpretation.
Definition: HitInfo.cs:21
Vitals TargetVitals
The Vitals component to which the hit was applied.
Definition: HitInfo.cs:29
GameObject SourceObject
The object from which the hit originated.
Definition: HitInfo.cs:33
bool IsFatal
Whether or not the hit would be fatal to the target.
Definition: HitInfo.cs:25
Unity version of Jeli markup class.
Definition: UJeli.cs:10
UJeli Details
Additional hit details.
Definition: HitInfo.cs:41