This file contains hidden or 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 UnityEngine; | |
using UnityEditor; | |
using NUnit.Framework; | |
public class NewEditorTest { | |
[Test] | |
public void EditorTest() | |
{ | |
//Arrange |
This file contains hidden or 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 UnityEngine; | |
using System.Collections; | |
using System.Threading; | |
public class ThreadedGameLogicObject : MonoBehaviour | |
{ | |
private Thread thread; | |
private Transform thisTransform; | |
private Vector3 currentPos; |
This file contains hidden or 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 UnityEngine; | |
using UnityEditor; | |
using System.Collections; | |
namespace EC | |
{ | |
public class PreviewGenerator : MonoBehaviour | |
{ | |
private void Start() | |
{ |
NewerOlder