This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From be12c321f40f58782f103a526937df3f06e773af Mon Sep 17 00:00:00 2001 | |
From: James Reggio <[email protected]> | |
Date: Tue, 2 Jan 2018 12:49:05 -0500 | |
Subject: [PATCH] Fire timers in the background exclusively via NSTimer | |
--- | |
React/Modules/RCTTiming.m | 40 ++++++++++++++++++++++++++++++++++----- | |
1 file changed, 35 insertions(+), 5 deletions(-) | |
diff --git a/React/Modules/RCTTiming.m b/React/Modules/RCTTiming.m |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.IO; | |
using System.Diagnostics; | |
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
using UnityEditor; | |
using UnityEditor.Callbacks; |