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
adb logcat -s Unity$ ActivityManager PackageManager dalvikvm DEBUG |
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 System; | |
using UnityEngine; | |
[Serializable] | |
public class UnityCloudBuildManifest | |
{ | |
public string scmCommitId; | |
public string scmBranch; | |
public string buildNumber; | |
public string buildStartTime; |
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
// Based on work of FatiguedArtist from https://forum.unity.com/threads/a-free-simple-smooth-mouselook.73117/ | |
// Added simple WASD controlling, which can be enabled by pressing right mouse button. | |
// Deleted comments and some fields. | |
using UnityEngine; | |
public class WASDMoving : MonoBehaviour | |
{ | |
public Vector2 clampInDegrees = new Vector2(360, 180); | |
public Vector2 sensitivity = new Vector2(2, 2); |