Skip to content

Commit 6da314a

Browse files
committed
Added UnityService. Using UnityService cached camera for gesture handlers
1 parent 3de7221 commit 6da314a

5 files changed

+41
-4
lines changed

Gestures/GestureHandler.cs

+7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
using DigitalRubyShared;
2+
using TinyMatter.CardClash.Game;
23
using UnityEngine;
34

45
namespace TinyMatter.CardClash.Gameplay {
@@ -8,6 +9,12 @@ public abstract class GestureHandler : MonoBehaviour {
89

910
public System.Action<RaycastHit, GestureRecognizerState> hitHandler;
1011

12+
protected UnityService unityService;
13+
14+
private void Awake() {
15+
unityService = UnityService.DefaultService();
16+
}
17+
1118
public void RequireGestureHandlerToFail(GestureHandler otherHandler) {
1219
this.GetRecognizer().AddRequiredGestureRecognizerToFail(otherHandler.GetRecognizer());
1320
}

Gestures/PanGestureHandler.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ private void OnDestroy() {
2727

2828
private void PanGesture_StateUpdated(GestureRecognizer gestureRecognizer) {
2929
//get position in world space of touch
30-
Vector3 screenTouchPosition = new Vector3(gestureRecognizer.FocusX, gestureRecognizer.FocusY, 0f);
31-
Ray ray = Camera.main.ScreenPointToRay(screenTouchPosition);
30+
var screenTouchPosition = new Vector3(gestureRecognizer.FocusX, gestureRecognizer.FocusY, 0f);
31+
var ray = unityService.mainCamera.ScreenPointToRay(screenTouchPosition);
3232

3333
RaycastHit hit;
3434

Gestures/TapGestureHandler.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ private void OnDestroy() {
3636
}
3737

3838
private void TapGesture_StateUpdated(GestureRecognizer gestureRecognizer) {
39-
Vector3 screenTouchPosition = new Vector3(gestureRecognizer.FocusX, gestureRecognizer.FocusY, 0f);
40-
Ray ray = Camera.main.ScreenPointToRay(screenTouchPosition);
39+
var screenTouchPosition = new Vector3(gestureRecognizer.FocusX, gestureRecognizer.FocusY, 0f);
40+
var ray = unityService.mainCamera.ScreenPointToRay(screenTouchPosition);
4141

4242
RaycastHit hit;
4343

UnityService.cs

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
using System;
2+
using RSG;
3+
using UnityEngine;
4+
5+
namespace TinyMatter.CardClash.Game {
6+
public class UnityService {
7+
public readonly Camera mainCamera;
8+
private PromiseTimer promiseTimer;
9+
10+
public UnityService(Camera mainCamera) {
11+
this.mainCamera = mainCamera;
12+
promiseTimer = new PromiseTimer();
13+
}
14+
15+
public static UnityService DefaultService() {
16+
return new UnityService(mainCamera: Camera.main);
17+
}
18+
19+
public void Update() {
20+
promiseTimer.Update(Time.deltaTime);
21+
}
22+
23+
public IPromise WaitFor(float seconds) {
24+
return promiseTimer.WaitFor(seconds);
25+
}
26+
}
27+
}

UnityService.cs.meta

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)