3 using System.Collections.Generic;
14 public KeyCode NormalHeartRateKey;
15 public KeyCode TargetHeartRateKey;
16 public KeyCode VigorousHeartRateKey;
30 if (Input.GetKeyDown(NormalHeartRateKey))
32 Heart.
InjectRate((_health.RestingHeartRate + _health.TargetHeartRate) / 2);
35 else if (Input.GetKeyDown(TargetHeartRateKey))
40 else if (Input.GetKeyDown(VigorousHeartRateKey))
48 void OnConnectedToWorldServer()
50 _health = Game.LocalPlayerProfile.Health;
52 Heart.
InjectRate((_health.RestingHeartRate + _health.TargetHeartRate) / 2);
55 void OnDisconnectedFromWorldServer()
A Device for providing simulated Heartrate information to the Heart class from keyboard input...
Heart class. Allows for heart rate queries and heart rate injection from devices. ...
Abstract class to be extended by devices.
DisconnectedFromWorldServerHandler DisconnectedFromWorldServer
Event fired when the game client is disconnected from the world server.
static void InjectRate(float heartRate)
Injects a heart rate.
ConnectedToWorldServerHandler ConnectedToWorldServer
Event fired when the game client successfully connects to the world server.
static GameClient Instance
Gets the sole instance of the game client.