Better UVs for map
This commit is contained in:
parent
2822b3e4b8
commit
d860f2f53f
@ -1,18 +0,0 @@
|
||||
using System;
|
||||
using UnityEngine;
|
||||
using UnityEngine.SceneManagement;
|
||||
using UnityStandardAssets.CrossPlatformInput;
|
||||
|
||||
[RequireComponent(typeof (GUITexture))]
|
||||
public class ForcedReset : MonoBehaviour
|
||||
{
|
||||
private void Update()
|
||||
{
|
||||
// if we have forced a reset ...
|
||||
if (CrossPlatformInputManager.GetButtonDown("ResetObject"))
|
||||
{
|
||||
//... reload the scene
|
||||
SceneManager.LoadScene(SceneManager.GetSceneAt(0).name);
|
||||
}
|
||||
}
|
||||
}
|
@ -1,9 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 9b886447cba80f74e820adb3c9e70c76
|
||||
MonoImporter:
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
@ -1,38 +0,0 @@
|
||||
using System;
|
||||
using UnityEngine;
|
||||
|
||||
namespace UnityStandardAssets.Utility
|
||||
{
|
||||
public class SimpleActivatorMenu : MonoBehaviour
|
||||
{
|
||||
// An incredibly simple menu which, when given references
|
||||
// to gameobjects in the scene
|
||||
public GUIText camSwitchButton;
|
||||
public GameObject[] objects;
|
||||
|
||||
|
||||
private int m_CurrentActiveObject;
|
||||
|
||||
|
||||
private void OnEnable()
|
||||
{
|
||||
// active object starts from first in array
|
||||
m_CurrentActiveObject = 0;
|
||||
camSwitchButton.text = objects[m_CurrentActiveObject].name;
|
||||
}
|
||||
|
||||
|
||||
public void NextCamera()
|
||||
{
|
||||
int nextactiveobject = m_CurrentActiveObject + 1 >= objects.Length ? 0 : m_CurrentActiveObject + 1;
|
||||
|
||||
for (int i = 0; i < objects.Length; i++)
|
||||
{
|
||||
objects[i].SetActive(i == nextactiveobject);
|
||||
}
|
||||
|
||||
m_CurrentActiveObject = nextactiveobject;
|
||||
camSwitchButton.text = objects[m_CurrentActiveObject].name;
|
||||
}
|
||||
}
|
||||
}
|
@ -1,9 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 69b69a5b0e0a85b4aa97a7edc40c37d1
|
||||
MonoImporter:
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
Loading…
Reference in New Issue
Block a user