Compare commits
7 Commits
280626bf6b
...
feat/add-j
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d0d5fccc37 | ||
|
|
faf2f92521 | ||
|
|
ffa489db0d | ||
|
|
53fd617abe | ||
|
|
64b2d63799 | ||
|
|
f42463176f | ||
|
|
ab434be65f |
@@ -55,7 +55,8 @@ public class ButtonSequenceDoorPuzzle : MonoBehaviour
|
|||||||
if (button == null)
|
if (button == null)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
UnityAction action = () => OnButtonPressed(i);
|
int buttonIndex = i;
|
||||||
|
UnityAction action = () => OnButtonPressed(buttonIndex);
|
||||||
m_cachedListeners[i] = action;
|
m_cachedListeners[i] = action;
|
||||||
button.OnInteract.AddListener(action);
|
button.OnInteract.AddListener(action);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -20,7 +20,6 @@ public class PressurePlateButton : MonoBehaviour
|
|||||||
public UnityEvent OnReleased;
|
public UnityEvent OnReleased;
|
||||||
|
|
||||||
private readonly HashSet<Collider> m_validCollidersOnPlate = new HashSet<Collider>();
|
private readonly HashSet<Collider> m_validCollidersOnPlate = new HashSet<Collider>();
|
||||||
private readonly HashSet<Collider> m_stayedThisPhysicsFrame = new HashSet<Collider>();
|
|
||||||
private bool m_isPressed;
|
private bool m_isPressed;
|
||||||
|
|
||||||
private void Reset()
|
private void Reset()
|
||||||
@@ -43,16 +42,8 @@ public class PressurePlateButton : MonoBehaviour
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void OnTriggerStay(Collider other)
|
|
||||||
{
|
|
||||||
if (IsValidActivator(other))
|
|
||||||
m_stayedThisPhysicsFrame.Add(other);
|
|
||||||
}
|
|
||||||
|
|
||||||
private void OnTriggerExit(Collider other)
|
private void OnTriggerExit(Collider other)
|
||||||
{
|
{
|
||||||
m_stayedThisPhysicsFrame.Remove(other);
|
|
||||||
|
|
||||||
if (!m_validCollidersOnPlate.Remove(other))
|
if (!m_validCollidersOnPlate.Remove(other))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
@@ -63,26 +54,6 @@ public class PressurePlateButton : MonoBehaviour
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void FixedUpdate()
|
|
||||||
{
|
|
||||||
if (m_validCollidersOnPlate.Count == 0)
|
|
||||||
{
|
|
||||||
m_stayedThisPhysicsFrame.Clear();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
m_validCollidersOnPlate.RemoveWhere(c => c == null || !c.enabled || !c.gameObject.activeInHierarchy);
|
|
||||||
|
|
||||||
m_validCollidersOnPlate.IntersectWith(m_stayedThisPhysicsFrame);
|
|
||||||
m_stayedThisPhysicsFrame.Clear();
|
|
||||||
|
|
||||||
if (m_validCollidersOnPlate.Count == 0 && m_isPressed)
|
|
||||||
{
|
|
||||||
m_isPressed = false;
|
|
||||||
OnReleased?.Invoke();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private bool IsValidActivator(Collider other)
|
private bool IsValidActivator(Collider other)
|
||||||
{
|
{
|
||||||
if (((1 << other.gameObject.layer) & detectionMask) == 0)
|
if (((1 << other.gameObject.layer) & detectionMask) == 0)
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ public class SlidingDoor : MonoBehaviour
|
|||||||
public enum SlideDirection { Positive = 1, Negative = -1 }
|
public enum SlideDirection { Positive = 1, Negative = -1 }
|
||||||
|
|
||||||
[Header("Slide Settings")]
|
[Header("Slide Settings")]
|
||||||
[Tooltip("Axis in parent space (or world space if no parent) the door slides along.")]
|
[Tooltip("Local axis the door slides along.")]
|
||||||
[SerializeField] private SlideAxis axis = SlideAxis.X;
|
[SerializeField] private SlideAxis axis = SlideAxis.X;
|
||||||
|
|
||||||
[Tooltip("Which way along the axis the door opens.")]
|
[Tooltip("Which way along the axis the door opens.")]
|
||||||
@@ -36,7 +36,7 @@ public class SlidingDoor : MonoBehaviour
|
|||||||
private void Awake()
|
private void Awake()
|
||||||
{
|
{
|
||||||
m_closedPos = transform.localPosition;
|
m_closedPos = transform.localPosition;
|
||||||
m_openPos = m_closedPos + GetParentSpaceSlideVector() * slideDistance;
|
m_openPos = m_closedPos + GetSlideVector() * slideDistance;
|
||||||
|
|
||||||
if (startOpen)
|
if (startOpen)
|
||||||
{
|
{
|
||||||
@@ -86,7 +86,7 @@ public class SlidingDoor : MonoBehaviour
|
|||||||
Open();
|
Open();
|
||||||
}
|
}
|
||||||
|
|
||||||
private Vector3 GetParentSpaceSlideVector()
|
private Vector3 GetSlideVector()
|
||||||
{
|
{
|
||||||
float sign = (float)direction;
|
float sign = (float)direction;
|
||||||
return axis switch
|
return axis switch
|
||||||
@@ -98,19 +98,14 @@ public class SlidingDoor : MonoBehaviour
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
private Vector3 GetWorldSpaceSlideVector()
|
|
||||||
{
|
|
||||||
return transform.parent != null
|
|
||||||
? transform.parent.TransformDirection(GetParentSpaceSlideVector()).normalized
|
|
||||||
: GetParentSpaceSlideVector().normalized;
|
|
||||||
}
|
|
||||||
|
|
||||||
#if UNITY_EDITOR
|
#if UNITY_EDITOR
|
||||||
private void OnDrawGizmos()
|
private void OnDrawGizmos()
|
||||||
{
|
{
|
||||||
Vector3 worldClosed = transform.position;
|
Vector3 worldClosed = transform.parent != null
|
||||||
|
? transform.parent.TransformPoint(transform.localPosition)
|
||||||
|
: transform.position;
|
||||||
|
|
||||||
Vector3 slideVec = GetWorldSpaceSlideVector() * slideDistance;
|
Vector3 slideVec = transform.TransformDirection(GetSlideVector()) * slideDistance;
|
||||||
Gizmos.color = Color.cyan;
|
Gizmos.color = Color.cyan;
|
||||||
Gizmos.DrawLine(worldClosed, worldClosed + slideVec);
|
Gizmos.DrawLine(worldClosed, worldClosed + slideVec);
|
||||||
Gizmos.DrawWireSphere(worldClosed + slideVec, 0.08f);
|
Gizmos.DrawWireSphere(worldClosed + slideVec, 0.08f);
|
||||||
|
|||||||
@@ -144,13 +144,12 @@ public class SubtitleSequencePlayer : MonoBehaviour
|
|||||||
|
|
||||||
float typeTime = 0f;
|
float typeTime = 0f;
|
||||||
int totalChars = line.text.Length;
|
int totalChars = line.text.Length;
|
||||||
int visibleChars = 0;
|
|
||||||
if (typewriterCharsPerSecond > 0f)
|
if (typewriterCharsPerSecond > 0f)
|
||||||
{
|
{
|
||||||
while (m_currentText.Length < totalChars)
|
while (m_currentText.Length < totalChars)
|
||||||
{
|
{
|
||||||
typeTime += Time.deltaTime;
|
typeTime += Time.deltaTime;
|
||||||
visibleChars = Mathf.Clamp(Mathf.FloorToInt(typeTime * typewriterCharsPerSecond), 0, totalChars);
|
int visibleChars = Mathf.Clamp(Mathf.FloorToInt(typeTime * typewriterCharsPerSecond), 0, totalChars);
|
||||||
m_currentText = line.text.Substring(0, visibleChars);
|
m_currentText = line.text.Substring(0, visibleChars);
|
||||||
yield return null;
|
yield return null;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ using UnityEngine.InputSystem;
|
|||||||
public class PlayerInputController : MonoBehaviour
|
public class PlayerInputController : MonoBehaviour
|
||||||
{
|
{
|
||||||
public InputActionAsset InputActions;
|
public InputActionAsset InputActions;
|
||||||
|
public bool InputEnabled { get; private set; } = true;
|
||||||
|
|
||||||
private InputAction m_moveAction;
|
private InputAction m_moveAction;
|
||||||
private InputAction m_lookAction;
|
private InputAction m_lookAction;
|
||||||
@@ -44,6 +45,17 @@ public class PlayerInputController : MonoBehaviour
|
|||||||
|
|
||||||
private void Update()
|
private void Update()
|
||||||
{
|
{
|
||||||
|
if (!InputEnabled)
|
||||||
|
{
|
||||||
|
MoveAmount = Vector2.zero;
|
||||||
|
LookAmount = Vector2.zero;
|
||||||
|
ShiftPressed = false;
|
||||||
|
JumpPressed = false;
|
||||||
|
ThrowPressed = false;
|
||||||
|
HeadInteractionPressed = false;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
MoveAmount = m_moveAction.ReadValue<Vector2>();
|
MoveAmount = m_moveAction.ReadValue<Vector2>();
|
||||||
LookAmount = m_lookAction.ReadValue<Vector2>();
|
LookAmount = m_lookAction.ReadValue<Vector2>();
|
||||||
|
|
||||||
@@ -52,4 +64,9 @@ public class PlayerInputController : MonoBehaviour
|
|||||||
ThrowPressed = m_throwAction.WasPressedThisFrame();
|
ThrowPressed = m_throwAction.WasPressedThisFrame();
|
||||||
HeadInteractionPressed = m_headInteractAction.WasPressedThisFrame();
|
HeadInteractionPressed = m_headInteractAction.WasPressedThisFrame();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void SetInputEnabled(bool enabled)
|
||||||
|
{
|
||||||
|
InputEnabled = enabled;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
264
Assets/Code/Scripts/Player/RobotBootSequence.cs
Normal file
264
Assets/Code/Scripts/Player/RobotBootSequence.cs
Normal file
@@ -0,0 +1,264 @@
|
|||||||
|
using System.Collections;
|
||||||
|
using TMPro;
|
||||||
|
using UnityEngine;
|
||||||
|
using UnityEngine.UI;
|
||||||
|
|
||||||
|
public class RobotBootSequence : MonoBehaviour
|
||||||
|
{
|
||||||
|
[Header("References")]
|
||||||
|
public PlayerInputController InputController;
|
||||||
|
public Transform CameraTransform;
|
||||||
|
|
||||||
|
[Header("Timing")]
|
||||||
|
public bool PlayOnStart = true;
|
||||||
|
[Min(0.1f)] public float BootDuration = 2.4f;
|
||||||
|
[Min(0.1f)] public float CharacterPerSecond = 40f;
|
||||||
|
[Min(0f)] public float LinePause = 0.35f;
|
||||||
|
[Min(0f)] public float DelayBeforeReveal = 0.4f;
|
||||||
|
|
||||||
|
[Header("Motion")]
|
||||||
|
public Vector2 StartYawPitch = new Vector2(-30f, -20f);
|
||||||
|
public float RollWobble = 2.5f;
|
||||||
|
public float WobbleFrequency = 16f;
|
||||||
|
public AnimationCurve EaseCurve = AnimationCurve.EaseInOut(0f, 0f, 1f, 1f);
|
||||||
|
|
||||||
|
[Header("Boot Text")]
|
||||||
|
public Color BootTextColor = new Color(0.62f, 1f, 0.7f, 1f);
|
||||||
|
public string[] BootLines =
|
||||||
|
{
|
||||||
|
"UNIT SB-3954 | preparing startup . . .",
|
||||||
|
"verification of OS-5 . . . 4 . . . 3 . . . 2 . . . 1",
|
||||||
|
"system integrity: OK",
|
||||||
|
"motor bus: OK",
|
||||||
|
"vision pipeline: ONLINE",
|
||||||
|
"SYSTEM OK"
|
||||||
|
};
|
||||||
|
|
||||||
|
[Header("Optional Audio")]
|
||||||
|
public AudioSource BootAudioSource;
|
||||||
|
|
||||||
|
private bool m_IsPlaying;
|
||||||
|
|
||||||
|
private struct BootUI
|
||||||
|
{
|
||||||
|
public Canvas Canvas;
|
||||||
|
public RectTransform LeftPanel;
|
||||||
|
public RectTransform RightPanel;
|
||||||
|
public TextMeshProUGUI Text;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void Awake()
|
||||||
|
{
|
||||||
|
if (InputController == null)
|
||||||
|
{
|
||||||
|
InputController = GetComponent<PlayerInputController>();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void Start()
|
||||||
|
{
|
||||||
|
if (PlayOnStart)
|
||||||
|
{
|
||||||
|
StartCoroutine(PlayBootSequence());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
[ContextMenu("Play Boot Sequence")]
|
||||||
|
public void PlayBootSequenceFromMenu()
|
||||||
|
{
|
||||||
|
if (!Application.isPlaying || m_IsPlaying)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
StartCoroutine(PlayBootSequence());
|
||||||
|
}
|
||||||
|
|
||||||
|
public IEnumerator PlayBootSequence()
|
||||||
|
{
|
||||||
|
if (m_IsPlaying)
|
||||||
|
{
|
||||||
|
yield break;
|
||||||
|
}
|
||||||
|
|
||||||
|
m_IsPlaying = true;
|
||||||
|
|
||||||
|
if (InputController != null)
|
||||||
|
{
|
||||||
|
InputController.SetInputEnabled(false);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (BootAudioSource != null)
|
||||||
|
{
|
||||||
|
BootAudioSource.Play();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (CameraTransform == null)
|
||||||
|
{
|
||||||
|
m_IsPlaying = false;
|
||||||
|
if (InputController != null)
|
||||||
|
{
|
||||||
|
InputController.SetInputEnabled(true);
|
||||||
|
}
|
||||||
|
yield break;
|
||||||
|
}
|
||||||
|
|
||||||
|
Quaternion gameplayRotation = CameraTransform.localRotation;
|
||||||
|
Quaternion fromRotation = Quaternion.Euler(StartYawPitch.y, StartYawPitch.x, 0f) * gameplayRotation;
|
||||||
|
CameraTransform.localRotation = fromRotation;
|
||||||
|
|
||||||
|
BootUI bootUI = CreateBootUI();
|
||||||
|
|
||||||
|
yield return StartCoroutine(PlayBootText(bootUI.Text));
|
||||||
|
|
||||||
|
if (DelayBeforeReveal > 0f)
|
||||||
|
{
|
||||||
|
yield return new WaitForSeconds(DelayBeforeReveal);
|
||||||
|
}
|
||||||
|
|
||||||
|
float elapsed = 0f;
|
||||||
|
while (elapsed < BootDuration)
|
||||||
|
{
|
||||||
|
elapsed += Time.deltaTime;
|
||||||
|
float t = Mathf.Clamp01(elapsed / BootDuration);
|
||||||
|
float eased = EaseCurve.Evaluate(t);
|
||||||
|
|
||||||
|
float wobbleFade = 1f - eased;
|
||||||
|
float roll = Mathf.Sin(Time.time * WobbleFrequency) * RollWobble * wobbleFade;
|
||||||
|
Quaternion wobbleRotation = Quaternion.Euler(0f, 0f, roll);
|
||||||
|
|
||||||
|
CameraTransform.localRotation = Quaternion.Slerp(fromRotation, gameplayRotation, eased) * wobbleRotation;
|
||||||
|
|
||||||
|
RectTransform rootRect = bootUI.Canvas.GetComponent<RectTransform>();
|
||||||
|
float halfWidth = rootRect.rect.width * 0.5f;
|
||||||
|
float leftTarget = -(halfWidth + 24f);
|
||||||
|
float rightTarget = halfWidth + 24f;
|
||||||
|
bootUI.LeftPanel.anchoredPosition = new Vector2(Mathf.Lerp(0f, leftTarget, eased), 0f);
|
||||||
|
bootUI.RightPanel.anchoredPosition = new Vector2(Mathf.Lerp(0f, rightTarget, eased), 0f);
|
||||||
|
|
||||||
|
Color textColor = bootUI.Text.color;
|
||||||
|
textColor.a = 1f - eased;
|
||||||
|
bootUI.Text.color = textColor;
|
||||||
|
|
||||||
|
yield return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
CameraTransform.localRotation = gameplayRotation;
|
||||||
|
|
||||||
|
if (bootUI.Canvas != null)
|
||||||
|
{
|
||||||
|
Destroy(bootUI.Canvas.gameObject);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (InputController != null)
|
||||||
|
{
|
||||||
|
InputController.SetInputEnabled(true);
|
||||||
|
}
|
||||||
|
|
||||||
|
m_IsPlaying = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
private IEnumerator PlayBootText(TextMeshProUGUI label)
|
||||||
|
{
|
||||||
|
if (label == null || BootLines == null || BootLines.Length == 0)
|
||||||
|
{
|
||||||
|
yield break;
|
||||||
|
}
|
||||||
|
|
||||||
|
label.text = string.Empty;
|
||||||
|
float charDelay = CharacterPerSecond <= 0f ? 0f : 1f / CharacterPerSecond;
|
||||||
|
|
||||||
|
for (int i = 0; i < BootLines.Length; i++)
|
||||||
|
{
|
||||||
|
string line = BootLines[i];
|
||||||
|
for (int c = 0; c < line.Length; c++)
|
||||||
|
{
|
||||||
|
label.text += line[c];
|
||||||
|
if (charDelay > 0f)
|
||||||
|
{
|
||||||
|
yield return new WaitForSeconds(charDelay);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (i < BootLines.Length - 1)
|
||||||
|
{
|
||||||
|
label.text += "\n";
|
||||||
|
}
|
||||||
|
|
||||||
|
if (LinePause > 0f)
|
||||||
|
{
|
||||||
|
yield return new WaitForSeconds(LinePause);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private BootUI CreateBootUI()
|
||||||
|
{
|
||||||
|
BootUI ui = new BootUI();
|
||||||
|
|
||||||
|
GameObject canvasGO = new GameObject("RobotBootCanvas", typeof(Canvas), typeof(CanvasScaler), typeof(GraphicRaycaster));
|
||||||
|
Canvas canvas = canvasGO.GetComponent<Canvas>();
|
||||||
|
canvas.renderMode = RenderMode.ScreenSpaceOverlay;
|
||||||
|
canvas.sortingOrder = 5000;
|
||||||
|
|
||||||
|
CanvasScaler scaler = canvasGO.GetComponent<CanvasScaler>();
|
||||||
|
scaler.uiScaleMode = CanvasScaler.ScaleMode.ScaleWithScreenSize;
|
||||||
|
scaler.referenceResolution = new Vector2(1920f, 1080f);
|
||||||
|
scaler.matchWidthOrHeight = 0.5f;
|
||||||
|
|
||||||
|
RectTransform root = canvasGO.GetComponent<RectTransform>();
|
||||||
|
root.anchorMin = Vector2.zero;
|
||||||
|
root.anchorMax = Vector2.one;
|
||||||
|
root.offsetMin = Vector2.zero;
|
||||||
|
root.offsetMax = Vector2.zero;
|
||||||
|
|
||||||
|
RectTransform leftPanel = CreatePanel("LeftPanel", root, true);
|
||||||
|
RectTransform rightPanel = CreatePanel("RightPanel", root, false);
|
||||||
|
TextMeshProUGUI label = CreateBootLabel(root);
|
||||||
|
|
||||||
|
ui.Canvas = canvas;
|
||||||
|
ui.LeftPanel = leftPanel;
|
||||||
|
ui.RightPanel = rightPanel;
|
||||||
|
ui.Text = label;
|
||||||
|
|
||||||
|
return ui;
|
||||||
|
}
|
||||||
|
|
||||||
|
private RectTransform CreatePanel(string panelName, RectTransform parent, bool isLeft)
|
||||||
|
{
|
||||||
|
GameObject panelGO = new GameObject(panelName, typeof(RectTransform), typeof(Image));
|
||||||
|
RectTransform rect = panelGO.GetComponent<RectTransform>();
|
||||||
|
rect.SetParent(parent, false);
|
||||||
|
rect.anchorMin = isLeft ? new Vector2(0f, 0f) : new Vector2(0.5f, 0f);
|
||||||
|
rect.anchorMax = isLeft ? new Vector2(0.5f, 1f) : new Vector2(1f, 1f);
|
||||||
|
rect.pivot = new Vector2(0.5f, 0.5f);
|
||||||
|
rect.offsetMin = Vector2.zero;
|
||||||
|
rect.offsetMax = Vector2.zero;
|
||||||
|
rect.anchoredPosition = Vector2.zero;
|
||||||
|
|
||||||
|
Image image = panelGO.GetComponent<Image>();
|
||||||
|
image.color = Color.black;
|
||||||
|
|
||||||
|
return rect;
|
||||||
|
}
|
||||||
|
|
||||||
|
private TextMeshProUGUI CreateBootLabel(RectTransform parent)
|
||||||
|
{
|
||||||
|
GameObject textGO = new GameObject("BootText", typeof(RectTransform), typeof(TextMeshProUGUI));
|
||||||
|
RectTransform rect = textGO.GetComponent<RectTransform>();
|
||||||
|
rect.SetParent(parent, false);
|
||||||
|
rect.anchorMin = new Vector2(0.13f, 0.5f);
|
||||||
|
rect.anchorMax = new Vector2(0.13f, 0.5f);
|
||||||
|
rect.pivot = new Vector2(0f, 0.5f);
|
||||||
|
rect.sizeDelta = new Vector2(980f, 380f);
|
||||||
|
|
||||||
|
TextMeshProUGUI text = textGO.GetComponent<TextMeshProUGUI>();
|
||||||
|
text.text = string.Empty;
|
||||||
|
text.fontSize = 40f;
|
||||||
|
text.alignment = TextAlignmentOptions.Left;
|
||||||
|
text.color = BootTextColor;
|
||||||
|
text.textWrappingMode = TextWrappingModes.Normal;
|
||||||
|
|
||||||
|
return text;
|
||||||
|
}
|
||||||
|
}
|
||||||
2
Assets/TextMesh Pro/Examples & Extras/Scripts/DropdownSample.cs.meta → Assets/Code/Scripts/Player/RobotBootSequence.cs.meta
Executable file → Normal file
2
Assets/TextMesh Pro/Examples & Extras/Scripts/DropdownSample.cs.meta → Assets/Code/Scripts/Player/RobotBootSequence.cs.meta
Executable file → Normal file
@@ -1,5 +1,5 @@
|
|||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: ac1eb05af6d391b4eb0f4c070a99f1d0
|
guid: 6ef6855cd57b4f94b47f410d47e89ff1
|
||||||
MonoImporter:
|
MonoImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
8
Assets/Code/Scripts/Rendering.meta
Normal file
8
Assets/Code/Scripts/Rendering.meta
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 97a4ae8015df4732ac9524441048a765
|
||||||
|
folderAsset: yes
|
||||||
|
DefaultImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
123
Assets/Code/Scripts/Rendering/CRTRendererFeature.cs
Normal file
123
Assets/Code/Scripts/Rendering/CRTRendererFeature.cs
Normal file
@@ -0,0 +1,123 @@
|
|||||||
|
// using UnityEngine;
|
||||||
|
// using UnityEngine.Rendering;
|
||||||
|
// using UnityEngine.Rendering.RenderGraphModule;
|
||||||
|
// using UnityEngine.Rendering.RenderGraphModule.Util;
|
||||||
|
// using UnityEngine.Rendering.Universal;
|
||||||
|
|
||||||
|
// public class CRTRendererFeature : ScriptableRendererFeature
|
||||||
|
// {
|
||||||
|
// [System.Serializable]
|
||||||
|
// public class CRTSettings
|
||||||
|
// {
|
||||||
|
// public bool EffectEnabled = true;
|
||||||
|
// public RenderPassEvent PassEvent = RenderPassEvent.AfterRenderingPostProcessing;
|
||||||
|
// public Shader CRTShader;
|
||||||
|
|
||||||
|
// [Range(0f, 1f)] public float Intensity = 0.65f;
|
||||||
|
// [Range(0f, 2f)] public float ScanlineDensity = 1.2f;
|
||||||
|
// [Range(0f, 1f)] public float ScanlineStrength = 0.18f;
|
||||||
|
// [Range(0f, 0.2f)] public float Curvature = 0.04f;
|
||||||
|
// [Range(0f, 1f)] public float VignetteStrength = 0.28f;
|
||||||
|
// [Range(0f, 0.05f)] public float ChromaticAberration = 0.004f;
|
||||||
|
// [Range(0f, 0.2f)] public float NoiseStrength = 0.03f;
|
||||||
|
// [Range(0f, 0.1f)] public float FlickerStrength = 0.015f;
|
||||||
|
// }
|
||||||
|
|
||||||
|
// class CRTPass : ScriptableRenderPass
|
||||||
|
// {
|
||||||
|
// private Material m_Material;
|
||||||
|
// private CRTSettings m_Settings;
|
||||||
|
|
||||||
|
// public void Setup(Material material, CRTSettings settings)
|
||||||
|
// {
|
||||||
|
// m_Material = material;
|
||||||
|
// m_Settings = settings;
|
||||||
|
// renderPassEvent = settings.PassEvent;
|
||||||
|
// requiresIntermediateTexture = true;
|
||||||
|
// }
|
||||||
|
|
||||||
|
// public override void RecordRenderGraph(RenderGraph renderGraph, ContextContainer frameData)
|
||||||
|
// {
|
||||||
|
// if (m_Material == null || m_Settings == null || !m_Settings.EffectEnabled)
|
||||||
|
// {
|
||||||
|
// return;
|
||||||
|
// }
|
||||||
|
|
||||||
|
// UniversalResourceData resourceData = frameData.Get<UniversalResourceData>();
|
||||||
|
// if (resourceData.isActiveTargetBackBuffer)
|
||||||
|
// {
|
||||||
|
// return;
|
||||||
|
// }
|
||||||
|
|
||||||
|
// m_Material.SetFloat("_Intensity", m_Settings.Intensity);
|
||||||
|
// m_Material.SetFloat("_ScanlineDensity", m_Settings.ScanlineDensity);
|
||||||
|
// m_Material.SetFloat("_ScanlineStrength", m_Settings.ScanlineStrength);
|
||||||
|
// m_Material.SetFloat("_Curvature", m_Settings.Curvature);
|
||||||
|
// m_Material.SetFloat("_VignetteStrength", m_Settings.VignetteStrength);
|
||||||
|
// m_Material.SetFloat("_ChromaticAberration", m_Settings.ChromaticAberration);
|
||||||
|
// m_Material.SetFloat("_NoiseStrength", m_Settings.NoiseStrength);
|
||||||
|
// m_Material.SetFloat("_FlickerStrength", m_Settings.FlickerStrength);
|
||||||
|
|
||||||
|
// TextureHandle source = resourceData.activeColorTexture;
|
||||||
|
// TextureDesc destinationDesc = renderGraph.GetTextureDesc(source);
|
||||||
|
// destinationDesc.name = "CameraColor-CRT";
|
||||||
|
// destinationDesc.clearBuffer = false;
|
||||||
|
|
||||||
|
// TextureHandle destination = renderGraph.CreateTexture(destinationDesc);
|
||||||
|
// RenderGraphUtils.BlitMaterialParameters blitParams = new(source, destination, m_Material, 0);
|
||||||
|
// renderGraph.AddBlitPass(blitParams, "CRT Effect");
|
||||||
|
|
||||||
|
// resourceData.cameraColor = destination;
|
||||||
|
// }
|
||||||
|
|
||||||
|
// public void Dispose()
|
||||||
|
// {
|
||||||
|
// // RenderGraph path does not allocate persistent RTHandles in this pass.
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
|
||||||
|
// public CRTSettings Settings = new();
|
||||||
|
|
||||||
|
// private CRTPass m_Pass;
|
||||||
|
// private Material m_Material;
|
||||||
|
|
||||||
|
// public override void Create()
|
||||||
|
// {
|
||||||
|
// if (Settings.CRTShader == null)
|
||||||
|
// {
|
||||||
|
// Settings.CRTShader = Shader.Find("Hidden/HeadlessHazard/CRT");
|
||||||
|
// }
|
||||||
|
|
||||||
|
// if (Settings.CRTShader != null)
|
||||||
|
// {
|
||||||
|
// m_Material = CoreUtils.CreateEngineMaterial(Settings.CRTShader);
|
||||||
|
// }
|
||||||
|
|
||||||
|
// m_Pass ??= new CRTPass();
|
||||||
|
// }
|
||||||
|
|
||||||
|
// public override void AddRenderPasses(ScriptableRenderer renderer, ref RenderingData renderingData)
|
||||||
|
// {
|
||||||
|
// if (m_Material == null || !Settings.EffectEnabled)
|
||||||
|
// {
|
||||||
|
// return;
|
||||||
|
// }
|
||||||
|
|
||||||
|
// if (renderingData.cameraData.cameraType != CameraType.Game)
|
||||||
|
// {
|
||||||
|
// return;
|
||||||
|
// }
|
||||||
|
|
||||||
|
// m_Pass.Setup(m_Material, Settings);
|
||||||
|
// renderer.EnqueuePass(m_Pass);
|
||||||
|
// }
|
||||||
|
|
||||||
|
// protected override void Dispose(bool disposing)
|
||||||
|
// {
|
||||||
|
// m_Pass?.Dispose();
|
||||||
|
// m_Pass = null;
|
||||||
|
|
||||||
|
// CoreUtils.Destroy(m_Material);
|
||||||
|
// m_Material = null;
|
||||||
|
// }
|
||||||
|
// }
|
||||||
3
Assets/TextMesh Pro/Examples & Extras/Scripts/Benchmark01.cs.meta → Assets/Code/Scripts/Rendering/CRTRendererFeature.cs.meta
Executable file → Normal file
3
Assets/TextMesh Pro/Examples & Extras/Scripts/Benchmark01.cs.meta → Assets/Code/Scripts/Rendering/CRTRendererFeature.cs.meta
Executable file → Normal file
@@ -1,6 +1,7 @@
|
|||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: f970ea55f9f84bf79b05dab180b8c125
|
guid: 4f2de7a6cfbd47c8bc740d43bb991205
|
||||||
MonoImporter:
|
MonoImporter:
|
||||||
|
externalObjects: {}
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
defaultReferences: []
|
defaultReferences: []
|
||||||
executionOrder: 0
|
executionOrder: 0
|
||||||
2
Assets/TextMesh Pro/Examples & Extras/Fonts.meta → Assets/Code/Scripts/UI.meta
Executable file → Normal file
2
Assets/TextMesh Pro/Examples & Extras/Fonts.meta → Assets/Code/Scripts/UI.meta
Executable file → Normal file
@@ -1,5 +1,5 @@
|
|||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: b63e0053080646b9819789bf3bf9fa17
|
guid: e88664529cd503644b2b92f055895969
|
||||||
folderAsset: yes
|
folderAsset: yes
|
||||||
DefaultImporter:
|
DefaultImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
379
Assets/Code/Scripts/UI/MainMenuUI.cs
Normal file
379
Assets/Code/Scripts/UI/MainMenuUI.cs
Normal file
@@ -0,0 +1,379 @@
|
|||||||
|
using UnityEngine;
|
||||||
|
using UnityEngine.EventSystems;
|
||||||
|
using UnityEngine.UI;
|
||||||
|
using TMPro;
|
||||||
|
#if ENABLE_INPUT_SYSTEM
|
||||||
|
using UnityEngine.InputSystem.UI;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
public class RetroMainMenuUI : MonoBehaviour
|
||||||
|
{
|
||||||
|
private Canvas m_MenuCanvas;
|
||||||
|
private bool m_MenuActive;
|
||||||
|
|
||||||
|
[RuntimeInitializeOnLoadMethod(RuntimeInitializeLoadType.BeforeSceneLoad)]
|
||||||
|
private static void Bootstrap()
|
||||||
|
{
|
||||||
|
if (Object.FindFirstObjectByType<RetroMainMenuUI>() != null)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
GameObject root = new("RetroMainMenuUI");
|
||||||
|
root.AddComponent<RetroMainMenuUI>();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void Awake()
|
||||||
|
{
|
||||||
|
m_MenuActive = true;
|
||||||
|
Time.timeScale = 0f;
|
||||||
|
ApplyMenuCursorState();
|
||||||
|
|
||||||
|
BuildMenu();
|
||||||
|
EnsureEventSystem();
|
||||||
|
|
||||||
|
UnityEngine.SceneManagement.SceneManager.sceneLoaded += OnSceneLoaded;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void OnDestroy()
|
||||||
|
{
|
||||||
|
UnityEngine.SceneManagement.SceneManager.sceneLoaded -= OnSceneLoaded;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void OnSceneLoaded(UnityEngine.SceneManagement.Scene scene, UnityEngine.SceneManagement.LoadSceneMode mode)
|
||||||
|
{
|
||||||
|
// Check again when the scene finishes loading to remove any baked-in duplicate EventSystems
|
||||||
|
EnsureEventSystem();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void LateUpdate()
|
||||||
|
{
|
||||||
|
if (!m_MenuActive)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Some gameplay scripts lock the cursor during Start/Update.
|
||||||
|
// Force menu cursor state while the menu is active.
|
||||||
|
ApplyMenuCursorState();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void BuildMenu()
|
||||||
|
{
|
||||||
|
Color bgColor = HexToColor("001e26");
|
||||||
|
Color panelColor = HexToColor("517567");
|
||||||
|
Color titleColor = HexToColor("f3d58d");
|
||||||
|
Color TextNormalColor = HexToColor("eb9843");
|
||||||
|
Color textWarningColor = HexToColor("c12204");
|
||||||
|
Color shadowColor = HexToColor("520805");
|
||||||
|
|
||||||
|
GameObject canvasObject = new("MainMenuCanvas");
|
||||||
|
Canvas canvas = canvasObject.AddComponent<Canvas>();
|
||||||
|
canvas.renderMode = RenderMode.ScreenSpaceOverlay;
|
||||||
|
canvas.sortingOrder = 10000;
|
||||||
|
m_MenuCanvas = canvas;
|
||||||
|
|
||||||
|
CanvasScaler scaler = canvasObject.AddComponent<CanvasScaler>();
|
||||||
|
scaler.uiScaleMode = CanvasScaler.ScaleMode.ScaleWithScreenSize;
|
||||||
|
scaler.referenceResolution = new Vector2(1920f, 1080f);
|
||||||
|
scaler.matchWidthOrHeight = 0.5f;
|
||||||
|
|
||||||
|
canvasObject.AddComponent<GraphicRaycaster>();
|
||||||
|
|
||||||
|
// Background
|
||||||
|
GameObject background = CreateImage("Background", canvasObject.transform, bgColor);
|
||||||
|
StretchToFull(background.GetComponent<RectTransform>());
|
||||||
|
|
||||||
|
// Decorative horizontal lines (scanline aesthetic)
|
||||||
|
CreateLine("TopLine", background.transform, new Rect(0, -60, 0, 4), panelColor, AnchorPreset.TopStretch);
|
||||||
|
CreateLine("BotLine", background.transform, new Rect(0, 60, 0, 4), panelColor, AnchorPreset.BottomStretch);
|
||||||
|
|
||||||
|
// --- LEFT PANEL ---
|
||||||
|
GameObject leftPanel = new GameObject("LeftPanel", typeof(RectTransform));
|
||||||
|
leftPanel.transform.SetParent(canvasObject.transform, false);
|
||||||
|
RectTransform leftRect = leftPanel.GetComponent<RectTransform>();
|
||||||
|
leftRect.anchorMin = new Vector2(0.08f, 0.1f);
|
||||||
|
leftRect.anchorMax = new Vector2(0.45f, 0.9f);
|
||||||
|
leftRect.offsetMin = Vector2.zero;
|
||||||
|
leftRect.offsetMax = Vector2.zero;
|
||||||
|
|
||||||
|
// Title
|
||||||
|
TextMeshProUGUI titleText = CreateTMP("Title", leftPanel.transform, "HEADLESS HAZARD", titleColor, 72, TextAlignmentOptions.BottomLeft);
|
||||||
|
RectTransform titleRect = titleText.GetComponent<RectTransform>();
|
||||||
|
titleRect.anchorMin = new Vector2(0f, 0.85f);
|
||||||
|
titleRect.anchorMax = new Vector2(1f, 1f);
|
||||||
|
titleRect.offsetMin = Vector2.zero;
|
||||||
|
titleRect.offsetMax = Vector2.zero;
|
||||||
|
titleText.fontStyle = FontStyles.Bold;
|
||||||
|
|
||||||
|
// Title Shadow
|
||||||
|
TextMeshProUGUI titleShadow = CreateTMP("TitleShadow", leftPanel.transform, "HEADLESS HAZARD", shadowColor, 72, TextAlignmentOptions.BottomLeft);
|
||||||
|
RectTransform shadowRect = titleShadow.GetComponent<RectTransform>();
|
||||||
|
shadowRect.anchorMin = new Vector2(0f, 0.85f);
|
||||||
|
shadowRect.anchorMax = new Vector2(1f, 1f);
|
||||||
|
shadowRect.offsetMin = new Vector2(4f, -4f); // apply drop shadow offset
|
||||||
|
shadowRect.offsetMax = new Vector2(4f, -4f);
|
||||||
|
titleShadow.fontStyle = FontStyles.Bold;
|
||||||
|
titleShadow.transform.SetSiblingIndex(0); // push behind title
|
||||||
|
|
||||||
|
// Subtitle / Decorative Status
|
||||||
|
TextMeshProUGUI subText = CreateTMP("Subtitle", leftPanel.transform, "SYSTEM_BOOT // OS.ACTIVE_ ", panelColor, 20, TextAlignmentOptions.TopLeft);
|
||||||
|
RectTransform subRect = subText.GetComponent<RectTransform>();
|
||||||
|
subRect.anchorMin = new Vector2(0f, 0.80f);
|
||||||
|
subRect.anchorMax = new Vector2(1f, 0.85f);
|
||||||
|
subRect.offsetMin = Vector2.zero;
|
||||||
|
subRect.offsetMax = Vector2.zero;
|
||||||
|
|
||||||
|
// Button Group
|
||||||
|
GameObject buttonGroup = new("ButtonGroup", typeof(RectTransform), typeof(VerticalLayoutGroup));
|
||||||
|
buttonGroup.transform.SetParent(leftPanel.transform, false);
|
||||||
|
RectTransform groupRect = buttonGroup.GetComponent<RectTransform>();
|
||||||
|
groupRect.anchorMin = new Vector2(0f, 0f);
|
||||||
|
groupRect.anchorMax = new Vector2(1f, 0.65f);
|
||||||
|
groupRect.offsetMin = Vector2.zero;
|
||||||
|
groupRect.offsetMax = Vector2.zero;
|
||||||
|
|
||||||
|
VerticalLayoutGroup layout = buttonGroup.GetComponent<VerticalLayoutGroup>();
|
||||||
|
layout.childAlignment = TextAnchor.UpperLeft;
|
||||||
|
layout.spacing = 16f;
|
||||||
|
layout.childControlWidth = true;
|
||||||
|
layout.childControlHeight = false;
|
||||||
|
|
||||||
|
CreateTextButton(buttonGroup.transform, "> INITIALIZE_PLAY", TextNormalColor, titleColor, () =>
|
||||||
|
{
|
||||||
|
Debug.Log("Play clicked.");
|
||||||
|
OnPlayClicked();
|
||||||
|
});
|
||||||
|
|
||||||
|
CreateTextButton(buttonGroup.transform, "> CONFIGURE_PARAMS", TextNormalColor, titleColor, () =>
|
||||||
|
{
|
||||||
|
Debug.Log("Options clicked.");
|
||||||
|
});
|
||||||
|
|
||||||
|
CreateTextButton(buttonGroup.transform, "> TERMINATE_PROCESS", TextNormalColor, textWarningColor, () =>
|
||||||
|
{
|
||||||
|
Debug.Log("Quit clicked.");
|
||||||
|
#if UNITY_EDITOR
|
||||||
|
UnityEditor.EditorApplication.isPlaying = false;
|
||||||
|
#else
|
||||||
|
Application.Quit();
|
||||||
|
#endif
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
// --- RIGHT PANEL (Level Info) ---
|
||||||
|
GameObject rightPanel = new GameObject("RightPanel", typeof(RectTransform));
|
||||||
|
rightPanel.transform.SetParent(canvasObject.transform, false);
|
||||||
|
RectTransform rightRect = rightPanel.GetComponent<RectTransform>();
|
||||||
|
rightRect.anchorMin = new Vector2(0.55f, 0.4f);
|
||||||
|
rightRect.anchorMax = new Vector2(0.92f, 0.82f);
|
||||||
|
rightRect.offsetMin = Vector2.zero;
|
||||||
|
rightRect.offsetMax = Vector2.zero;
|
||||||
|
|
||||||
|
// Right side Border lines
|
||||||
|
CreateLine("R_Top", rightPanel.transform, new Rect(0, 0, 0, 2), panelColor, AnchorPreset.TopStretch);
|
||||||
|
CreateLine("R_Bot", rightPanel.transform, new Rect(0, 0, 0, 2), panelColor, AnchorPreset.BottomStretch);
|
||||||
|
CreateLine("R_Left", rightPanel.transform, new Rect(0, 0, 2, 0), panelColor, AnchorPreset.LeftStretch);
|
||||||
|
CreateLine("R_Right", rightPanel.transform, new Rect(0, 0, 2, 0), panelColor, AnchorPreset.RightStretch);
|
||||||
|
|
||||||
|
// Right Panel Headers
|
||||||
|
TextMeshProUGUI headerText = CreateTMP("LevelHeader", rightPanel.transform, "CURRENT_SECTOR", panelColor, 24, TextAlignmentOptions.TopLeft);
|
||||||
|
headerText.GetComponent<RectTransform>().anchorMin = new Vector2(0f, 1f);
|
||||||
|
headerText.GetComponent<RectTransform>().anchorMax = new Vector2(1f, 1f);
|
||||||
|
headerText.GetComponent<RectTransform>().anchoredPosition = new Vector2(20f, -20f);
|
||||||
|
|
||||||
|
// Big Level Text
|
||||||
|
TextMeshProUGUI levelText = CreateTMP("LevelNumber", rightPanel.transform, "LEVEL 01", textWarningColor, 140, TextAlignmentOptions.Center);
|
||||||
|
StretchToFull(levelText.GetComponent<RectTransform>());
|
||||||
|
levelText.fontStyle = FontStyles.Bold;
|
||||||
|
|
||||||
|
// Decorative status
|
||||||
|
TextMeshProUGUI statusText = CreateTMP("LevelStatus", rightPanel.transform, "[ STATUS: OPTIMAL ]", panelColor, 24, TextAlignmentOptions.BottomRight);
|
||||||
|
statusText.GetComponent<RectTransform>().anchorMin = new Vector2(0f, 0f);
|
||||||
|
statusText.GetComponent<RectTransform>().anchorMax = new Vector2(1f, 0f);
|
||||||
|
statusText.GetComponent<RectTransform>().anchoredPosition = new Vector2(-20f, 20f);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void OnPlayClicked()
|
||||||
|
{
|
||||||
|
m_MenuActive = false;
|
||||||
|
Time.timeScale = 1f;
|
||||||
|
Cursor.lockState = CursorLockMode.Locked;
|
||||||
|
Cursor.visible = false;
|
||||||
|
|
||||||
|
if (m_MenuCanvas != null)
|
||||||
|
{
|
||||||
|
Destroy(m_MenuCanvas.gameObject);
|
||||||
|
}
|
||||||
|
|
||||||
|
Destroy(gameObject);
|
||||||
|
}
|
||||||
|
|
||||||
|
private static GameObject CreateTextButton(
|
||||||
|
Transform parent,
|
||||||
|
string label,
|
||||||
|
Color normalColor,
|
||||||
|
Color highlightColor,
|
||||||
|
UnityEngine.Events.UnityAction clickAction)
|
||||||
|
{
|
||||||
|
GameObject buttonObject = new(label, typeof(RectTransform), typeof(TextMeshProUGUI), typeof(Button));
|
||||||
|
buttonObject.transform.SetParent(parent, false);
|
||||||
|
|
||||||
|
RectTransform rect = buttonObject.GetComponent<RectTransform>();
|
||||||
|
rect.sizeDelta = new Vector2(0f, 60f); // Height 60, width auto-controlled by LayoutGroup
|
||||||
|
|
||||||
|
TextMeshProUGUI text = buttonObject.GetComponent<TextMeshProUGUI>();
|
||||||
|
text.text = label;
|
||||||
|
text.fontSize = 38;
|
||||||
|
text.alignment = TextAlignmentOptions.Left;
|
||||||
|
text.color = Color.white; // Button tint applies on top of white
|
||||||
|
text.textWrappingMode = TextWrappingModes.NoWrap;
|
||||||
|
|
||||||
|
Button button = buttonObject.GetComponent<Button>();
|
||||||
|
button.targetGraphic = text;
|
||||||
|
button.transition = Selectable.Transition.ColorTint;
|
||||||
|
|
||||||
|
ColorBlock colors = button.colors;
|
||||||
|
colors.normalColor = normalColor;
|
||||||
|
colors.highlightedColor = highlightColor;
|
||||||
|
colors.pressedColor = highlightColor;
|
||||||
|
colors.selectedColor = highlightColor;
|
||||||
|
colors.disabledColor = Color.gray;
|
||||||
|
colors.colorMultiplier = 1f;
|
||||||
|
colors.fadeDuration = 0.1f;
|
||||||
|
button.colors = colors;
|
||||||
|
|
||||||
|
button.onClick.AddListener(clickAction);
|
||||||
|
|
||||||
|
return buttonObject;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static TextMeshProUGUI CreateTMP(string name, Transform parent, string textStr, Color color, float size, TextAlignmentOptions align)
|
||||||
|
{
|
||||||
|
GameObject go = new GameObject(name, typeof(RectTransform), typeof(TextMeshProUGUI));
|
||||||
|
go.transform.SetParent(parent, false);
|
||||||
|
TextMeshProUGUI tmp = go.GetComponent<TextMeshProUGUI>();
|
||||||
|
tmp.text = textStr;
|
||||||
|
tmp.color = color;
|
||||||
|
tmp.fontSize = size;
|
||||||
|
tmp.alignment = align;
|
||||||
|
tmp.textWrappingMode = TextWrappingModes.NoWrap;
|
||||||
|
return tmp;
|
||||||
|
}
|
||||||
|
|
||||||
|
enum AnchorPreset { TopStretch, BottomStretch, LeftStretch, RightStretch }
|
||||||
|
private static GameObject CreateLine(string name, Transform parent, Rect details, Color color, AnchorPreset preset)
|
||||||
|
{
|
||||||
|
GameObject line = CreateImage(name, parent, color);
|
||||||
|
RectTransform rect = line.GetComponent<RectTransform>();
|
||||||
|
|
||||||
|
switch (preset)
|
||||||
|
{
|
||||||
|
case AnchorPreset.TopStretch:
|
||||||
|
rect.anchorMin = new Vector2(0, 1);
|
||||||
|
rect.anchorMax = new Vector2(1, 1);
|
||||||
|
rect.sizeDelta = new Vector2(details.width, details.height);
|
||||||
|
rect.anchoredPosition = new Vector2(details.x, details.y);
|
||||||
|
break;
|
||||||
|
case AnchorPreset.BottomStretch:
|
||||||
|
rect.anchorMin = new Vector2(0, 0);
|
||||||
|
rect.anchorMax = new Vector2(1, 0);
|
||||||
|
rect.sizeDelta = new Vector2(details.width, details.height);
|
||||||
|
rect.anchoredPosition = new Vector2(details.x, details.y);
|
||||||
|
break;
|
||||||
|
case AnchorPreset.LeftStretch:
|
||||||
|
rect.anchorMin = new Vector2(0, 0);
|
||||||
|
rect.anchorMax = new Vector2(0, 1);
|
||||||
|
rect.sizeDelta = new Vector2(details.width, details.height);
|
||||||
|
rect.anchoredPosition = new Vector2(details.x, details.y);
|
||||||
|
break;
|
||||||
|
case AnchorPreset.RightStretch:
|
||||||
|
rect.anchorMin = new Vector2(1, 0);
|
||||||
|
rect.anchorMax = new Vector2(1, 1);
|
||||||
|
rect.sizeDelta = new Vector2(details.width, details.height);
|
||||||
|
rect.anchoredPosition = new Vector2(details.x, details.y);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
return line;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static GameObject CreateImage(string name, Transform parent, Color color)
|
||||||
|
{
|
||||||
|
GameObject imageObject = new(name, typeof(RectTransform), typeof(Image));
|
||||||
|
imageObject.transform.SetParent(parent, false);
|
||||||
|
Image image = imageObject.GetComponent<Image>();
|
||||||
|
image.color = color;
|
||||||
|
return imageObject;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void StretchToFull(RectTransform rect)
|
||||||
|
{
|
||||||
|
rect.anchorMin = Vector2.zero;
|
||||||
|
rect.anchorMax = Vector2.one;
|
||||||
|
rect.offsetMin = Vector2.zero;
|
||||||
|
rect.offsetMax = Vector2.zero;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static Color HexToColor(string hex)
|
||||||
|
{
|
||||||
|
if (ColorUtility.TryParseHtmlString("#" + hex, out Color color))
|
||||||
|
{
|
||||||
|
return color;
|
||||||
|
}
|
||||||
|
|
||||||
|
return Color.magenta;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void ApplyMenuCursorState()
|
||||||
|
{
|
||||||
|
Cursor.lockState = CursorLockMode.None;
|
||||||
|
Cursor.visible = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void EnsureEventSystem()
|
||||||
|
{
|
||||||
|
EventSystem[] allEventSystems = Object.FindObjectsByType<EventSystem>(FindObjectsInactive.Include, FindObjectsSortMode.None);
|
||||||
|
EventSystem eventSystem;
|
||||||
|
if (allEventSystems.Length == 0)
|
||||||
|
{
|
||||||
|
GameObject eventSystemObject = new("EventSystem", typeof(EventSystem));
|
||||||
|
eventSystem = eventSystemObject.GetComponent<EventSystem>();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
eventSystem = allEventSystems[0];
|
||||||
|
|
||||||
|
for (int i = 1; i < allEventSystems.Length; i++)
|
||||||
|
{
|
||||||
|
if (allEventSystems[i] != null)
|
||||||
|
{
|
||||||
|
Destroy(allEventSystems[i].gameObject);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
EnsureCompatibleInputModule(eventSystem.gameObject);
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void EnsureCompatibleInputModule(GameObject eventSystemObject)
|
||||||
|
{
|
||||||
|
#if ENABLE_INPUT_SYSTEM
|
||||||
|
StandaloneInputModule standaloneModule = eventSystemObject.GetComponent<StandaloneInputModule>();
|
||||||
|
if (standaloneModule != null)
|
||||||
|
{
|
||||||
|
Destroy(standaloneModule);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (eventSystemObject.GetComponent<InputSystemUIInputModule>() == null)
|
||||||
|
{
|
||||||
|
eventSystemObject.AddComponent<InputSystemUIInputModule>();
|
||||||
|
}
|
||||||
|
#else
|
||||||
|
if (eventSystemObject.GetComponent<StandaloneInputModule>() == null)
|
||||||
|
{
|
||||||
|
eventSystemObject.AddComponent<StandaloneInputModule>();
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
}
|
||||||
2
Assets/Code/Scripts/UI/MainMenuUI.cs.meta
Normal file
2
Assets/Code/Scripts/UI/MainMenuUI.cs.meta
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 297533e46238b814989fcd5d46cf8927
|
||||||
97
Assets/Code/Shaders/CRTScreenEffect.shader
Normal file
97
Assets/Code/Shaders/CRTScreenEffect.shader
Normal file
@@ -0,0 +1,97 @@
|
|||||||
|
Shader "Hidden/HeadlessHazard/CRT"
|
||||||
|
{
|
||||||
|
Properties
|
||||||
|
{
|
||||||
|
_Intensity ("Intensity", Range(0,1)) = 0.65
|
||||||
|
_ScanlineDensity ("Scanline Density", Range(0,2)) = 1.2
|
||||||
|
_ScanlineStrength ("Scanline Strength", Range(0,1)) = 0.18
|
||||||
|
_Curvature ("Curvature", Range(0,0.2)) = 0.04
|
||||||
|
_VignetteStrength ("Vignette Strength", Range(0,1)) = 0.28
|
||||||
|
_ChromaticAberration ("Chromatic Aberration", Range(0,0.05)) = 0.004
|
||||||
|
_NoiseStrength ("Noise Strength", Range(0,0.2)) = 0.03
|
||||||
|
_FlickerStrength ("Flicker Strength", Range(0,0.1)) = 0.015
|
||||||
|
}
|
||||||
|
|
||||||
|
SubShader
|
||||||
|
{
|
||||||
|
Tags { "RenderPipeline" = "UniversalPipeline" }
|
||||||
|
|
||||||
|
Pass
|
||||||
|
{
|
||||||
|
Name "CRT"
|
||||||
|
ZWrite Off
|
||||||
|
ZTest Always
|
||||||
|
Cull Off
|
||||||
|
Blend One Zero
|
||||||
|
|
||||||
|
HLSLPROGRAM
|
||||||
|
#pragma vertex Vert
|
||||||
|
#pragma fragment Frag
|
||||||
|
#pragma target 3.5
|
||||||
|
|
||||||
|
#include "Packages/com.unity.render-pipelines.universal/ShaderLibrary/Core.hlsl"
|
||||||
|
#include "Packages/com.unity.render-pipelines.core/Runtime/Utilities/Blit.hlsl"
|
||||||
|
|
||||||
|
float _Intensity;
|
||||||
|
float _ScanlineDensity;
|
||||||
|
float _ScanlineStrength;
|
||||||
|
float _Curvature;
|
||||||
|
float _VignetteStrength;
|
||||||
|
float _ChromaticAberration;
|
||||||
|
float _NoiseStrength;
|
||||||
|
float _FlickerStrength;
|
||||||
|
|
||||||
|
float Random01(float2 seed)
|
||||||
|
{
|
||||||
|
return frac(sin(dot(seed, float2(12.9898, 78.233))) * 43758.5453);
|
||||||
|
}
|
||||||
|
|
||||||
|
float2 DistortUV(float2 uv, float curvature)
|
||||||
|
{
|
||||||
|
float2 center = uv * 2.0 - 1.0;
|
||||||
|
float radius2 = dot(center, center);
|
||||||
|
center *= 1.0 + (radius2 * curvature);
|
||||||
|
return center * 0.5 + 0.5;
|
||||||
|
}
|
||||||
|
|
||||||
|
half4 Frag(Varyings input) : SV_Target
|
||||||
|
{
|
||||||
|
float2 uv = input.texcoord;
|
||||||
|
float2 curvedUV = DistortUV(uv, _Curvature);
|
||||||
|
|
||||||
|
if (curvedUV.x < 0.0 || curvedUV.x > 1.0 || curvedUV.y < 0.0 || curvedUV.y > 1.0)
|
||||||
|
{
|
||||||
|
return half4(0.0, 0.0, 0.0, 1.0);
|
||||||
|
}
|
||||||
|
|
||||||
|
float2 fromCenter = curvedUV - 0.5;
|
||||||
|
float2 aberrationOffset = fromCenter * _ChromaticAberration;
|
||||||
|
|
||||||
|
half red = SAMPLE_TEXTURE2D_X(_BlitTexture, sampler_LinearClamp, curvedUV + aberrationOffset).r;
|
||||||
|
half green = SAMPLE_TEXTURE2D_X(_BlitTexture, sampler_LinearClamp, curvedUV).g;
|
||||||
|
half blue = SAMPLE_TEXTURE2D_X(_BlitTexture, sampler_LinearClamp, curvedUV - aberrationOffset).b;
|
||||||
|
half3 color = half3(red, green, blue);
|
||||||
|
|
||||||
|
float scanlineWave = sin((curvedUV.y * _ScreenParams.y * 0.5 * _ScanlineDensity) + (_Time.y * 18.0));
|
||||||
|
float scanlineMask = lerp(1.0, saturate(0.7 + 0.3 * scanlineWave), _ScanlineStrength);
|
||||||
|
color *= scanlineMask;
|
||||||
|
|
||||||
|
float noise = Random01(curvedUV * _ScreenParams.xy + _Time.yy * 37.0) - 0.5;
|
||||||
|
color += noise * _NoiseStrength;
|
||||||
|
|
||||||
|
float flicker = 1.0 - (_FlickerStrength * (0.5 + 0.5 * sin(_Time.y * 32.0)));
|
||||||
|
color *= flicker;
|
||||||
|
|
||||||
|
float2 vignetteUV = curvedUV * (1.0 - curvedUV.yx);
|
||||||
|
float vignette = saturate(pow(vignetteUV.x * vignetteUV.y * 18.0, 0.2));
|
||||||
|
color *= lerp(1.0 - _VignetteStrength, 1.0, vignette);
|
||||||
|
|
||||||
|
half3 baseColor = SAMPLE_TEXTURE2D_X(_BlitTexture, sampler_LinearClamp, uv).rgb;
|
||||||
|
half3 finalColor = lerp(baseColor, color, _Intensity);
|
||||||
|
|
||||||
|
return half4(finalColor, 1.0);
|
||||||
|
}
|
||||||
|
ENDHLSL
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
10
Assets/Code/Shaders/CRTScreenEffect.shader.meta
Normal file
10
Assets/Code/Shaders/CRTScreenEffect.shader.meta
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 0a9f7eb85c2f4f9f8ec82c8565f4e8b1
|
||||||
|
ShaderImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
defaultTextures: []
|
||||||
|
nonModifiableTextures: []
|
||||||
|
preprocessorOverride: 0
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
@@ -15,7 +15,7 @@ GameObject:
|
|||||||
- component: {fileID: 6700426716916120764}
|
- component: {fileID: 6700426716916120764}
|
||||||
- component: {fileID: 7552511637356990312}
|
- component: {fileID: 7552511637356990312}
|
||||||
m_Layer: 0
|
m_Layer: 0
|
||||||
m_Name: IndicatorBlock
|
m_Name: TestBlock
|
||||||
m_TagString: Untagged
|
m_TagString: Untagged
|
||||||
m_Icon: {fileID: 0}
|
m_Icon: {fileID: 0}
|
||||||
m_NavMeshLayer: 0
|
m_NavMeshLayer: 0
|
||||||
@@ -302,7 +302,7 @@ MeshRenderer:
|
|||||||
m_RenderingLayerMask: 1
|
m_RenderingLayerMask: 1
|
||||||
m_RendererPriority: 0
|
m_RendererPriority: 0
|
||||||
m_Materials:
|
m_Materials:
|
||||||
- {fileID: 2100000, guid: 31321ba15b8f8eb4c954353edc038b1d, type: 2}
|
- {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2}
|
||||||
m_StaticBatchInfo:
|
m_StaticBatchInfo:
|
||||||
firstSubMesh: 0
|
firstSubMesh: 0
|
||||||
subMeshCount: 0
|
subMeshCount: 0
|
||||||
@@ -12,14 +12,11 @@ GameObject:
|
|||||||
- component: {fileID: 5140597600133624551}
|
- component: {fileID: 5140597600133624551}
|
||||||
- component: {fileID: 3884605895522482221}
|
- component: {fileID: 3884605895522482221}
|
||||||
- component: {fileID: 16871832050785725}
|
- component: {fileID: 16871832050785725}
|
||||||
- component: {fileID: 7987102888823411772}
|
- component: {fileID: 8512140229507148937}
|
||||||
- component: {fileID: 6921400718617286756}
|
- component: {fileID: 6921400718617286756}
|
||||||
|
- component: {fileID: 7987102888823411772}
|
||||||
m_Layer: 0
|
m_Layer: 0
|
||||||
<<<<<<<< HEAD:Assets/Level/Prefabs/World/MovingDoor.prefab
|
|
||||||
m_Name: MovingDoor
|
|
||||||
========
|
|
||||||
m_Name: BigDoor
|
m_Name: BigDoor
|
||||||
>>>>>>>> feat/level/create-level-1:Assets/Level/Prefabs/Interactives/BigDoor.prefab
|
|
||||||
m_TagString: Untagged
|
m_TagString: Untagged
|
||||||
m_Icon: {fileID: 0}
|
m_Icon: {fileID: 0}
|
||||||
m_NavMeshLayer: 0
|
m_NavMeshLayer: 0
|
||||||
@@ -157,84 +154,80 @@ MonoBehaviour:
|
|||||||
elementGroup: -1
|
elementGroup: -1
|
||||||
m_TextureGroup: -1
|
m_TextureGroup: -1
|
||||||
m_SharedVertices:
|
m_SharedVertices:
|
||||||
- m_Vertices: 000000000d00000016000000
|
- m_Vertices: 00000000020000000d000000000000000000000000000000
|
||||||
- m_Vertices: 010000000400000017000000
|
- m_Vertices: 010000000300000004000000000000000000000000000000
|
||||||
- m_Vertices: 020000000f00000010000000
|
- m_Vertices: 050000000700000008000000000000000000000000000000
|
||||||
- m_Vertices: 030000000600000011000000
|
- m_Vertices: 090000000b0000000c000000000000000000000000000000
|
||||||
- m_Vertices: 050000000800000015000000
|
|
||||||
- m_Vertices: 070000000a00000013000000
|
|
||||||
- m_Vertices: 090000000c00000014000000
|
|
||||||
- m_Vertices: 0b0000000e00000012000000
|
|
||||||
m_SharedTextures: []
|
m_SharedTextures: []
|
||||||
m_Positions:
|
m_Positions:
|
||||||
- {x: -0.05, y: -1, z: 0.5}
|
- {x: -0.05, y: -4, z: 4}
|
||||||
- {x: 0.05, y: -1, z: 0.5}
|
- {x: 0.05, y: -4, z: 4}
|
||||||
- {x: -0.05, y: 1, z: 0.5}
|
- {x: -0.05, y: 4, z: 4}
|
||||||
- {x: 0.05, y: 1, z: 0.5}
|
- {x: 0.05, y: 4, z: 4}
|
||||||
- {x: 0.05, y: -1, z: 0.5}
|
- {x: 0.05, y: -4, z: 4}
|
||||||
- {x: 0.05, y: -1, z: -0.5}
|
- {x: 0.05, y: -4, z: -4}
|
||||||
- {x: 0.05, y: 1, z: 0.5}
|
- {x: 0.05, y: 4, z: 4}
|
||||||
- {x: 0.05, y: 1, z: -0.5}
|
- {x: 0.05, y: 4, z: -4}
|
||||||
- {x: 0.05, y: -1, z: -0.5}
|
- {x: 0.05, y: -4, z: -4}
|
||||||
- {x: -0.05, y: -1, z: -0.5}
|
- {x: -0.05, y: -4, z: -4}
|
||||||
- {x: 0.05, y: 1, z: -0.5}
|
- {x: 0.05, y: 4, z: -4}
|
||||||
- {x: -0.05, y: 1, z: -0.5}
|
- {x: -0.05, y: 4, z: -4}
|
||||||
- {x: -0.05, y: -1, z: -0.5}
|
- {x: -0.05, y: -4, z: -4}
|
||||||
- {x: -0.05, y: -1, z: 0.5}
|
- {x: -0.05, y: -4, z: 4}
|
||||||
- {x: -0.05, y: 1, z: -0.5}
|
- {x: -0.05, y: 4, z: -4}
|
||||||
- {x: -0.05, y: 1, z: 0.5}
|
- {x: -0.05, y: 4, z: 4}
|
||||||
- {x: -0.05, y: 1, z: 0.5}
|
- {x: -0.05, y: 4, z: 4}
|
||||||
- {x: 0.05, y: 1, z: 0.5}
|
- {x: 0.05, y: 4, z: 4}
|
||||||
- {x: -0.05, y: 1, z: -0.5}
|
- {x: -0.05, y: 4, z: -4}
|
||||||
- {x: 0.05, y: 1, z: -0.5}
|
- {x: 0.05, y: 4, z: -4}
|
||||||
- {x: -0.05, y: -1, z: -0.5}
|
- {x: -0.05, y: -4, z: -4}
|
||||||
- {x: 0.05, y: -1, z: -0.5}
|
- {x: 0.05, y: -4, z: -4}
|
||||||
- {x: -0.05, y: -1, z: 0.5}
|
- {x: -0.05, y: -4, z: 4}
|
||||||
- {x: 0.05, y: -1, z: 0.5}
|
- {x: 0.05, y: -4, z: 4}
|
||||||
m_Textures0:
|
m_Textures0:
|
||||||
- {x: 0.1, y: -1}
|
- {x: 0, y: -7}
|
||||||
- {x: 0, y: -1}
|
- {x: 0.1, y: -7}
|
||||||
- {x: 0.1, y: 1}
|
|
||||||
- {x: 0, y: 1}
|
|
||||||
- {x: 1, y: -1}
|
|
||||||
- {x: 0, y: -1}
|
|
||||||
- {x: 1, y: 1}
|
|
||||||
- {x: 0, y: 1}
|
|
||||||
- {x: 0.1, y: -1}
|
|
||||||
- {x: 0, y: -1}
|
|
||||||
- {x: 0.1, y: 1}
|
|
||||||
- {x: 0, y: 1}
|
|
||||||
- {x: 1, y: -1}
|
|
||||||
- {x: 0, y: -1}
|
|
||||||
- {x: 1, y: 1}
|
|
||||||
- {x: 0, y: 1}
|
|
||||||
- {x: 0, y: 1}
|
- {x: 0, y: 1}
|
||||||
- {x: 0.1, y: 1}
|
- {x: 0.1, y: 1}
|
||||||
|
- {x: 8, y: -7}
|
||||||
|
- {x: 0, y: -7}
|
||||||
|
- {x: 8, y: 1}
|
||||||
- {x: 0, y: 0}
|
- {x: 0, y: 0}
|
||||||
- {x: 0.1, y: 0}
|
- {x: 0.1, y: -7}
|
||||||
- {x: 0.1, y: 0}
|
- {x: 0, y: -7}
|
||||||
- {x: 0, y: 0}
|
- {x: 0.1, y: 1}
|
||||||
|
- {x: 0, y: 1}
|
||||||
|
- {x: 8, y: -7}
|
||||||
|
- {x: 0, y: -7}
|
||||||
|
- {x: 8, y: 0}
|
||||||
|
- {x: 0, y: 1}
|
||||||
|
- {x: 0, y: 1}
|
||||||
|
- {x: 0.1, y: 1}
|
||||||
|
- {x: 0, y: -7}
|
||||||
|
- {x: 0.1, y: -7}
|
||||||
|
- {x: 0.1, y: -7}
|
||||||
|
- {x: 0, y: -7}
|
||||||
- {x: 0.1, y: 1}
|
- {x: 0.1, y: 1}
|
||||||
- {x: 0, y: 1}
|
- {x: 0, y: 1}
|
||||||
m_Textures2: []
|
m_Textures2: []
|
||||||
m_Textures3: []
|
m_Textures3: []
|
||||||
m_Tangents:
|
m_Tangents:
|
||||||
- {x: -1, y: 0, z: 0, w: -1}
|
- {x: -0, y: 1, z: 0, w: 1}
|
||||||
- {x: -1, y: 0, z: 0, w: -1}
|
- {x: -0, y: 1, z: 0, w: 1}
|
||||||
- {x: -1, y: 0, z: 0, w: -1}
|
- {x: -0, y: 1, z: 0, w: 1}
|
||||||
- {x: -1, y: 0, z: 0, w: -1}
|
- {x: -0, y: 1, z: 0, w: 1}
|
||||||
- {x: 0, y: 0, z: 1, w: -1}
|
- {x: -0, y: 1, z: 0, w: 1}
|
||||||
- {x: 0, y: 0, z: 1, w: -1}
|
- {x: -0, y: 1, z: 0, w: 1}
|
||||||
- {x: 0, y: 0, z: 1, w: -1}
|
- {x: -0, y: 1, z: 0, w: 1}
|
||||||
- {x: 0, y: 0, z: 1, w: -1}
|
- {x: -0, y: 1, z: 0, w: 1}
|
||||||
- {x: 1, y: 0, z: 0, w: -1}
|
- {x: -0, y: 1, z: 0, w: 1}
|
||||||
- {x: 1, y: 0, z: 0, w: -1}
|
- {x: -0, y: 1, z: 0, w: 1}
|
||||||
- {x: 1, y: 0, z: 0, w: -1}
|
- {x: -0, y: 1, z: 0, w: 1}
|
||||||
- {x: 1, y: 0, z: 0, w: -1}
|
- {x: -0, y: 1, z: 0, w: 1}
|
||||||
- {x: 0, y: 0, z: -1, w: -1}
|
- {x: -0, y: 1, z: 0, w: 1}
|
||||||
- {x: 0, y: 0, z: -1, w: -1}
|
- {x: -0, y: 1, z: 0, w: 1}
|
||||||
- {x: 0, y: 0, z: -1, w: -1}
|
- {x: -0, y: 1, z: 0, w: 1}
|
||||||
- {x: 0, y: 0, z: -1, w: -1}
|
- {x: -0, y: 1, z: 0, w: 1}
|
||||||
- {x: 1, y: 0, z: 0, w: -1}
|
- {x: 1, y: 0, z: 0, w: -1}
|
||||||
- {x: 1, y: 0, z: 0, w: -1}
|
- {x: 1, y: 0, z: 0, w: -1}
|
||||||
- {x: 1, y: 0, z: 0, w: -1}
|
- {x: 1, y: 0, z: 0, w: -1}
|
||||||
@@ -252,7 +245,7 @@ MonoBehaviour:
|
|||||||
m_PreserveMeshAssetOnDestroy: 0
|
m_PreserveMeshAssetOnDestroy: 0
|
||||||
assetGuid:
|
assetGuid:
|
||||||
m_Mesh: {fileID: 0}
|
m_Mesh: {fileID: 0}
|
||||||
m_VersionIndex: 95
|
m_VersionIndex: 59
|
||||||
m_IsSelectable: 1
|
m_IsSelectable: 1
|
||||||
m_SelectedFaces:
|
m_SelectedFaces:
|
||||||
m_SelectedEdges: []
|
m_SelectedEdges: []
|
||||||
@@ -272,8 +265,8 @@ MonoBehaviour:
|
|||||||
m_Shape:
|
m_Shape:
|
||||||
rid: 1325630791375913023
|
rid: 1325630791375913023
|
||||||
m_ShapeRotation: {x: 0, y: 0, z: 0, w: 1}
|
m_ShapeRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||||
m_UnmodifiedMeshVersion: 95
|
m_UnmodifiedMeshVersion: 59
|
||||||
m_Size: {x: 0.1, y: 2, z: 1}
|
m_Size: {x: 0.1, y: 8, z: 8}
|
||||||
m_LocalCenter: {x: 0, y: 0, z: 0}
|
m_LocalCenter: {x: 0, y: 0, z: 0}
|
||||||
references:
|
references:
|
||||||
version: 2
|
version: 2
|
||||||
@@ -330,6 +323,37 @@ MeshRenderer:
|
|||||||
m_SortingOrder: 0
|
m_SortingOrder: 0
|
||||||
m_MaskInteraction: 0
|
m_MaskInteraction: 0
|
||||||
m_AdditionalVertexStreams: {fileID: 0}
|
m_AdditionalVertexStreams: {fileID: 0}
|
||||||
|
--- !u!33 &8512140229507148937
|
||||||
|
MeshFilter:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 6922175388650039756}
|
||||||
|
m_Mesh: {fileID: 0}
|
||||||
|
--- !u!114 &6921400718617286756
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 6922175388650039756}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 11500000, guid: 0cc6c36a261296f4c82e315da147ba93, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier: Assembly-CSharp::SlidingDoor
|
||||||
|
axis: 1
|
||||||
|
direction: -1
|
||||||
|
slideDistance: 10
|
||||||
|
speed: 3
|
||||||
|
startOpen: 0
|
||||||
|
OnOpened:
|
||||||
|
m_PersistentCalls:
|
||||||
|
m_Calls: []
|
||||||
|
OnClosed:
|
||||||
|
m_PersistentCalls:
|
||||||
|
m_Calls: []
|
||||||
--- !u!65 &7987102888823411772
|
--- !u!65 &7987102888823411772
|
||||||
BoxCollider:
|
BoxCollider:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
@@ -349,28 +373,5 @@ BoxCollider:
|
|||||||
m_ProvidesContacts: 0
|
m_ProvidesContacts: 0
|
||||||
m_Enabled: 1
|
m_Enabled: 1
|
||||||
serializedVersion: 3
|
serializedVersion: 3
|
||||||
m_Size: {x: 0.1, y: 2, z: 1}
|
m_Size: {x: 0.1, y: 8, z: 8}
|
||||||
m_Center: {x: 0, y: 0, z: 0}
|
m_Center: {x: 0, y: 0, z: 0}
|
||||||
--- !u!114 &6921400718617286756
|
|
||||||
MonoBehaviour:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 6922175388650039756}
|
|
||||||
m_Enabled: 1
|
|
||||||
m_EditorHideFlags: 0
|
|
||||||
m_Script: {fileID: 11500000, guid: 0cc6c36a261296f4c82e315da147ba93, type: 3}
|
|
||||||
m_Name:
|
|
||||||
m_EditorClassIdentifier: Assembly-CSharp::SlidingDoor
|
|
||||||
axis: 1
|
|
||||||
direction: -1
|
|
||||||
slideDistance: 2
|
|
||||||
speed: 3
|
|
||||||
startOpen: 0
|
|
||||||
OnOpened:
|
|
||||||
m_PersistentCalls:
|
|
||||||
m_Calls: []
|
|
||||||
OnClosed:
|
|
||||||
m_PersistentCalls:
|
|
||||||
m_Calls: []
|
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -1,5 +1,5 @@
|
|||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: d6fdf4761aa22fdaca0e9d4470c7ee73
|
guid: 0eece4d381450d440a0abcb205ba126e
|
||||||
PrefabImporter:
|
PrefabImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
userData:
|
userData:
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ GameObject:
|
|||||||
- component: {fileID: 5853974941088398888}
|
- component: {fileID: 5853974941088398888}
|
||||||
- component: {fileID: 5042967542353382394}
|
- component: {fileID: 5042967542353382394}
|
||||||
- component: {fileID: 8480948550909164709}
|
- component: {fileID: 8480948550909164709}
|
||||||
- component: {fileID: -6766998345617383126}
|
- component: {fileID: 4852617768436622893}
|
||||||
- component: {fileID: 590849425322242843}
|
- component: {fileID: 590849425322242843}
|
||||||
- component: {fileID: 8973796063000431307}
|
- component: {fileID: 8973796063000431307}
|
||||||
m_Layer: 0
|
m_Layer: 0
|
||||||
@@ -336,8 +336,8 @@ MeshFilter:
|
|||||||
m_PrefabAsset: {fileID: 0}
|
m_PrefabAsset: {fileID: 0}
|
||||||
m_GameObject: {fileID: 1261067352547520725}
|
m_GameObject: {fileID: 1261067352547520725}
|
||||||
m_Mesh: {fileID: 0}
|
m_Mesh: {fileID: 0}
|
||||||
--- !u!65 &-6766998345617383126
|
--- !u!64 &4852617768436622893
|
||||||
BoxCollider:
|
MeshCollider:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInstance: {fileID: 0}
|
m_PrefabInstance: {fileID: 0}
|
||||||
@@ -354,9 +354,10 @@ BoxCollider:
|
|||||||
m_IsTrigger: 0
|
m_IsTrigger: 0
|
||||||
m_ProvidesContacts: 0
|
m_ProvidesContacts: 0
|
||||||
m_Enabled: 1
|
m_Enabled: 1
|
||||||
serializedVersion: 3
|
serializedVersion: 5
|
||||||
m_Size: {x: 1.5, y: 0.1, z: 1.5}
|
m_Convex: 0
|
||||||
m_Center: {x: 0, y: 0, z: 0}
|
m_CookingOptions: 30
|
||||||
|
m_Mesh: {fileID: 0}
|
||||||
--- !u!65 &590849425322242843
|
--- !u!65 &590849425322242843
|
||||||
BoxCollider:
|
BoxCollider:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
|
|||||||
@@ -1,376 +0,0 @@
|
|||||||
%YAML 1.1
|
|
||||||
%TAG !u! tag:unity3d.com,2011:
|
|
||||||
--- !u!1 &6922175388650039756
|
|
||||||
GameObject:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
serializedVersion: 6
|
|
||||||
m_Component:
|
|
||||||
- component: {fileID: 8500599826884145603}
|
|
||||||
- component: {fileID: 5140597600133624551}
|
|
||||||
- component: {fileID: 3884605895522482221}
|
|
||||||
- component: {fileID: 16871832050785725}
|
|
||||||
- component: {fileID: 7987102888823411772}
|
|
||||||
- component: {fileID: 6921400718617286756}
|
|
||||||
m_Layer: 0
|
|
||||||
<<<<<<<< HEAD:Assets/Level/Prefabs/World/MovingDoor.prefab
|
|
||||||
m_Name: MovingDoor
|
|
||||||
========
|
|
||||||
m_Name: BigDoor
|
|
||||||
>>>>>>>> feat/level/create-level-1:Assets/Level/Prefabs/Interactives/BigDoor.prefab
|
|
||||||
m_TagString: Untagged
|
|
||||||
m_Icon: {fileID: 0}
|
|
||||||
m_NavMeshLayer: 0
|
|
||||||
m_StaticEditorFlags: 0
|
|
||||||
m_IsActive: 1
|
|
||||||
--- !u!4 &8500599826884145603
|
|
||||||
Transform:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 6922175388650039756}
|
|
||||||
serializedVersion: 2
|
|
||||||
m_LocalRotation: {x: 0, y: 0.7071068, z: 0, w: 0.7071068}
|
|
||||||
m_LocalPosition: {x: -0.82162, y: 0, z: 0.17412949}
|
|
||||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
|
||||||
m_ConstrainProportionsScale: 0
|
|
||||||
m_Children: []
|
|
||||||
m_Father: {fileID: 0}
|
|
||||||
m_LocalEulerAnglesHint: {x: 0, y: 90, z: 0}
|
|
||||||
--- !u!114 &5140597600133624551
|
|
||||||
MonoBehaviour:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 6922175388650039756}
|
|
||||||
m_Enabled: 1
|
|
||||||
m_EditorHideFlags: 0
|
|
||||||
m_Script: {fileID: 11500000, guid: 8233d90336aea43098adf6dbabd606a2, type: 3}
|
|
||||||
m_Name:
|
|
||||||
m_EditorClassIdentifier: Unity.ProBuilder::UnityEngine.ProBuilder.ProBuilderMesh
|
|
||||||
m_MeshFormatVersion: 2
|
|
||||||
m_Faces:
|
|
||||||
- m_Indexes: 000000000100000002000000010000000300000002000000
|
|
||||||
m_SmoothingGroup: 0
|
|
||||||
m_Uv:
|
|
||||||
m_UseWorldSpace: 0
|
|
||||||
m_FlipU: 0
|
|
||||||
m_FlipV: 0
|
|
||||||
m_SwapUV: 0
|
|
||||||
m_Fill: 1
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
m_Rotation: 0
|
|
||||||
m_Anchor: 0
|
|
||||||
m_Material: {fileID: 0}
|
|
||||||
m_SubmeshIndex: 0
|
|
||||||
m_ManualUV: 0
|
|
||||||
elementGroup: -1
|
|
||||||
m_TextureGroup: -1
|
|
||||||
- m_Indexes: 040000000500000006000000050000000700000006000000
|
|
||||||
m_SmoothingGroup: 0
|
|
||||||
m_Uv:
|
|
||||||
m_UseWorldSpace: 0
|
|
||||||
m_FlipU: 0
|
|
||||||
m_FlipV: 0
|
|
||||||
m_SwapUV: 0
|
|
||||||
m_Fill: 1
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
m_Rotation: 0
|
|
||||||
m_Anchor: 0
|
|
||||||
m_Material: {fileID: 0}
|
|
||||||
m_SubmeshIndex: 0
|
|
||||||
m_ManualUV: 0
|
|
||||||
elementGroup: -1
|
|
||||||
m_TextureGroup: -1
|
|
||||||
- m_Indexes: 08000000090000000a000000090000000b0000000a000000
|
|
||||||
m_SmoothingGroup: 0
|
|
||||||
m_Uv:
|
|
||||||
m_UseWorldSpace: 0
|
|
||||||
m_FlipU: 0
|
|
||||||
m_FlipV: 0
|
|
||||||
m_SwapUV: 0
|
|
||||||
m_Fill: 1
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
m_Rotation: 0
|
|
||||||
m_Anchor: 0
|
|
||||||
m_Material: {fileID: 0}
|
|
||||||
m_SubmeshIndex: 0
|
|
||||||
m_ManualUV: 0
|
|
||||||
elementGroup: -1
|
|
||||||
m_TextureGroup: -1
|
|
||||||
- m_Indexes: 0c0000000d0000000e0000000d0000000f0000000e000000
|
|
||||||
m_SmoothingGroup: 0
|
|
||||||
m_Uv:
|
|
||||||
m_UseWorldSpace: 0
|
|
||||||
m_FlipU: 0
|
|
||||||
m_FlipV: 0
|
|
||||||
m_SwapUV: 0
|
|
||||||
m_Fill: 1
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
m_Rotation: 0
|
|
||||||
m_Anchor: 0
|
|
||||||
m_Material: {fileID: 0}
|
|
||||||
m_SubmeshIndex: 0
|
|
||||||
m_ManualUV: 0
|
|
||||||
elementGroup: -1
|
|
||||||
m_TextureGroup: -1
|
|
||||||
- m_Indexes: 100000001100000012000000110000001300000012000000
|
|
||||||
m_SmoothingGroup: 0
|
|
||||||
m_Uv:
|
|
||||||
m_UseWorldSpace: 0
|
|
||||||
m_FlipU: 0
|
|
||||||
m_FlipV: 0
|
|
||||||
m_SwapUV: 0
|
|
||||||
m_Fill: 1
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
m_Rotation: 0
|
|
||||||
m_Anchor: 0
|
|
||||||
m_Material: {fileID: 0}
|
|
||||||
m_SubmeshIndex: 0
|
|
||||||
m_ManualUV: 0
|
|
||||||
elementGroup: -1
|
|
||||||
m_TextureGroup: -1
|
|
||||||
- m_Indexes: 140000001500000016000000150000001700000016000000
|
|
||||||
m_SmoothingGroup: 0
|
|
||||||
m_Uv:
|
|
||||||
m_UseWorldSpace: 0
|
|
||||||
m_FlipU: 0
|
|
||||||
m_FlipV: 0
|
|
||||||
m_SwapUV: 0
|
|
||||||
m_Fill: 1
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
m_Rotation: 0
|
|
||||||
m_Anchor: 0
|
|
||||||
m_Material: {fileID: 0}
|
|
||||||
m_SubmeshIndex: 0
|
|
||||||
m_ManualUV: 0
|
|
||||||
elementGroup: -1
|
|
||||||
m_TextureGroup: -1
|
|
||||||
m_SharedVertices:
|
|
||||||
- m_Vertices: 000000000d00000016000000
|
|
||||||
- m_Vertices: 010000000400000017000000
|
|
||||||
- m_Vertices: 020000000f00000010000000
|
|
||||||
- m_Vertices: 030000000600000011000000
|
|
||||||
- m_Vertices: 050000000800000015000000
|
|
||||||
- m_Vertices: 070000000a00000013000000
|
|
||||||
- m_Vertices: 090000000c00000014000000
|
|
||||||
- m_Vertices: 0b0000000e00000012000000
|
|
||||||
m_SharedTextures: []
|
|
||||||
m_Positions:
|
|
||||||
- {x: -0.05, y: -1, z: 0.5}
|
|
||||||
- {x: 0.05, y: -1, z: 0.5}
|
|
||||||
- {x: -0.05, y: 1, z: 0.5}
|
|
||||||
- {x: 0.05, y: 1, z: 0.5}
|
|
||||||
- {x: 0.05, y: -1, z: 0.5}
|
|
||||||
- {x: 0.05, y: -1, z: -0.5}
|
|
||||||
- {x: 0.05, y: 1, z: 0.5}
|
|
||||||
- {x: 0.05, y: 1, z: -0.5}
|
|
||||||
- {x: 0.05, y: -1, z: -0.5}
|
|
||||||
- {x: -0.05, y: -1, z: -0.5}
|
|
||||||
- {x: 0.05, y: 1, z: -0.5}
|
|
||||||
- {x: -0.05, y: 1, z: -0.5}
|
|
||||||
- {x: -0.05, y: -1, z: -0.5}
|
|
||||||
- {x: -0.05, y: -1, z: 0.5}
|
|
||||||
- {x: -0.05, y: 1, z: -0.5}
|
|
||||||
- {x: -0.05, y: 1, z: 0.5}
|
|
||||||
- {x: -0.05, y: 1, z: 0.5}
|
|
||||||
- {x: 0.05, y: 1, z: 0.5}
|
|
||||||
- {x: -0.05, y: 1, z: -0.5}
|
|
||||||
- {x: 0.05, y: 1, z: -0.5}
|
|
||||||
- {x: -0.05, y: -1, z: -0.5}
|
|
||||||
- {x: 0.05, y: -1, z: -0.5}
|
|
||||||
- {x: -0.05, y: -1, z: 0.5}
|
|
||||||
- {x: 0.05, y: -1, z: 0.5}
|
|
||||||
m_Textures0:
|
|
||||||
- {x: 0.1, y: -1}
|
|
||||||
- {x: 0, y: -1}
|
|
||||||
- {x: 0.1, y: 1}
|
|
||||||
- {x: 0, y: 1}
|
|
||||||
- {x: 1, y: -1}
|
|
||||||
- {x: 0, y: -1}
|
|
||||||
- {x: 1, y: 1}
|
|
||||||
- {x: 0, y: 1}
|
|
||||||
- {x: 0.1, y: -1}
|
|
||||||
- {x: 0, y: -1}
|
|
||||||
- {x: 0.1, y: 1}
|
|
||||||
- {x: 0, y: 1}
|
|
||||||
- {x: 1, y: -1}
|
|
||||||
- {x: 0, y: -1}
|
|
||||||
- {x: 1, y: 1}
|
|
||||||
- {x: 0, y: 1}
|
|
||||||
- {x: 0, y: 1}
|
|
||||||
- {x: 0.1, y: 1}
|
|
||||||
- {x: 0, y: 0}
|
|
||||||
- {x: 0.1, y: 0}
|
|
||||||
- {x: 0.1, y: 0}
|
|
||||||
- {x: 0, y: 0}
|
|
||||||
- {x: 0.1, y: 1}
|
|
||||||
- {x: 0, y: 1}
|
|
||||||
m_Textures2: []
|
|
||||||
m_Textures3: []
|
|
||||||
m_Tangents:
|
|
||||||
- {x: -1, y: 0, z: 0, w: -1}
|
|
||||||
- {x: -1, y: 0, z: 0, w: -1}
|
|
||||||
- {x: -1, y: 0, z: 0, w: -1}
|
|
||||||
- {x: -1, y: 0, z: 0, w: -1}
|
|
||||||
- {x: 0, y: 0, z: 1, w: -1}
|
|
||||||
- {x: 0, y: 0, z: 1, w: -1}
|
|
||||||
- {x: 0, y: 0, z: 1, w: -1}
|
|
||||||
- {x: 0, y: 0, z: 1, w: -1}
|
|
||||||
- {x: 1, y: 0, z: 0, w: -1}
|
|
||||||
- {x: 1, y: 0, z: 0, w: -1}
|
|
||||||
- {x: 1, y: 0, z: 0, w: -1}
|
|
||||||
- {x: 1, y: 0, z: 0, w: -1}
|
|
||||||
- {x: 0, y: 0, z: -1, w: -1}
|
|
||||||
- {x: 0, y: 0, z: -1, w: -1}
|
|
||||||
- {x: 0, y: 0, z: -1, w: -1}
|
|
||||||
- {x: 0, y: 0, z: -1, w: -1}
|
|
||||||
- {x: 1, y: 0, z: 0, w: -1}
|
|
||||||
- {x: 1, y: 0, z: 0, w: -1}
|
|
||||||
- {x: 1, y: 0, z: 0, w: -1}
|
|
||||||
- {x: 1, y: 0, z: 0, w: -1}
|
|
||||||
- {x: -1, y: 0, z: 0, w: -1}
|
|
||||||
- {x: -1, y: 0, z: 0, w: -1}
|
|
||||||
- {x: -1, y: 0, z: 0, w: -1}
|
|
||||||
- {x: -1, y: 0, z: 0, w: -1}
|
|
||||||
m_Colors: []
|
|
||||||
m_UnwrapParameters:
|
|
||||||
m_HardAngle: 88
|
|
||||||
m_PackMargin: 20
|
|
||||||
m_AngleError: 8
|
|
||||||
m_AreaError: 15
|
|
||||||
m_PreserveMeshAssetOnDestroy: 0
|
|
||||||
assetGuid:
|
|
||||||
m_Mesh: {fileID: 0}
|
|
||||||
m_VersionIndex: 95
|
|
||||||
m_IsSelectable: 1
|
|
||||||
m_SelectedFaces:
|
|
||||||
m_SelectedEdges: []
|
|
||||||
m_SelectedVertices:
|
|
||||||
--- !u!114 &3884605895522482221
|
|
||||||
MonoBehaviour:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 6922175388650039756}
|
|
||||||
m_Enabled: 1
|
|
||||||
m_EditorHideFlags: 0
|
|
||||||
m_Script: {fileID: 11500000, guid: 1ca002da428252441b92f28d83c8a65f, type: 3}
|
|
||||||
m_Name:
|
|
||||||
m_EditorClassIdentifier: Unity.ProBuilder::UnityEngine.ProBuilder.Shapes.ProBuilderShape
|
|
||||||
m_Shape:
|
|
||||||
rid: 1325630791375913023
|
|
||||||
m_ShapeRotation: {x: 0, y: 0, z: 0, w: 1}
|
|
||||||
m_UnmodifiedMeshVersion: 95
|
|
||||||
m_Size: {x: 0.1, y: 2, z: 1}
|
|
||||||
m_LocalCenter: {x: 0, y: 0, z: 0}
|
|
||||||
references:
|
|
||||||
version: 2
|
|
||||||
RefIds:
|
|
||||||
- rid: 1325630791375913023
|
|
||||||
type: {class: Cube, ns: UnityEngine.ProBuilder.Shapes, asm: Unity.ProBuilder}
|
|
||||||
data:
|
|
||||||
--- !u!23 &16871832050785725
|
|
||||||
MeshRenderer:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 6922175388650039756}
|
|
||||||
m_Enabled: 1
|
|
||||||
m_CastShadows: 1
|
|
||||||
m_ReceiveShadows: 1
|
|
||||||
m_DynamicOccludee: 1
|
|
||||||
m_StaticShadowCaster: 0
|
|
||||||
m_MotionVectors: 1
|
|
||||||
m_LightProbeUsage: 1
|
|
||||||
m_ReflectionProbeUsage: 1
|
|
||||||
m_RayTracingMode: 2
|
|
||||||
m_RayTraceProcedural: 0
|
|
||||||
m_RayTracingAccelStructBuildFlagsOverride: 0
|
|
||||||
m_RayTracingAccelStructBuildFlags: 1
|
|
||||||
m_SmallMeshCulling: 1
|
|
||||||
m_ForceMeshLod: -1
|
|
||||||
m_MeshLodSelectionBias: 0
|
|
||||||
m_RenderingLayerMask: 1
|
|
||||||
m_RendererPriority: 0
|
|
||||||
m_Materials:
|
|
||||||
- {fileID: 2100000, guid: bb742d83ed804da40afff0bb98de17b3, type: 2}
|
|
||||||
m_StaticBatchInfo:
|
|
||||||
firstSubMesh: 0
|
|
||||||
subMeshCount: 0
|
|
||||||
m_StaticBatchRoot: {fileID: 0}
|
|
||||||
m_ProbeAnchor: {fileID: 0}
|
|
||||||
m_LightProbeVolumeOverride: {fileID: 0}
|
|
||||||
m_ScaleInLightmap: 1
|
|
||||||
m_ReceiveGI: 1
|
|
||||||
m_PreserveUVs: 0
|
|
||||||
m_IgnoreNormalsForChartDetection: 0
|
|
||||||
m_ImportantGI: 0
|
|
||||||
m_StitchLightmapSeams: 1
|
|
||||||
m_SelectedEditorRenderState: 3
|
|
||||||
m_MinimumChartSize: 4
|
|
||||||
m_AutoUVMaxDistance: 0.5
|
|
||||||
m_AutoUVMaxAngle: 89
|
|
||||||
m_LightmapParameters: {fileID: 0}
|
|
||||||
m_GlobalIlluminationMeshLod: 0
|
|
||||||
m_SortingLayerID: 0
|
|
||||||
m_SortingLayer: 0
|
|
||||||
m_SortingOrder: 0
|
|
||||||
m_MaskInteraction: 0
|
|
||||||
m_AdditionalVertexStreams: {fileID: 0}
|
|
||||||
--- !u!65 &7987102888823411772
|
|
||||||
BoxCollider:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 6922175388650039756}
|
|
||||||
m_Material: {fileID: 0}
|
|
||||||
m_IncludeLayers:
|
|
||||||
serializedVersion: 2
|
|
||||||
m_Bits: 0
|
|
||||||
m_ExcludeLayers:
|
|
||||||
serializedVersion: 2
|
|
||||||
m_Bits: 0
|
|
||||||
m_LayerOverridePriority: 0
|
|
||||||
m_IsTrigger: 0
|
|
||||||
m_ProvidesContacts: 0
|
|
||||||
m_Enabled: 1
|
|
||||||
serializedVersion: 3
|
|
||||||
m_Size: {x: 0.1, y: 2, z: 1}
|
|
||||||
m_Center: {x: 0, y: 0, z: 0}
|
|
||||||
--- !u!114 &6921400718617286756
|
|
||||||
MonoBehaviour:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 6922175388650039756}
|
|
||||||
m_Enabled: 1
|
|
||||||
m_EditorHideFlags: 0
|
|
||||||
m_Script: {fileID: 11500000, guid: 0cc6c36a261296f4c82e315da147ba93, type: 3}
|
|
||||||
m_Name:
|
|
||||||
m_EditorClassIdentifier: Assembly-CSharp::SlidingDoor
|
|
||||||
axis: 1
|
|
||||||
direction: -1
|
|
||||||
slideDistance: 2
|
|
||||||
speed: 3
|
|
||||||
startOpen: 0
|
|
||||||
OnOpened:
|
|
||||||
m_PersistentCalls:
|
|
||||||
m_Calls: []
|
|
||||||
OnClosed:
|
|
||||||
m_PersistentCalls:
|
|
||||||
m_Calls: []
|
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
fileFormatVersion: 2
|
|
||||||
guid: 1c118abd03461b8bf81ae24b3410a233
|
|
||||||
PrefabImporter:
|
|
||||||
externalObjects: {}
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
||||||
File diff suppressed because one or more lines are too long
@@ -9397,21 +9397,13 @@ PrefabInstance:
|
|||||||
propertyPath: m_Mesh
|
propertyPath: m_Mesh
|
||||||
value:
|
value:
|
||||||
objectReference: {fileID: 1732395164}
|
objectReference: {fileID: 1732395164}
|
||||||
- target: {fileID: 6013655646903888208, guid: 9ee323cece3dc49a8b49058b882a22f6, type: 3}
|
|
||||||
propertyPath: resetOnWrongPress
|
|
||||||
value: 1
|
|
||||||
objectReference: {fileID: 0}
|
|
||||||
- target: {fileID: 6013655646903888208, guid: 9ee323cece3dc49a8b49058b882a22f6, type: 3}
|
- target: {fileID: 6013655646903888208, guid: 9ee323cece3dc49a8b49058b882a22f6, type: 3}
|
||||||
propertyPath: 'puzzleBlocks.Array.data[0]'
|
propertyPath: 'puzzleBlocks.Array.data[0]'
|
||||||
value:
|
value:
|
||||||
objectReference: {fileID: 1210153113}
|
objectReference: {fileID: 0}
|
||||||
- target: {fileID: 6013655646903888208, guid: 9ee323cece3dc49a8b49058b882a22f6, type: 3}
|
- target: {fileID: 6013655646903888208, guid: 9ee323cece3dc49a8b49058b882a22f6, type: 3}
|
||||||
propertyPath: 'puzzleBlocks.Array.data[2]'
|
propertyPath: 'puzzleBlocks.Array.data[2]'
|
||||||
value:
|
value:
|
||||||
objectReference: {fileID: 1742811892}
|
|
||||||
- target: {fileID: 6013655646903888208, guid: 9ee323cece3dc49a8b49058b882a22f6, type: 3}
|
|
||||||
propertyPath: 'puzzleBlocks.Array.data[3]'
|
|
||||||
value:
|
|
||||||
objectReference: {fileID: 0}
|
objectReference: {fileID: 0}
|
||||||
- target: {fileID: 6296181247577080123, guid: 9ee323cece3dc49a8b49058b882a22f6, type: 3}
|
- target: {fileID: 6296181247577080123, guid: 9ee323cece3dc49a8b49058b882a22f6, type: 3}
|
||||||
propertyPath: m_Mesh
|
propertyPath: m_Mesh
|
||||||
|
|||||||
@@ -1,5 +1,30 @@
|
|||||||
%YAML 1.1
|
%YAML 1.1
|
||||||
%TAG !u! tag:unity3d.com,2011:
|
%TAG !u! tag:unity3d.com,2011:
|
||||||
|
--- !u!114 &-4377071725885749089
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 0}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 11500000, guid: 4f2de7a6cfbd47c8bc740d43bb991205, type: 3}
|
||||||
|
m_Name: CRTRendererFeature
|
||||||
|
m_EditorClassIdentifier: Assembly-CSharp::CRTRendererFeature
|
||||||
|
m_Active: 1
|
||||||
|
Settings:
|
||||||
|
EffectEnabled: 1
|
||||||
|
PassEvent: 600
|
||||||
|
CRTShader: {fileID: 4800000, guid: 0a9f7eb85c2f4f9f8ec82c8565f4e8b1, type: 3}
|
||||||
|
Intensity: 0.65
|
||||||
|
ScanlineDensity: 1.2
|
||||||
|
ScanlineStrength: 0.18
|
||||||
|
Curvature: 0.04
|
||||||
|
VignetteStrength: 0.28
|
||||||
|
ChromaticAberration: 0.004
|
||||||
|
NoiseStrength: 0.03
|
||||||
|
FlickerStrength: 0.015
|
||||||
--- !u!114 &11400000
|
--- !u!114 &11400000
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
@@ -13,32 +38,28 @@ MonoBehaviour:
|
|||||||
m_Name: PC_Renderer
|
m_Name: PC_Renderer
|
||||||
m_EditorClassIdentifier:
|
m_EditorClassIdentifier:
|
||||||
debugShaders:
|
debugShaders:
|
||||||
debugReplacementPS: {fileID: 4800000, guid: cf852408f2e174538bcd9b7fda1c5ae7,
|
debugReplacementPS: {fileID: 4800000, guid: cf852408f2e174538bcd9b7fda1c5ae7, type: 3}
|
||||||
type: 3}
|
|
||||||
hdrDebugViewPS: {fileID: 4800000, guid: 573620ae32aec764abd4d728906d2587, type: 3}
|
hdrDebugViewPS: {fileID: 4800000, guid: 573620ae32aec764abd4d728906d2587, type: 3}
|
||||||
probeVolumeSamplingDebugComputeShader: {fileID: 7200000, guid: 53626a513ea68ce47b59dc1299fe3959,
|
probeVolumeSamplingDebugComputeShader: {fileID: 7200000, guid: 53626a513ea68ce47b59dc1299fe3959, type: 3}
|
||||||
type: 3}
|
|
||||||
probeVolumeResources:
|
probeVolumeResources:
|
||||||
probeVolumeDebugShader: {fileID: 4800000, guid: e5c6678ed2aaa91408dd3df699057aae,
|
probeVolumeDebugShader: {fileID: 4800000, guid: e5c6678ed2aaa91408dd3df699057aae, type: 3}
|
||||||
type: 3}
|
probeVolumeFragmentationDebugShader: {fileID: 4800000, guid: 03cfc4915c15d504a9ed85ecc404e607, type: 3}
|
||||||
probeVolumeFragmentationDebugShader: {fileID: 4800000, guid: 03cfc4915c15d504a9ed85ecc404e607,
|
probeVolumeOffsetDebugShader: {fileID: 4800000, guid: 53a11f4ebaebf4049b3638ef78dc9664, type: 3}
|
||||||
type: 3}
|
probeVolumeSamplingDebugShader: {fileID: 4800000, guid: 8f96cd657dc40064aa21efcc7e50a2e7, type: 3}
|
||||||
probeVolumeOffsetDebugShader: {fileID: 4800000, guid: 53a11f4ebaebf4049b3638ef78dc9664,
|
probeSamplingDebugMesh: {fileID: -3555484719484374845, guid: 57d7c4c16e2765b47a4d2069b311bffe, type: 3}
|
||||||
type: 3}
|
probeSamplingDebugTexture: {fileID: 2800000, guid: 24ec0e140fb444a44ab96ee80844e18e, type: 3}
|
||||||
probeVolumeSamplingDebugShader: {fileID: 4800000, guid: 8f96cd657dc40064aa21efcc7e50a2e7,
|
probeVolumeBlendStatesCS: {fileID: 7200000, guid: b9a23f869c4fd45f19c5ada54dd82176, type: 3}
|
||||||
type: 3}
|
|
||||||
probeSamplingDebugMesh: {fileID: -3555484719484374845, guid: 57d7c4c16e2765b47a4d2069b311bffe,
|
|
||||||
type: 3}
|
|
||||||
probeSamplingDebugTexture: {fileID: 2800000, guid: 24ec0e140fb444a44ab96ee80844e18e,
|
|
||||||
type: 3}
|
|
||||||
probeVolumeBlendStatesCS: {fileID: 7200000, guid: b9a23f869c4fd45f19c5ada54dd82176,
|
|
||||||
type: 3}
|
|
||||||
m_RendererFeatures:
|
m_RendererFeatures:
|
||||||
- {fileID: 7833122117494664109}
|
- {fileID: 7833122117494664109}
|
||||||
m_RendererFeatureMap: ad6b866f10d7b46c
|
- {fileID: -4377071725885749089}
|
||||||
|
m_RendererFeatureMap: ad6b866f10d7b46c9f882cbe748441c3
|
||||||
m_UseNativeRenderPass: 1
|
m_UseNativeRenderPass: 1
|
||||||
|
xrSystemData: {fileID: 0}
|
||||||
postProcessData: {fileID: 11400000, guid: 41439944d30ece34e96484bdb6645b55, type: 2}
|
postProcessData: {fileID: 11400000, guid: 41439944d30ece34e96484bdb6645b55, type: 2}
|
||||||
m_AssetVersion: 2
|
m_AssetVersion: 3
|
||||||
|
m_PrepassLayerMask:
|
||||||
|
serializedVersion: 2
|
||||||
|
m_Bits: 4294967295
|
||||||
m_OpaqueLayerMask:
|
m_OpaqueLayerMask:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
m_Bits: 4294967295
|
m_Bits: 4294967295
|
||||||
@@ -56,6 +77,8 @@ MonoBehaviour:
|
|||||||
m_RenderingMode: 2
|
m_RenderingMode: 2
|
||||||
m_DepthPrimingMode: 0
|
m_DepthPrimingMode: 0
|
||||||
m_CopyDepthMode: 0
|
m_CopyDepthMode: 0
|
||||||
|
m_DepthAttachmentFormat: 0
|
||||||
|
m_DepthTextureFormat: 0
|
||||||
m_AccurateGbufferNormals: 0
|
m_AccurateGbufferNormals: 0
|
||||||
m_IntermediateTextureMode: 0
|
m_IntermediateTextureMode: 0
|
||||||
--- !u!114 &7833122117494664109
|
--- !u!114 &7833122117494664109
|
||||||
@@ -84,12 +107,3 @@ MonoBehaviour:
|
|||||||
BlurQuality: 0
|
BlurQuality: 0
|
||||||
Falloff: 100
|
Falloff: 100
|
||||||
SampleCount: -1
|
SampleCount: -1
|
||||||
m_BlueNoise256Textures:
|
|
||||||
- {fileID: 2800000, guid: 36f118343fc974119bee3d09e2111500, type: 3}
|
|
||||||
- {fileID: 2800000, guid: 4b7b083e6b6734e8bb2838b0b50a0bc8, type: 3}
|
|
||||||
- {fileID: 2800000, guid: c06cc21c692f94f5fb5206247191eeee, type: 3}
|
|
||||||
- {fileID: 2800000, guid: cb76dd40fa7654f9587f6a344f125c9a, type: 3}
|
|
||||||
- {fileID: 2800000, guid: e32226222ff144b24bf3a5a451de54bc, type: 3}
|
|
||||||
- {fileID: 2800000, guid: 3302065f671a8450b82c9ddf07426f3a, type: 3}
|
|
||||||
- {fileID: 2800000, guid: 56a77a3e8d64f47b6afe9e3c95cb57d5, type: 3}
|
|
||||||
m_Shader: {fileID: 4800000, guid: 0849e84e3d62649e8882e9d6f056a017, type: 3}
|
|
||||||
|
|||||||
@@ -0,0 +1,15 @@
|
|||||||
|
%YAML 1.1
|
||||||
|
%TAG !u! tag:unity3d.com,2011:
|
||||||
|
--- !u!134 &13400000
|
||||||
|
PhysicsMaterial:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_Name: No_Frcition
|
||||||
|
serializedVersion: 2
|
||||||
|
m_DynamicFriction: 0
|
||||||
|
m_StaticFriction: 0
|
||||||
|
m_Bounciness: 0
|
||||||
|
m_FrictionCombine: 0
|
||||||
|
m_BounceCombine: 0
|
||||||
@@ -1,8 +1,8 @@
|
|||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: 3b5cc91c3bf8cf74391252247f52fb59
|
guid: f9ccf03e1da5f4a4683903447659b3d7
|
||||||
NativeFormatImporter:
|
NativeFormatImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
mainObjectFileID: 2100000
|
mainObjectFileID: 13400000
|
||||||
userData:
|
userData:
|
||||||
assetBundleName:
|
assetBundleName:
|
||||||
assetBundleVariant:
|
assetBundleVariant:
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: 7c0881b5a8885c9f0a5954bd7ca490b4
|
guid: f7ddf8204ae4327bb84e928c9ae561d4
|
||||||
NativeFormatImporter:
|
NativeFormatImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
mainObjectFileID: 13400000
|
mainObjectFileID: 13400000
|
||||||
|
|||||||
@@ -1,8 +0,0 @@
|
|||||||
fileFormatVersion: 2
|
|
||||||
guid: ce51c8e33b734b4db6086586558c53a3
|
|
||||||
folderAsset: yes
|
|
||||||
DefaultImporter:
|
|
||||||
externalObjects: {}
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
||||||
@@ -1,93 +0,0 @@
|
|||||||
Copyright (c) 2011, Vernon Adams (vern@newtypography.co.uk),
|
|
||||||
with Reserved Font Name Anton.
|
|
||||||
This Font Software is licensed under the SIL Open Font License, Version 1.1.
|
|
||||||
This license is copied below, and is also available with a FAQ at:
|
|
||||||
http://scripts.sil.org/OFL
|
|
||||||
|
|
||||||
|
|
||||||
-----------------------------------------------------------
|
|
||||||
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
|
|
||||||
-----------------------------------------------------------
|
|
||||||
|
|
||||||
PREAMBLE
|
|
||||||
The goals of the Open Font License (OFL) are to stimulate worldwide
|
|
||||||
development of collaborative font projects, to support the font creation
|
|
||||||
efforts of academic and linguistic communities, and to provide a free and
|
|
||||||
open framework in which fonts may be shared and improved in partnership
|
|
||||||
with others.
|
|
||||||
|
|
||||||
The OFL allows the licensed fonts to be used, studied, modified and
|
|
||||||
redistributed freely as long as they are not sold by themselves. The
|
|
||||||
fonts, including any derivative works, can be bundled, embedded,
|
|
||||||
redistributed and/or sold with any software provided that any reserved
|
|
||||||
names are not used by derivative works. The fonts and derivatives,
|
|
||||||
however, cannot be released under any other type of license. The
|
|
||||||
requirement for fonts to remain under this license does not apply
|
|
||||||
to any document created using the fonts or their derivatives.
|
|
||||||
|
|
||||||
DEFINITIONS
|
|
||||||
"Font Software" refers to the set of files released by the Copyright
|
|
||||||
Holder(s) under this license and clearly marked as such. This may
|
|
||||||
include source files, build scripts and documentation.
|
|
||||||
|
|
||||||
"Reserved Font Name" refers to any names specified as such after the
|
|
||||||
copyright statement(s).
|
|
||||||
|
|
||||||
"Original Version" refers to the collection of Font Software components as
|
|
||||||
distributed by the Copyright Holder(s).
|
|
||||||
|
|
||||||
"Modified Version" refers to any derivative made by adding to, deleting,
|
|
||||||
or substituting -- in part or in whole -- any of the components of the
|
|
||||||
Original Version, by changing formats or by porting the Font Software to a
|
|
||||||
new environment.
|
|
||||||
|
|
||||||
"Author" refers to any designer, engineer, programmer, technical
|
|
||||||
writer or other person who contributed to the Font Software.
|
|
||||||
|
|
||||||
PERMISSION & CONDITIONS
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining
|
|
||||||
a copy of the Font Software, to use, study, copy, merge, embed, modify,
|
|
||||||
redistribute, and sell modified and unmodified copies of the Font
|
|
||||||
Software, subject to the following conditions:
|
|
||||||
|
|
||||||
1) Neither the Font Software nor any of its individual components,
|
|
||||||
in Original or Modified Versions, may be sold by itself.
|
|
||||||
|
|
||||||
2) Original or Modified Versions of the Font Software may be bundled,
|
|
||||||
redistributed and/or sold with any software, provided that each copy
|
|
||||||
contains the above copyright notice and this license. These can be
|
|
||||||
included either as stand-alone text files, human-readable headers or
|
|
||||||
in the appropriate machine-readable metadata fields within text or
|
|
||||||
binary files as long as those fields can be easily viewed by the user.
|
|
||||||
|
|
||||||
3) No Modified Version of the Font Software may use the Reserved Font
|
|
||||||
Name(s) unless explicit written permission is granted by the corresponding
|
|
||||||
Copyright Holder. This restriction only applies to the primary font name as
|
|
||||||
presented to the users.
|
|
||||||
|
|
||||||
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
|
|
||||||
Software shall not be used to promote, endorse or advertise any
|
|
||||||
Modified Version, except to acknowledge the contribution(s) of the
|
|
||||||
Copyright Holder(s) and the Author(s) or with their explicit written
|
|
||||||
permission.
|
|
||||||
|
|
||||||
5) The Font Software, modified or unmodified, in part or in whole,
|
|
||||||
must be distributed entirely under this license, and must not be
|
|
||||||
distributed under any other license. The requirement for fonts to
|
|
||||||
remain under this license does not apply to any document created
|
|
||||||
using the Font Software.
|
|
||||||
|
|
||||||
TERMINATION
|
|
||||||
This license becomes null and void if any of the above conditions are
|
|
||||||
not met.
|
|
||||||
|
|
||||||
DISCLAIMER
|
|
||||||
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
||||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
|
||||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
|
||||||
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
|
||||||
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
||||||
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
|
||||||
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
||||||
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
|
|
||||||
OTHER DEALINGS IN THE FONT SOFTWARE.
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
fileFormatVersion: 2
|
|
||||||
guid: 73a79399807f4e8388c2cbb5494681ca
|
|
||||||
timeCreated: 1484172033
|
|
||||||
licenseType: Pro
|
|
||||||
TextScriptImporter:
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
||||||
Binary file not shown.
@@ -1,19 +0,0 @@
|
|||||||
fileFormatVersion: 2
|
|
||||||
guid: 997a43b767814dd0a7642ec9b78cba41
|
|
||||||
timeCreated: 1484172033
|
|
||||||
licenseType: Pro
|
|
||||||
TrueTypeFontImporter:
|
|
||||||
serializedVersion: 2
|
|
||||||
fontSize: 16
|
|
||||||
forceTextureCase: -2
|
|
||||||
characterSpacing: 1
|
|
||||||
characterPadding: 0
|
|
||||||
includeFontData: 1
|
|
||||||
use2xBehaviour: 0
|
|
||||||
fontNames: []
|
|
||||||
fallbackFontReferences: []
|
|
||||||
customCharacters:
|
|
||||||
fontRenderingMode: 0
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
||||||
@@ -1,93 +0,0 @@
|
|||||||
Copyright (c) 2010 by vernon adams (vern@newtypography.co.uk),
|
|
||||||
with Reserved Font Name Bangers.
|
|
||||||
This Font Software is licensed under the SIL Open Font License, Version 1.1.
|
|
||||||
This license is copied below, and is also available with a FAQ at:
|
|
||||||
http://scripts.sil.org/OFL
|
|
||||||
|
|
||||||
|
|
||||||
-----------------------------------------------------------
|
|
||||||
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
|
|
||||||
-----------------------------------------------------------
|
|
||||||
|
|
||||||
PREAMBLE
|
|
||||||
The goals of the Open Font License (OFL) are to stimulate worldwide
|
|
||||||
development of collaborative font projects, to support the font creation
|
|
||||||
efforts of academic and linguistic communities, and to provide a free and
|
|
||||||
open framework in which fonts may be shared and improved in partnership
|
|
||||||
with others.
|
|
||||||
|
|
||||||
The OFL allows the licensed fonts to be used, studied, modified and
|
|
||||||
redistributed freely as long as they are not sold by themselves. The
|
|
||||||
fonts, including any derivative works, can be bundled, embedded,
|
|
||||||
redistributed and/or sold with any software provided that any reserved
|
|
||||||
names are not used by derivative works. The fonts and derivatives,
|
|
||||||
however, cannot be released under any other type of license. The
|
|
||||||
requirement for fonts to remain under this license does not apply
|
|
||||||
to any document created using the fonts or their derivatives.
|
|
||||||
|
|
||||||
DEFINITIONS
|
|
||||||
"Font Software" refers to the set of files released by the Copyright
|
|
||||||
Holder(s) under this license and clearly marked as such. This may
|
|
||||||
include source files, build scripts and documentation.
|
|
||||||
|
|
||||||
"Reserved Font Name" refers to any names specified as such after the
|
|
||||||
copyright statement(s).
|
|
||||||
|
|
||||||
"Original Version" refers to the collection of Font Software components as
|
|
||||||
distributed by the Copyright Holder(s).
|
|
||||||
|
|
||||||
"Modified Version" refers to any derivative made by adding to, deleting,
|
|
||||||
or substituting -- in part or in whole -- any of the components of the
|
|
||||||
Original Version, by changing formats or by porting the Font Software to a
|
|
||||||
new environment.
|
|
||||||
|
|
||||||
"Author" refers to any designer, engineer, programmer, technical
|
|
||||||
writer or other person who contributed to the Font Software.
|
|
||||||
|
|
||||||
PERMISSION & CONDITIONS
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining
|
|
||||||
a copy of the Font Software, to use, study, copy, merge, embed, modify,
|
|
||||||
redistribute, and sell modified and unmodified copies of the Font
|
|
||||||
Software, subject to the following conditions:
|
|
||||||
|
|
||||||
1) Neither the Font Software nor any of its individual components,
|
|
||||||
in Original or Modified Versions, may be sold by itself.
|
|
||||||
|
|
||||||
2) Original or Modified Versions of the Font Software may be bundled,
|
|
||||||
redistributed and/or sold with any software, provided that each copy
|
|
||||||
contains the above copyright notice and this license. These can be
|
|
||||||
included either as stand-alone text files, human-readable headers or
|
|
||||||
in the appropriate machine-readable metadata fields within text or
|
|
||||||
binary files as long as those fields can be easily viewed by the user.
|
|
||||||
|
|
||||||
3) No Modified Version of the Font Software may use the Reserved Font
|
|
||||||
Name(s) unless explicit written permission is granted by the corresponding
|
|
||||||
Copyright Holder. This restriction only applies to the primary font name as
|
|
||||||
presented to the users.
|
|
||||||
|
|
||||||
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
|
|
||||||
Software shall not be used to promote, endorse or advertise any
|
|
||||||
Modified Version, except to acknowledge the contribution(s) of the
|
|
||||||
Copyright Holder(s) and the Author(s) or with their explicit written
|
|
||||||
permission.
|
|
||||||
|
|
||||||
5) The Font Software, modified or unmodified, in part or in whole,
|
|
||||||
must be distributed entirely under this license, and must not be
|
|
||||||
distributed under any other license. The requirement for fonts to
|
|
||||||
remain under this license does not apply to any document created
|
|
||||||
using the Font Software.
|
|
||||||
|
|
||||||
TERMINATION
|
|
||||||
This license becomes null and void if any of the above conditions are
|
|
||||||
not met.
|
|
||||||
|
|
||||||
DISCLAIMER
|
|
||||||
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
||||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
|
||||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
|
||||||
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
|
||||||
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
||||||
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
|
||||||
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
||||||
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
|
|
||||||
OTHER DEALINGS IN THE FONT SOFTWARE.
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
fileFormatVersion: 2
|
|
||||||
guid: efe0bf4ac872451e91612d1ae593f480
|
|
||||||
timeCreated: 1484171296
|
|
||||||
licenseType: Pro
|
|
||||||
TextScriptImporter:
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
||||||
Binary file not shown.
@@ -1,19 +0,0 @@
|
|||||||
fileFormatVersion: 2
|
|
||||||
guid: 5dd49b3eacc540408c98eee0de38e0f1
|
|
||||||
timeCreated: 1484171297
|
|
||||||
licenseType: Pro
|
|
||||||
TrueTypeFontImporter:
|
|
||||||
serializedVersion: 2
|
|
||||||
fontSize: 16
|
|
||||||
forceTextureCase: -2
|
|
||||||
characterSpacing: 1
|
|
||||||
characterPadding: 0
|
|
||||||
includeFontData: 1
|
|
||||||
use2xBehaviour: 0
|
|
||||||
fontNames: []
|
|
||||||
fallbackFontReferences: []
|
|
||||||
customCharacters:
|
|
||||||
fontRenderingMode: 0
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
||||||
Binary file not shown.
@@ -1,22 +0,0 @@
|
|||||||
fileFormatVersion: 2
|
|
||||||
guid: 8a2b9e2a607dd2143b58c44bc32410b4
|
|
||||||
TrueTypeFontImporter:
|
|
||||||
externalObjects: {}
|
|
||||||
serializedVersion: 4
|
|
||||||
fontSize: 16
|
|
||||||
forceTextureCase: -2
|
|
||||||
characterSpacing: 0
|
|
||||||
characterPadding: 1
|
|
||||||
includeFontData: 1
|
|
||||||
fontName: Electronic Highway Sign
|
|
||||||
fontNames:
|
|
||||||
- Electronic Highway Sign
|
|
||||||
fallbackFontReferences: []
|
|
||||||
customCharacters:
|
|
||||||
fontRenderingMode: 0
|
|
||||||
ascentCalculationMode: 1
|
|
||||||
useLegacyBoundsCalculation: 0
|
|
||||||
shouldRoundAdvanceValue: 1
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
||||||
@@ -1,92 +0,0 @@
|
|||||||
Copyright (c) 2011-2012, Vernon Adams (vern@newtypography.co.uk), with Reserved Font Names 'Oswald'
|
|
||||||
This Font Software is licensed under the SIL Open Font License, Version 1.1.
|
|
||||||
This license is copied below, and is also available with a FAQ at:
|
|
||||||
http://scripts.sil.org/OFL
|
|
||||||
|
|
||||||
|
|
||||||
-----------------------------------------------------------
|
|
||||||
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
|
|
||||||
-----------------------------------------------------------
|
|
||||||
|
|
||||||
PREAMBLE
|
|
||||||
The goals of the Open Font License (OFL) are to stimulate worldwide
|
|
||||||
development of collaborative font projects, to support the font creation
|
|
||||||
efforts of academic and linguistic communities, and to provide a free and
|
|
||||||
open framework in which fonts may be shared and improved in partnership
|
|
||||||
with others.
|
|
||||||
|
|
||||||
The OFL allows the licensed fonts to be used, studied, modified and
|
|
||||||
redistributed freely as long as they are not sold by themselves. The
|
|
||||||
fonts, including any derivative works, can be bundled, embedded,
|
|
||||||
redistributed and/or sold with any software provided that any reserved
|
|
||||||
names are not used by derivative works. The fonts and derivatives,
|
|
||||||
however, cannot be released under any other type of license. The
|
|
||||||
requirement for fonts to remain under this license does not apply
|
|
||||||
to any document created using the fonts or their derivatives.
|
|
||||||
|
|
||||||
DEFINITIONS
|
|
||||||
"Font Software" refers to the set of files released by the Copyright
|
|
||||||
Holder(s) under this license and clearly marked as such. This may
|
|
||||||
include source files, build scripts and documentation.
|
|
||||||
|
|
||||||
"Reserved Font Name" refers to any names specified as such after the
|
|
||||||
copyright statement(s).
|
|
||||||
|
|
||||||
"Original Version" refers to the collection of Font Software components as
|
|
||||||
distributed by the Copyright Holder(s).
|
|
||||||
|
|
||||||
"Modified Version" refers to any derivative made by adding to, deleting,
|
|
||||||
or substituting -- in part or in whole -- any of the components of the
|
|
||||||
Original Version, by changing formats or by porting the Font Software to a
|
|
||||||
new environment.
|
|
||||||
|
|
||||||
"Author" refers to any designer, engineer, programmer, technical
|
|
||||||
writer or other person who contributed to the Font Software.
|
|
||||||
|
|
||||||
PERMISSION & CONDITIONS
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining
|
|
||||||
a copy of the Font Software, to use, study, copy, merge, embed, modify,
|
|
||||||
redistribute, and sell modified and unmodified copies of the Font
|
|
||||||
Software, subject to the following conditions:
|
|
||||||
|
|
||||||
1) Neither the Font Software nor any of its individual components,
|
|
||||||
in Original or Modified Versions, may be sold by itself.
|
|
||||||
|
|
||||||
2) Original or Modified Versions of the Font Software may be bundled,
|
|
||||||
redistributed and/or sold with any software, provided that each copy
|
|
||||||
contains the above copyright notice and this license. These can be
|
|
||||||
included either as stand-alone text files, human-readable headers or
|
|
||||||
in the appropriate machine-readable metadata fields within text or
|
|
||||||
binary files as long as those fields can be easily viewed by the user.
|
|
||||||
|
|
||||||
3) No Modified Version of the Font Software may use the Reserved Font
|
|
||||||
Name(s) unless explicit written permission is granted by the corresponding
|
|
||||||
Copyright Holder. This restriction only applies to the primary font name as
|
|
||||||
presented to the users.
|
|
||||||
|
|
||||||
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
|
|
||||||
Software shall not be used to promote, endorse or advertise any
|
|
||||||
Modified Version, except to acknowledge the contribution(s) of the
|
|
||||||
Copyright Holder(s) and the Author(s) or with their explicit written
|
|
||||||
permission.
|
|
||||||
|
|
||||||
5) The Font Software, modified or unmodified, in part or in whole,
|
|
||||||
must be distributed entirely under this license, and must not be
|
|
||||||
distributed under any other license. The requirement for fonts to
|
|
||||||
remain under this license does not apply to any document created
|
|
||||||
using the Font Software.
|
|
||||||
|
|
||||||
TERMINATION
|
|
||||||
This license becomes null and void if any of the above conditions are
|
|
||||||
not met.
|
|
||||||
|
|
||||||
DISCLAIMER
|
|
||||||
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
||||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
|
||||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
|
||||||
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
|
||||||
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
||||||
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
|
||||||
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
||||||
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
|
|
||||||
OTHER DEALINGS IN THE FONT SOFTWARE.
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
fileFormatVersion: 2
|
|
||||||
guid: d2cf87a8a7a94aa8b80dff1c807c1178
|
|
||||||
timeCreated: 1484171296
|
|
||||||
licenseType: Pro
|
|
||||||
TextScriptImporter:
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
||||||
Binary file not shown.
@@ -1,19 +0,0 @@
|
|||||||
fileFormatVersion: 2
|
|
||||||
guid: c9f6d0e7bc8541498c9a4799ba184ede
|
|
||||||
timeCreated: 1484171297
|
|
||||||
licenseType: Pro
|
|
||||||
TrueTypeFontImporter:
|
|
||||||
serializedVersion: 2
|
|
||||||
fontSize: 16
|
|
||||||
forceTextureCase: -2
|
|
||||||
characterSpacing: 1
|
|
||||||
characterPadding: 0
|
|
||||||
includeFontData: 1
|
|
||||||
use2xBehaviour: 0
|
|
||||||
fontNames: []
|
|
||||||
fallbackFontReferences: []
|
|
||||||
customCharacters:
|
|
||||||
fontRenderingMode: 0
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
||||||
@@ -1,202 +0,0 @@
|
|||||||
|
|
||||||
Apache License
|
|
||||||
Version 2.0, January 2004
|
|
||||||
http://www.apache.org/licenses/
|
|
||||||
|
|
||||||
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
||||||
|
|
||||||
1. Definitions.
|
|
||||||
|
|
||||||
"License" shall mean the terms and conditions for use, reproduction,
|
|
||||||
and distribution as defined by Sections 1 through 9 of this document.
|
|
||||||
|
|
||||||
"Licensor" shall mean the copyright owner or entity authorized by
|
|
||||||
the copyright owner that is granting the License.
|
|
||||||
|
|
||||||
"Legal Entity" shall mean the union of the acting entity and all
|
|
||||||
other entities that control, are controlled by, or are under common
|
|
||||||
control with that entity. For the purposes of this definition,
|
|
||||||
"control" means (i) the power, direct or indirect, to cause the
|
|
||||||
direction or management of such entity, whether by contract or
|
|
||||||
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
||||||
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
||||||
|
|
||||||
"You" (or "Your") shall mean an individual or Legal Entity
|
|
||||||
exercising permissions granted by this License.
|
|
||||||
|
|
||||||
"Source" form shall mean the preferred form for making modifications,
|
|
||||||
including but not limited to software source code, documentation
|
|
||||||
source, and configuration files.
|
|
||||||
|
|
||||||
"Object" form shall mean any form resulting from mechanical
|
|
||||||
transformation or translation of a Source form, including but
|
|
||||||
not limited to compiled object code, generated documentation,
|
|
||||||
and conversions to other media types.
|
|
||||||
|
|
||||||
"Work" shall mean the work of authorship, whether in Source or
|
|
||||||
Object form, made available under the License, as indicated by a
|
|
||||||
copyright notice that is included in or attached to the work
|
|
||||||
(an example is provided in the Appendix below).
|
|
||||||
|
|
||||||
"Derivative Works" shall mean any work, whether in Source or Object
|
|
||||||
form, that is based on (or derived from) the Work and for which the
|
|
||||||
editorial revisions, annotations, elaborations, or other modifications
|
|
||||||
represent, as a whole, an original work of authorship. For the purposes
|
|
||||||
of this License, Derivative Works shall not include works that remain
|
|
||||||
separable from, or merely link (or bind by name) to the interfaces of,
|
|
||||||
the Work and Derivative Works thereof.
|
|
||||||
|
|
||||||
"Contribution" shall mean any work of authorship, including
|
|
||||||
the original version of the Work and any modifications or additions
|
|
||||||
to that Work or Derivative Works thereof, that is intentionally
|
|
||||||
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
||||||
or by an individual or Legal Entity authorized to submit on behalf of
|
|
||||||
the copyright owner. For the purposes of this definition, "submitted"
|
|
||||||
means any form of electronic, verbal, or written communication sent
|
|
||||||
to the Licensor or its representatives, including but not limited to
|
|
||||||
communication on electronic mailing lists, source code control systems,
|
|
||||||
and issue tracking systems that are managed by, or on behalf of, the
|
|
||||||
Licensor for the purpose of discussing and improving the Work, but
|
|
||||||
excluding communication that is conspicuously marked or otherwise
|
|
||||||
designated in writing by the copyright owner as "Not a Contribution."
|
|
||||||
|
|
||||||
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
||||||
on behalf of whom a Contribution has been received by Licensor and
|
|
||||||
subsequently incorporated within the Work.
|
|
||||||
|
|
||||||
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
||||||
this License, each Contributor hereby grants to You a perpetual,
|
|
||||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
||||||
copyright license to reproduce, prepare Derivative Works of,
|
|
||||||
publicly display, publicly perform, sublicense, and distribute the
|
|
||||||
Work and such Derivative Works in Source or Object form.
|
|
||||||
|
|
||||||
3. Grant of Patent License. Subject to the terms and conditions of
|
|
||||||
this License, each Contributor hereby grants to You a perpetual,
|
|
||||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
||||||
(except as stated in this section) patent license to make, have made,
|
|
||||||
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
||||||
where such license applies only to those patent claims licensable
|
|
||||||
by such Contributor that are necessarily infringed by their
|
|
||||||
Contribution(s) alone or by combination of their Contribution(s)
|
|
||||||
with the Work to which such Contribution(s) was submitted. If You
|
|
||||||
institute patent litigation against any entity (including a
|
|
||||||
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
||||||
or a Contribution incorporated within the Work constitutes direct
|
|
||||||
or contributory patent infringement, then any patent licenses
|
|
||||||
granted to You under this License for that Work shall terminate
|
|
||||||
as of the date such litigation is filed.
|
|
||||||
|
|
||||||
4. Redistribution. You may reproduce and distribute copies of the
|
|
||||||
Work or Derivative Works thereof in any medium, with or without
|
|
||||||
modifications, and in Source or Object form, provided that You
|
|
||||||
meet the following conditions:
|
|
||||||
|
|
||||||
(a) You must give any other recipients of the Work or
|
|
||||||
Derivative Works a copy of this License; and
|
|
||||||
|
|
||||||
(b) You must cause any modified files to carry prominent notices
|
|
||||||
stating that You changed the files; and
|
|
||||||
|
|
||||||
(c) You must retain, in the Source form of any Derivative Works
|
|
||||||
that You distribute, all copyright, patent, trademark, and
|
|
||||||
attribution notices from the Source form of the Work,
|
|
||||||
excluding those notices that do not pertain to any part of
|
|
||||||
the Derivative Works; and
|
|
||||||
|
|
||||||
(d) If the Work includes a "NOTICE" text file as part of its
|
|
||||||
distribution, then any Derivative Works that You distribute must
|
|
||||||
include a readable copy of the attribution notices contained
|
|
||||||
within such NOTICE file, excluding those notices that do not
|
|
||||||
pertain to any part of the Derivative Works, in at least one
|
|
||||||
of the following places: within a NOTICE text file distributed
|
|
||||||
as part of the Derivative Works; within the Source form or
|
|
||||||
documentation, if provided along with the Derivative Works; or,
|
|
||||||
within a display generated by the Derivative Works, if and
|
|
||||||
wherever such third-party notices normally appear. The contents
|
|
||||||
of the NOTICE file are for informational purposes only and
|
|
||||||
do not modify the License. You may add Your own attribution
|
|
||||||
notices within Derivative Works that You distribute, alongside
|
|
||||||
or as an addendum to the NOTICE text from the Work, provided
|
|
||||||
that such additional attribution notices cannot be construed
|
|
||||||
as modifying the License.
|
|
||||||
|
|
||||||
You may add Your own copyright statement to Your modifications and
|
|
||||||
may provide additional or different license terms and conditions
|
|
||||||
for use, reproduction, or distribution of Your modifications, or
|
|
||||||
for any such Derivative Works as a whole, provided Your use,
|
|
||||||
reproduction, and distribution of the Work otherwise complies with
|
|
||||||
the conditions stated in this License.
|
|
||||||
|
|
||||||
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
||||||
any Contribution intentionally submitted for inclusion in the Work
|
|
||||||
by You to the Licensor shall be under the terms and conditions of
|
|
||||||
this License, without any additional terms or conditions.
|
|
||||||
Notwithstanding the above, nothing herein shall supersede or modify
|
|
||||||
the terms of any separate license agreement you may have executed
|
|
||||||
with Licensor regarding such Contributions.
|
|
||||||
|
|
||||||
6. Trademarks. This License does not grant permission to use the trade
|
|
||||||
names, trademarks, service marks, or product names of the Licensor,
|
|
||||||
except as required for reasonable and customary use in describing the
|
|
||||||
origin of the Work and reproducing the content of the NOTICE file.
|
|
||||||
|
|
||||||
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
||||||
agreed to in writing, Licensor provides the Work (and each
|
|
||||||
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
||||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
||||||
implied, including, without limitation, any warranties or conditions
|
|
||||||
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
||||||
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
||||||
appropriateness of using or redistributing the Work and assume any
|
|
||||||
risks associated with Your exercise of permissions under this License.
|
|
||||||
|
|
||||||
8. Limitation of Liability. In no event and under no legal theory,
|
|
||||||
whether in tort (including negligence), contract, or otherwise,
|
|
||||||
unless required by applicable law (such as deliberate and grossly
|
|
||||||
negligent acts) or agreed to in writing, shall any Contributor be
|
|
||||||
liable to You for damages, including any direct, indirect, special,
|
|
||||||
incidental, or consequential damages of any character arising as a
|
|
||||||
result of this License or out of the use or inability to use the
|
|
||||||
Work (including but not limited to damages for loss of goodwill,
|
|
||||||
work stoppage, computer failure or malfunction, or any and all
|
|
||||||
other commercial damages or losses), even if such Contributor
|
|
||||||
has been advised of the possibility of such damages.
|
|
||||||
|
|
||||||
9. Accepting Warranty or Additional Liability. While redistributing
|
|
||||||
the Work or Derivative Works thereof, You may choose to offer,
|
|
||||||
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
||||||
or other liability obligations and/or rights consistent with this
|
|
||||||
License. However, in accepting such obligations, You may act only
|
|
||||||
on Your own behalf and on Your sole responsibility, not on behalf
|
|
||||||
of any other Contributor, and only if You agree to indemnify,
|
|
||||||
defend, and hold each Contributor harmless for any liability
|
|
||||||
incurred by, or claims asserted against, such Contributor by reason
|
|
||||||
of your accepting any such warranty or additional liability.
|
|
||||||
|
|
||||||
END OF TERMS AND CONDITIONS
|
|
||||||
|
|
||||||
APPENDIX: How to apply the Apache License to your work.
|
|
||||||
|
|
||||||
To apply the Apache License to your work, attach the following
|
|
||||||
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
||||||
replaced with your own identifying information. (Don't include
|
|
||||||
the brackets!) The text should be enclosed in the appropriate
|
|
||||||
comment syntax for the file format. We also recommend that a
|
|
||||||
file or class name and description of purpose be included on the
|
|
||||||
same "printed page" as the copyright notice for easier
|
|
||||||
identification within third-party archives.
|
|
||||||
|
|
||||||
Copyright [yyyy] [name of copyright owner]
|
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
you may not use this file except in compliance with the License.
|
|
||||||
You may obtain a copy of the License at
|
|
||||||
|
|
||||||
http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
|
|
||||||
Unless required by applicable law or agreed to in writing, software
|
|
||||||
distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
See the License for the specific language governing permissions and
|
|
||||||
limitations under the License.
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
fileFormatVersion: 2
|
|
||||||
guid: f28c334d44214474d9702d3ad79ecb0a
|
|
||||||
timeCreated: 1484171296
|
|
||||||
licenseType: Pro
|
|
||||||
TextScriptImporter:
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
This font is licensed under the Apache License, Version 2.0.
|
|
||||||
|
|
||||||
See the following link for full licensing terms https://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
fileFormatVersion: 2
|
|
||||||
guid: f0303f887b8fa7243a51432c478ff2f3
|
|
||||||
timeCreated: 1484171296
|
|
||||||
licenseType: Pro
|
|
||||||
TextScriptImporter:
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
||||||
Binary file not shown.
@@ -1,22 +0,0 @@
|
|||||||
fileFormatVersion: 2
|
|
||||||
guid: 4beb055f07aaff244873dec698d0363e
|
|
||||||
TrueTypeFontImporter:
|
|
||||||
externalObjects: {}
|
|
||||||
serializedVersion: 4
|
|
||||||
fontSize: 16
|
|
||||||
forceTextureCase: -2
|
|
||||||
characterSpacing: 0
|
|
||||||
characterPadding: 1
|
|
||||||
includeFontData: 1
|
|
||||||
fontName: Roboto
|
|
||||||
fontNames:
|
|
||||||
- Roboto
|
|
||||||
fallbackFontReferences: []
|
|
||||||
customCharacters:
|
|
||||||
fontRenderingMode: 0
|
|
||||||
ascentCalculationMode: 1
|
|
||||||
useLegacyBoundsCalculation: 0
|
|
||||||
shouldRoundAdvanceValue: 1
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
||||||
@@ -1,92 +0,0 @@
|
|||||||
Copyright (c) 2020-2021, Unity, with Reserved Font Names 'Unity'
|
|
||||||
This Font Software is licensed under the SIL Open Font License, Version 1.1.
|
|
||||||
This license is copied below, and is also available with a FAQ at:
|
|
||||||
http://scripts.sil.org/OFL
|
|
||||||
|
|
||||||
|
|
||||||
-----------------------------------------------------------
|
|
||||||
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
|
|
||||||
-----------------------------------------------------------
|
|
||||||
|
|
||||||
PREAMBLE
|
|
||||||
The goals of the Open Font License (OFL) are to stimulate worldwide
|
|
||||||
development of collaborative font projects, to support the font creation
|
|
||||||
efforts of academic and linguistic communities, and to provide a free and
|
|
||||||
open framework in which fonts may be shared and improved in partnership
|
|
||||||
with others.
|
|
||||||
|
|
||||||
The OFL allows the licensed fonts to be used, studied, modified and
|
|
||||||
redistributed freely as long as they are not sold by themselves. The
|
|
||||||
fonts, including any derivative works, can be bundled, embedded,
|
|
||||||
redistributed and/or sold with any software provided that any reserved
|
|
||||||
names are not used by derivative works. The fonts and derivatives,
|
|
||||||
however, cannot be released under any other type of license. The
|
|
||||||
requirement for fonts to remain under this license does not apply
|
|
||||||
to any document created using the fonts or their derivatives.
|
|
||||||
|
|
||||||
DEFINITIONS
|
|
||||||
"Font Software" refers to the set of files released by the Copyright
|
|
||||||
Holder(s) under this license and clearly marked as such. This may
|
|
||||||
include source files, build scripts and documentation.
|
|
||||||
|
|
||||||
"Reserved Font Name" refers to any names specified as such after the
|
|
||||||
copyright statement(s).
|
|
||||||
|
|
||||||
"Original Version" refers to the collection of Font Software components as
|
|
||||||
distributed by the Copyright Holder(s).
|
|
||||||
|
|
||||||
"Modified Version" refers to any derivative made by adding to, deleting,
|
|
||||||
or substituting -- in part or in whole -- any of the components of the
|
|
||||||
Original Version, by changing formats or by porting the Font Software to a
|
|
||||||
new environment.
|
|
||||||
|
|
||||||
"Author" refers to any designer, engineer, programmer, technical
|
|
||||||
writer or other person who contributed to the Font Software.
|
|
||||||
|
|
||||||
PERMISSION & CONDITIONS
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining
|
|
||||||
a copy of the Font Software, to use, study, copy, merge, embed, modify,
|
|
||||||
redistribute, and sell modified and unmodified copies of the Font
|
|
||||||
Software, subject to the following conditions:
|
|
||||||
|
|
||||||
1) Neither the Font Software nor any of its individual components,
|
|
||||||
in Original or Modified Versions, may be sold by itself.
|
|
||||||
|
|
||||||
2) Original or Modified Versions of the Font Software may be bundled,
|
|
||||||
redistributed and/or sold with any software, provided that each copy
|
|
||||||
contains the above copyright notice and this license. These can be
|
|
||||||
included either as stand-alone text files, human-readable headers or
|
|
||||||
in the appropriate machine-readable metadata fields within text or
|
|
||||||
binary files as long as those fields can be easily viewed by the user.
|
|
||||||
|
|
||||||
3) No Modified Version of the Font Software may use the Reserved Font
|
|
||||||
Name(s) unless explicit written permission is granted by the corresponding
|
|
||||||
Copyright Holder. This restriction only applies to the primary font name as
|
|
||||||
presented to the users.
|
|
||||||
|
|
||||||
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
|
|
||||||
Software shall not be used to promote, endorse or advertise any
|
|
||||||
Modified Version, except to acknowledge the contribution(s) of the
|
|
||||||
Copyright Holder(s) and the Author(s) or with their explicit written
|
|
||||||
permission.
|
|
||||||
|
|
||||||
5) The Font Software, modified or unmodified, in part or in whole,
|
|
||||||
must be distributed entirely under this license, and must not be
|
|
||||||
distributed under any other license. The requirement for fonts to
|
|
||||||
remain under this license does not apply to any document created
|
|
||||||
using the Font Software.
|
|
||||||
|
|
||||||
TERMINATION
|
|
||||||
This license becomes null and void if any of the above conditions are
|
|
||||||
not met.
|
|
||||||
|
|
||||||
DISCLAIMER
|
|
||||||
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
||||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
|
||||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
|
||||||
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
|
||||||
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
||||||
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
|
||||||
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
||||||
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
|
|
||||||
OTHER DEALINGS IN THE FONT SOFTWARE.
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
fileFormatVersion: 2
|
|
||||||
guid: 0251f66ebc602a944b35bccd13be2738
|
|
||||||
timeCreated: 1484171296
|
|
||||||
licenseType: Pro
|
|
||||||
TextScriptImporter:
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
||||||
Binary file not shown.
@@ -1,21 +0,0 @@
|
|||||||
fileFormatVersion: 2
|
|
||||||
guid: f4eec857a4fdf2f43be0e9f3d1a984e7
|
|
||||||
TrueTypeFontImporter:
|
|
||||||
externalObjects: {}
|
|
||||||
serializedVersion: 4
|
|
||||||
fontSize: 16
|
|
||||||
forceTextureCase: -2
|
|
||||||
characterSpacing: 0
|
|
||||||
characterPadding: 1
|
|
||||||
includeFontData: 1
|
|
||||||
fontNames:
|
|
||||||
- Unity
|
|
||||||
fallbackFontReferences: []
|
|
||||||
customCharacters:
|
|
||||||
fontRenderingMode: 0
|
|
||||||
ascentCalculationMode: 1
|
|
||||||
useLegacyBoundsCalculation: 0
|
|
||||||
shouldRoundAdvanceValue: 1
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
fileFormatVersion: 2
|
|
||||||
guid: 5808953df7a24274a851aa6dee52d30e
|
|
||||||
folderAsset: yes
|
|
||||||
timeCreated: 1436068007
|
|
||||||
licenseType: Pro
|
|
||||||
DefaultImporter:
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
||||||
@@ -1,84 +0,0 @@
|
|||||||
%YAML 1.1
|
|
||||||
%TAG !u! tag:unity3d.com,2011:
|
|
||||||
--- !u!21 &2100000
|
|
||||||
Material:
|
|
||||||
serializedVersion: 6
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
m_Name: Crate - Surface Shader Scene
|
|
||||||
m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0}
|
|
||||||
m_ShaderKeywords: _EMISSION _NORMALMAP _SMOOTHNESS_TEXTURE_ALBEDO_CHANNEL_A
|
|
||||||
m_LightmapFlags: 1
|
|
||||||
m_EnableInstancingVariants: 0
|
|
||||||
m_DoubleSidedGI: 0
|
|
||||||
m_CustomRenderQueue: -1
|
|
||||||
stringTagMap: {}
|
|
||||||
disabledShaderPasses: []
|
|
||||||
m_SavedProperties:
|
|
||||||
serializedVersion: 3
|
|
||||||
m_TexEnvs:
|
|
||||||
- _BumpMap:
|
|
||||||
m_Texture: {fileID: 2800000, guid: 8878a782f4334ecbbcf683b3ac780966, type: 3}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _DetailAlbedoMap:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _DetailMask:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _DetailNormalMap:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _EmissionMap:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _MainTex:
|
|
||||||
m_Texture: {fileID: 2800000, guid: 602cb87b6a29443b8636370ea0751574, type: 3}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _MetallicGlossMap:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _OcclusionMap:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _ParallaxMap:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _SpecGlossMap:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
m_Floats:
|
|
||||||
- _BumpScale: 0.5
|
|
||||||
- _Cutoff: 0.5
|
|
||||||
- _DetailNormalMapScale: 1
|
|
||||||
- _DstBlend: 0
|
|
||||||
- _EmissionScaleUI: 0
|
|
||||||
- _GlossMapScale: 1
|
|
||||||
- _Glossiness: 0.233
|
|
||||||
- _GlossyReflections: 1
|
|
||||||
- _Metallic: 0
|
|
||||||
- _Mode: 0
|
|
||||||
- _OcclusionStrength: 1
|
|
||||||
- _Parallax: 0.02
|
|
||||||
- _SmoothnessTextureChannel: 1
|
|
||||||
- _SpecularHighlights: 1
|
|
||||||
- _SrcBlend: 1
|
|
||||||
- _UVSec: 0
|
|
||||||
- _ZWrite: 1
|
|
||||||
m_Colors:
|
|
||||||
- _Color: {r: 1, g: 1, b: 1, a: 0.712}
|
|
||||||
- _EmissionColor: {r: 0, g: 0, b: 0, a: 0}
|
|
||||||
- _EmissionColorUI: {r: 1, g: 1, b: 1, a: 1}
|
|
||||||
- _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1}
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
fileFormatVersion: 2
|
|
||||||
guid: e6b9b44320f4448d9d5e0ee634259966
|
|
||||||
NativeFormatImporter:
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
||||||
@@ -1,139 +0,0 @@
|
|||||||
%YAML 1.1
|
|
||||||
%TAG !u! tag:unity3d.com,2011:
|
|
||||||
--- !u!21 &2100000
|
|
||||||
Material:
|
|
||||||
serializedVersion: 8
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
m_Name: Crate - URP
|
|
||||||
m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3}
|
|
||||||
m_Parent: {fileID: 0}
|
|
||||||
m_ModifiedSerializedProperties: 0
|
|
||||||
m_ValidKeywords:
|
|
||||||
- _EMISSION
|
|
||||||
- _NORMALMAP
|
|
||||||
m_InvalidKeywords: []
|
|
||||||
m_LightmapFlags: 7
|
|
||||||
m_EnableInstancingVariants: 0
|
|
||||||
m_DoubleSidedGI: 0
|
|
||||||
m_CustomRenderQueue: -1
|
|
||||||
stringTagMap:
|
|
||||||
RenderType: Opaque
|
|
||||||
disabledShaderPasses:
|
|
||||||
- MOTIONVECTORS
|
|
||||||
m_LockedProperties:
|
|
||||||
m_SavedProperties:
|
|
||||||
serializedVersion: 3
|
|
||||||
m_TexEnvs:
|
|
||||||
- _BaseMap:
|
|
||||||
m_Texture: {fileID: 2800000, guid: 602cb87b6a29443b8636370ea0751574, type: 3}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _BumpMap:
|
|
||||||
m_Texture: {fileID: 2800000, guid: 8878a782f4334ecbbcf683b3ac780966, type: 3}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _DetailAlbedoMap:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _DetailMask:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _DetailNormalMap:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _EmissionMap:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _MainTex:
|
|
||||||
m_Texture: {fileID: 2800000, guid: 602cb87b6a29443b8636370ea0751574, type: 3}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _MetallicGlossMap:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _OcclusionMap:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _ParallaxMap:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _SpecGlossMap:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- unity_Lightmaps:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- unity_LightmapsInd:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- unity_ShadowMasks:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
m_Ints: []
|
|
||||||
m_Floats:
|
|
||||||
- _AddPrecomputedVelocity: 0
|
|
||||||
- _AlphaClip: 0
|
|
||||||
- _AlphaToMask: 0
|
|
||||||
- _Blend: 0
|
|
||||||
- _BlendModePreserveSpecular: 1
|
|
||||||
- _BumpScale: 0.5
|
|
||||||
- _ClearCoatMask: 0
|
|
||||||
- _ClearCoatSmoothness: 0
|
|
||||||
- _Cull: 2
|
|
||||||
- _Cutoff: 0.5
|
|
||||||
- _DetailAlbedoMapScale: 1
|
|
||||||
- _DetailNormalMapScale: 1
|
|
||||||
- _DstBlend: 0
|
|
||||||
- _DstBlendAlpha: 0
|
|
||||||
- _EnvironmentReflections: 1
|
|
||||||
- _GlossMapScale: 0
|
|
||||||
- _Glossiness: 0
|
|
||||||
- _GlossyReflections: 0
|
|
||||||
- _Metallic: 0
|
|
||||||
- _OcclusionStrength: 1
|
|
||||||
- _Parallax: 0.005
|
|
||||||
- _QueueOffset: 0
|
|
||||||
- _ReceiveShadows: 1
|
|
||||||
- _Smoothness: 1
|
|
||||||
- _SmoothnessTextureChannel: 0
|
|
||||||
- _SpecularHighlights: 1
|
|
||||||
- _SrcBlend: 1
|
|
||||||
- _SrcBlendAlpha: 1
|
|
||||||
- _Surface: 0
|
|
||||||
- _WorkflowMode: 1
|
|
||||||
- _XRMotionVectorsPass: 1
|
|
||||||
- _ZWrite: 1
|
|
||||||
m_Colors:
|
|
||||||
- _BaseColor: {r: 1, g: 1, b: 1, a: 0.7137255}
|
|
||||||
- _Color: {r: 1, g: 1, b: 1, a: 0.7137255}
|
|
||||||
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
|
|
||||||
- _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1}
|
|
||||||
m_BuildTextureStacks: []
|
|
||||||
m_AllowLocking: 1
|
|
||||||
--- !u!114 &7626160506639672020
|
|
||||||
MonoBehaviour:
|
|
||||||
m_ObjectHideFlags: 11
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 0}
|
|
||||||
m_Enabled: 1
|
|
||||||
m_EditorHideFlags: 0
|
|
||||||
m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3}
|
|
||||||
m_Name:
|
|
||||||
m_EditorClassIdentifier:
|
|
||||||
version: 10
|
|
||||||
@@ -1,207 +0,0 @@
|
|||||||
%YAML 1.1
|
|
||||||
%TAG !u! tag:unity3d.com,2011:
|
|
||||||
--- !u!21 &2100000
|
|
||||||
Material:
|
|
||||||
serializedVersion: 6
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 0}
|
|
||||||
m_Name: Ground - Logo Scene
|
|
||||||
m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0}
|
|
||||||
m_ShaderKeywords: _NORMALMAP
|
|
||||||
m_LightmapFlags: 5
|
|
||||||
m_CustomRenderQueue: -1
|
|
||||||
stringTagMap: {}
|
|
||||||
m_SavedProperties:
|
|
||||||
serializedVersion: 2
|
|
||||||
m_TexEnvs:
|
|
||||||
data:
|
|
||||||
first:
|
|
||||||
name: _MainTex
|
|
||||||
second:
|
|
||||||
m_Texture: {fileID: 2800000, guid: 1cdc5b506b1a4a33a53c30669ced1f51, type: 3}
|
|
||||||
m_Scale: {x: 20, y: 20}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
data:
|
|
||||||
first:
|
|
||||||
name: _BumpMap
|
|
||||||
second:
|
|
||||||
m_Texture: {fileID: 2800000, guid: 8b8c8a10edf94ddc8cc4cc4fcd5696a9, type: 3}
|
|
||||||
m_Scale: {x: 30, y: 50}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
data:
|
|
||||||
first:
|
|
||||||
name: _DetailNormalMap
|
|
||||||
second:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
data:
|
|
||||||
first:
|
|
||||||
name: _ParallaxMap
|
|
||||||
second:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
data:
|
|
||||||
first:
|
|
||||||
name: _OcclusionMap
|
|
||||||
second:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
data:
|
|
||||||
first:
|
|
||||||
name: _EmissionMap
|
|
||||||
second:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
data:
|
|
||||||
first:
|
|
||||||
name: _DetailMask
|
|
||||||
second:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
data:
|
|
||||||
first:
|
|
||||||
name: _DetailAlbedoMap
|
|
||||||
second:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
data:
|
|
||||||
first:
|
|
||||||
name: _MetallicGlossMap
|
|
||||||
second:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
data:
|
|
||||||
first:
|
|
||||||
name: _BorderTex
|
|
||||||
second:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
data:
|
|
||||||
first:
|
|
||||||
name: _FillTex
|
|
||||||
second:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
data:
|
|
||||||
first:
|
|
||||||
name: _EdgeTex
|
|
||||||
second:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
m_Floats:
|
|
||||||
data:
|
|
||||||
first:
|
|
||||||
name: _SrcBlend
|
|
||||||
second: 1
|
|
||||||
data:
|
|
||||||
first:
|
|
||||||
name: _DstBlend
|
|
||||||
second: 0
|
|
||||||
data:
|
|
||||||
first:
|
|
||||||
name: _Radius
|
|
||||||
second: 0
|
|
||||||
data:
|
|
||||||
first:
|
|
||||||
name: _Cutoff
|
|
||||||
second: .5
|
|
||||||
data:
|
|
||||||
first:
|
|
||||||
name: _Shininess
|
|
||||||
second: .220354751
|
|
||||||
data:
|
|
||||||
first:
|
|
||||||
name: _Parallax
|
|
||||||
second: .0199999996
|
|
||||||
data:
|
|
||||||
first:
|
|
||||||
name: _ZWrite
|
|
||||||
second: 1
|
|
||||||
data:
|
|
||||||
first:
|
|
||||||
name: _Glossiness
|
|
||||||
second: .344000012
|
|
||||||
data:
|
|
||||||
first:
|
|
||||||
name: _BumpScale
|
|
||||||
second: 1
|
|
||||||
data:
|
|
||||||
first:
|
|
||||||
name: _OcclusionStrength
|
|
||||||
second: 1
|
|
||||||
data:
|
|
||||||
first:
|
|
||||||
name: _DetailNormalMapScale
|
|
||||||
second: 1
|
|
||||||
data:
|
|
||||||
first:
|
|
||||||
name: _UVSec
|
|
||||||
second: 0
|
|
||||||
data:
|
|
||||||
first:
|
|
||||||
name: _Mode
|
|
||||||
second: 0
|
|
||||||
data:
|
|
||||||
first:
|
|
||||||
name: _Metallic
|
|
||||||
second: 0
|
|
||||||
data:
|
|
||||||
first:
|
|
||||||
name: _EmissionScaleUI
|
|
||||||
second: 0
|
|
||||||
data:
|
|
||||||
first:
|
|
||||||
name: _EdgeSoftness
|
|
||||||
second: 0
|
|
||||||
data:
|
|
||||||
first:
|
|
||||||
name: _DiffusePower
|
|
||||||
second: 1
|
|
||||||
data:
|
|
||||||
first:
|
|
||||||
name: _Border
|
|
||||||
second: .0214285739
|
|
||||||
data:
|
|
||||||
first:
|
|
||||||
name: _Size
|
|
||||||
second: .100000001
|
|
||||||
data:
|
|
||||||
first:
|
|
||||||
name: _EdgeWidth
|
|
||||||
second: 0
|
|
||||||
m_Colors:
|
|
||||||
data:
|
|
||||||
first:
|
|
||||||
name: _EmissionColor
|
|
||||||
second: {r: 0, g: 0, b: 0, a: 0}
|
|
||||||
data:
|
|
||||||
first:
|
|
||||||
name: _Color
|
|
||||||
second: {r: 1, g: 1, b: 1, a: 1}
|
|
||||||
data:
|
|
||||||
first:
|
|
||||||
name: _SpecColor
|
|
||||||
second: {r: .5, g: .5, b: .5, a: 1}
|
|
||||||
data:
|
|
||||||
first:
|
|
||||||
name: _EmissionColorUI
|
|
||||||
second: {r: 1, g: 1, b: 1, a: 1}
|
|
||||||
data:
|
|
||||||
first:
|
|
||||||
name: _FaceColor
|
|
||||||
second: {r: 1, g: 1, b: 1, a: 1}
|
|
||||||
data:
|
|
||||||
first:
|
|
||||||
name: _BorderColor
|
|
||||||
second: {r: 0, g: 0, b: 0, a: 1}
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
fileFormatVersion: 2
|
|
||||||
guid: c719e38f25a9480abd2480ab621a2949
|
|
||||||
NativeFormatImporter:
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
||||||
@@ -1,112 +0,0 @@
|
|||||||
%YAML 1.1
|
|
||||||
%TAG !u! tag:unity3d.com,2011:
|
|
||||||
--- !u!21 &2100000
|
|
||||||
Material:
|
|
||||||
serializedVersion: 6
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
m_Name: Ground - Surface Shader Scene
|
|
||||||
m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0}
|
|
||||||
m_ShaderKeywords: _EMISSION
|
|
||||||
m_LightmapFlags: 1
|
|
||||||
m_EnableInstancingVariants: 0
|
|
||||||
m_DoubleSidedGI: 0
|
|
||||||
m_CustomRenderQueue: -1
|
|
||||||
stringTagMap: {}
|
|
||||||
disabledShaderPasses: []
|
|
||||||
m_SavedProperties:
|
|
||||||
serializedVersion: 3
|
|
||||||
m_TexEnvs:
|
|
||||||
- _BorderTex:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _BumpMap:
|
|
||||||
m_Texture: {fileID: 2800000, guid: c45cd05946364f32aba704f0853a975b, type: 3}
|
|
||||||
m_Scale: {x: 10, y: 10}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _DetailAlbedoMap:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _DetailMask:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _DetailNormalMap:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _DetailTex:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _EdgeTex:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _EmissionMap:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _FillTex:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _MainTex:
|
|
||||||
m_Texture: {fileID: 2800000, guid: 85ac55597b97403c82fc6601a93cf241, type: 3}
|
|
||||||
m_Scale: {x: 5, y: 5}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _MetallicGlossMap:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _OcclusionMap:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _ParallaxMap:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
m_Floats:
|
|
||||||
- _Border: 0.021428574
|
|
||||||
- _BumpScale: 0.25
|
|
||||||
- _ColorMask: 15
|
|
||||||
- _Cutoff: 0.5
|
|
||||||
- _DetailNormalMapScale: 1
|
|
||||||
- _DiffusePower: 1
|
|
||||||
- _DstBlend: 0
|
|
||||||
- _EdgeSoftness: 0
|
|
||||||
- _EdgeWidth: 0
|
|
||||||
- _EmissionScaleUI: 0
|
|
||||||
- _GlossMapScale: 1
|
|
||||||
- _Glossiness: 0.348
|
|
||||||
- _GlossyReflections: 1
|
|
||||||
- _Metallic: 0
|
|
||||||
- _Mode: 0
|
|
||||||
- _OcclusionStrength: 1
|
|
||||||
- _Parallax: 0.02
|
|
||||||
- _Radius: 0
|
|
||||||
- _Shininess: 0.24302611
|
|
||||||
- _Size: 0.1
|
|
||||||
- _SmoothnessTextureChannel: 0
|
|
||||||
- _SpecularHighlights: 1
|
|
||||||
- _SrcBlend: 1
|
|
||||||
- _Stencil: 0
|
|
||||||
- _StencilComp: 8
|
|
||||||
- _StencilOp: 0
|
|
||||||
- _StencilReadMask: 255
|
|
||||||
- _StencilWriteMask: 255
|
|
||||||
- _Strength: 0.2
|
|
||||||
- _UVSec: 0
|
|
||||||
- _ZWrite: 1
|
|
||||||
m_Colors:
|
|
||||||
- _BorderColor: {r: 0, g: 0, b: 0, a: 1}
|
|
||||||
- _Color: {r: 1, g: 1, b: 1, a: 0.8784314}
|
|
||||||
- _EmissionColor: {r: 0, g: 0, b: 0, a: 0}
|
|
||||||
- _EmissionColorUI: {r: 1, g: 1, b: 1, a: 1}
|
|
||||||
- _FaceColor: {r: 1, g: 1, b: 1, a: 1}
|
|
||||||
- _SpecColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
fileFormatVersion: 2
|
|
||||||
guid: aadd5a709a48466c887296bb5b1b8110
|
|
||||||
NativeFormatImporter:
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
||||||
@@ -1,174 +0,0 @@
|
|||||||
%YAML 1.1
|
|
||||||
%TAG !u! tag:unity3d.com,2011:
|
|
||||||
--- !u!21 &2100000
|
|
||||||
Material:
|
|
||||||
serializedVersion: 8
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
m_Name: Ground - URP
|
|
||||||
m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3}
|
|
||||||
m_Parent: {fileID: 0}
|
|
||||||
m_ModifiedSerializedProperties: 0
|
|
||||||
m_ValidKeywords:
|
|
||||||
- _EMISSION
|
|
||||||
m_InvalidKeywords: []
|
|
||||||
m_LightmapFlags: 7
|
|
||||||
m_EnableInstancingVariants: 0
|
|
||||||
m_DoubleSidedGI: 0
|
|
||||||
m_CustomRenderQueue: -1
|
|
||||||
stringTagMap:
|
|
||||||
RenderType: Opaque
|
|
||||||
disabledShaderPasses:
|
|
||||||
- MOTIONVECTORS
|
|
||||||
m_LockedProperties:
|
|
||||||
m_SavedProperties:
|
|
||||||
serializedVersion: 3
|
|
||||||
m_TexEnvs:
|
|
||||||
- _BaseMap:
|
|
||||||
m_Texture: {fileID: 2800000, guid: 85ac55597b97403c82fc6601a93cf241, type: 3}
|
|
||||||
m_Scale: {x: 5, y: 5}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _BorderTex:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _BumpMap:
|
|
||||||
m_Texture: {fileID: 2800000, guid: c45cd05946364f32aba704f0853a975b, type: 3}
|
|
||||||
m_Scale: {x: 10, y: 10}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _DetailAlbedoMap:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _DetailMask:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _DetailNormalMap:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _DetailTex:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _EdgeTex:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _EmissionMap:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _FillTex:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _MainTex:
|
|
||||||
m_Texture: {fileID: 2800000, guid: 85ac55597b97403c82fc6601a93cf241, type: 3}
|
|
||||||
m_Scale: {x: 5, y: 5}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _MetallicGlossMap:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _OcclusionMap:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _ParallaxMap:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _SpecGlossMap:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- unity_Lightmaps:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- unity_LightmapsInd:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- unity_ShadowMasks:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
m_Ints: []
|
|
||||||
m_Floats:
|
|
||||||
- _AddPrecomputedVelocity: 0
|
|
||||||
- _AlphaClip: 0
|
|
||||||
- _AlphaToMask: 0
|
|
||||||
- _Blend: 0
|
|
||||||
- _BlendModePreserveSpecular: 1
|
|
||||||
- _Border: 0.021428574
|
|
||||||
- _BumpScale: 0.25
|
|
||||||
- _ClearCoatMask: 0
|
|
||||||
- _ClearCoatSmoothness: 0
|
|
||||||
- _ColorMask: 15
|
|
||||||
- _Cull: 2
|
|
||||||
- _Cutoff: 0.5
|
|
||||||
- _DetailAlbedoMapScale: 1
|
|
||||||
- _DetailNormalMapScale: 1
|
|
||||||
- _DiffusePower: 1
|
|
||||||
- _DstBlend: 0
|
|
||||||
- _DstBlendAlpha: 0
|
|
||||||
- _EdgeSoftness: 0
|
|
||||||
- _EdgeWidth: 0
|
|
||||||
- _EmissionScaleUI: 0
|
|
||||||
- _EnvironmentReflections: 1
|
|
||||||
- _GlossMapScale: 1
|
|
||||||
- _Glossiness: 0.348
|
|
||||||
- _GlossyReflections: 1
|
|
||||||
- _Metallic: 0
|
|
||||||
- _Mode: 0
|
|
||||||
- _OcclusionStrength: 1
|
|
||||||
- _Parallax: 0.02
|
|
||||||
- _QueueOffset: 0
|
|
||||||
- _Radius: 0
|
|
||||||
- _ReceiveShadows: 1
|
|
||||||
- _Shininess: 0.24302611
|
|
||||||
- _Size: 0.1
|
|
||||||
- _Smoothness: 0.348
|
|
||||||
- _SmoothnessTextureChannel: 0
|
|
||||||
- _SpecularHighlights: 1
|
|
||||||
- _SrcBlend: 1
|
|
||||||
- _SrcBlendAlpha: 1
|
|
||||||
- _Stencil: 0
|
|
||||||
- _StencilComp: 8
|
|
||||||
- _StencilOp: 0
|
|
||||||
- _StencilReadMask: 255
|
|
||||||
- _StencilWriteMask: 255
|
|
||||||
- _Strength: 0.2
|
|
||||||
- _Surface: 0
|
|
||||||
- _UVSec: 0
|
|
||||||
- _WorkflowMode: 1
|
|
||||||
- _XRMotionVectorsPass: 1
|
|
||||||
- _ZWrite: 1
|
|
||||||
m_Colors:
|
|
||||||
- _BaseColor: {r: 1, g: 1, b: 1, a: 1}
|
|
||||||
- _BorderColor: {r: 0, g: 0, b: 0, a: 1}
|
|
||||||
- _Color: {r: 1, g: 1, b: 1, a: 1}
|
|
||||||
- _EmissionColor: {r: 0, g: 0, b: 0, a: 0}
|
|
||||||
- _EmissionColorUI: {r: 1, g: 1, b: 1, a: 1}
|
|
||||||
- _FaceColor: {r: 1, g: 1, b: 1, a: 1}
|
|
||||||
- _SpecColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
|
|
||||||
m_BuildTextureStacks: []
|
|
||||||
m_AllowLocking: 1
|
|
||||||
--- !u!114 &8510939975645199906
|
|
||||||
MonoBehaviour:
|
|
||||||
m_ObjectHideFlags: 11
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 0}
|
|
||||||
m_Enabled: 1
|
|
||||||
m_EditorHideFlags: 0
|
|
||||||
m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3}
|
|
||||||
m_Name:
|
|
||||||
m_EditorClassIdentifier:
|
|
||||||
version: 10
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
fileFormatVersion: 2
|
|
||||||
guid: 71529b88994c1a341b22bc57c038674a
|
|
||||||
NativeFormatImporter:
|
|
||||||
externalObjects: {}
|
|
||||||
mainObjectFileID: 2100000
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
||||||
@@ -1,127 +0,0 @@
|
|||||||
%YAML 1.1
|
|
||||||
%TAG !u! tag:unity3d.com,2011:
|
|
||||||
--- !u!21 &2100000
|
|
||||||
Material:
|
|
||||||
serializedVersion: 6
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 0}
|
|
||||||
m_Name: Small Crate_diffuse
|
|
||||||
m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0}
|
|
||||||
m_ShaderKeywords: _EMISSION _NORMALMAP
|
|
||||||
m_LightmapFlags: 1
|
|
||||||
m_CustomRenderQueue: -1
|
|
||||||
stringTagMap: {}
|
|
||||||
m_SavedProperties:
|
|
||||||
serializedVersion: 2
|
|
||||||
m_TexEnvs:
|
|
||||||
- first:
|
|
||||||
name: _BumpMap
|
|
||||||
second:
|
|
||||||
m_Texture: {fileID: 2800000, guid: 8878a782f4334ecbbcf683b3ac780966, type: 3}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- first:
|
|
||||||
name: _DetailAlbedoMap
|
|
||||||
second:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- first:
|
|
||||||
name: _DetailMask
|
|
||||||
second:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- first:
|
|
||||||
name: _DetailNormalMap
|
|
||||||
second:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- first:
|
|
||||||
name: _EmissionMap
|
|
||||||
second:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- first:
|
|
||||||
name: _MainTex
|
|
||||||
second:
|
|
||||||
m_Texture: {fileID: 2800000, guid: 602cb87b6a29443b8636370ea0751574, type: 3}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- first:
|
|
||||||
name: _MetallicGlossMap
|
|
||||||
second:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- first:
|
|
||||||
name: _OcclusionMap
|
|
||||||
second:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- first:
|
|
||||||
name: _ParallaxMap
|
|
||||||
second:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
m_Floats:
|
|
||||||
- first:
|
|
||||||
name: _BumpScale
|
|
||||||
second: 1
|
|
||||||
- first:
|
|
||||||
name: _Cutoff
|
|
||||||
second: 0.5
|
|
||||||
- first:
|
|
||||||
name: _DetailNormalMapScale
|
|
||||||
second: 1
|
|
||||||
- first:
|
|
||||||
name: _DstBlend
|
|
||||||
second: 0
|
|
||||||
- first:
|
|
||||||
name: _GlossMapScale
|
|
||||||
second: 1
|
|
||||||
- first:
|
|
||||||
name: _Glossiness
|
|
||||||
second: 0.5
|
|
||||||
- first:
|
|
||||||
name: _GlossyReflections
|
|
||||||
second: 1
|
|
||||||
- first:
|
|
||||||
name: _Metallic
|
|
||||||
second: 0
|
|
||||||
- first:
|
|
||||||
name: _Mode
|
|
||||||
second: 0
|
|
||||||
- first:
|
|
||||||
name: _OcclusionStrength
|
|
||||||
second: 1
|
|
||||||
- first:
|
|
||||||
name: _Parallax
|
|
||||||
second: 0.02
|
|
||||||
- first:
|
|
||||||
name: _SmoothnessTextureChannel
|
|
||||||
second: 0
|
|
||||||
- first:
|
|
||||||
name: _SpecularHighlights
|
|
||||||
second: 1
|
|
||||||
- first:
|
|
||||||
name: _SrcBlend
|
|
||||||
second: 1
|
|
||||||
- first:
|
|
||||||
name: _UVSec
|
|
||||||
second: 0
|
|
||||||
- first:
|
|
||||||
name: _ZWrite
|
|
||||||
second: 1
|
|
||||||
m_Colors:
|
|
||||||
- first:
|
|
||||||
name: _Color
|
|
||||||
second: {r: 1, g: 1, b: 1, a: 1}
|
|
||||||
- first:
|
|
||||||
name: _EmissionColor
|
|
||||||
second: {r: 0, g: 0, b: 0, a: 1}
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
fileFormatVersion: 2
|
|
||||||
guid: 22262639920f43d6be32430e4e58350d
|
|
||||||
timeCreated: 1473643741
|
|
||||||
licenseType: Pro
|
|
||||||
NativeFormatImporter:
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
fileFormatVersion: 2
|
|
||||||
guid: 5bff2544887143f5807c7d5059d07f79
|
|
||||||
folderAsset: yes
|
|
||||||
timeCreated: 1436068007
|
|
||||||
licenseType: Pro
|
|
||||||
DefaultImporter:
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
||||||
@@ -1,280 +0,0 @@
|
|||||||
%YAML 1.1
|
|
||||||
%TAG !u! tag:unity3d.com,2011:
|
|
||||||
--- !u!1 &121924
|
|
||||||
GameObject:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 100100000}
|
|
||||||
serializedVersion: 4
|
|
||||||
m_Component:
|
|
||||||
- 224: {fileID: 22414422}
|
|
||||||
- 222: {fileID: 22260028}
|
|
||||||
- 114: {fileID: 11487728}
|
|
||||||
m_Layer: 0
|
|
||||||
m_Name: TextMeshPro Text
|
|
||||||
m_TagString: Untagged
|
|
||||||
m_Icon: {fileID: 0}
|
|
||||||
m_NavMeshLayer: 0
|
|
||||||
m_StaticEditorFlags: 0
|
|
||||||
m_IsActive: 1
|
|
||||||
--- !u!1 &188050
|
|
||||||
GameObject:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 100100000}
|
|
||||||
serializedVersion: 4
|
|
||||||
m_Component:
|
|
||||||
- 224: {fileID: 22450954}
|
|
||||||
- 222: {fileID: 22204918}
|
|
||||||
- 114: {fileID: 11486278}
|
|
||||||
- 114: {fileID: 11427010}
|
|
||||||
- 114: {fileID: 11405862}
|
|
||||||
- 225: {fileID: 22524478}
|
|
||||||
m_Layer: 0
|
|
||||||
m_Name: Text Popup
|
|
||||||
m_TagString: Untagged
|
|
||||||
m_Icon: {fileID: 0}
|
|
||||||
m_NavMeshLayer: 0
|
|
||||||
m_StaticEditorFlags: 0
|
|
||||||
m_IsActive: 1
|
|
||||||
--- !u!114 &11405862
|
|
||||||
MonoBehaviour:
|
|
||||||
m_ObjectHideFlags: 1
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 100100000}
|
|
||||||
m_GameObject: {fileID: 188050}
|
|
||||||
m_Enabled: 1
|
|
||||||
m_EditorHideFlags: 0
|
|
||||||
m_Script: {fileID: 1741964061, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
|
|
||||||
m_Name:
|
|
||||||
m_EditorClassIdentifier:
|
|
||||||
m_HorizontalFit: 2
|
|
||||||
m_VerticalFit: 2
|
|
||||||
--- !u!114 &11427010
|
|
||||||
MonoBehaviour:
|
|
||||||
m_ObjectHideFlags: 1
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 100100000}
|
|
||||||
m_GameObject: {fileID: 188050}
|
|
||||||
m_Enabled: 1
|
|
||||||
m_EditorHideFlags: 0
|
|
||||||
m_Script: {fileID: 1297475563, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
|
|
||||||
m_Name:
|
|
||||||
m_EditorClassIdentifier:
|
|
||||||
m_Padding:
|
|
||||||
m_Left: 10
|
|
||||||
m_Right: 10
|
|
||||||
m_Top: 10
|
|
||||||
m_Bottom: 10
|
|
||||||
m_ChildAlignment: 0
|
|
||||||
m_Spacing: 0
|
|
||||||
m_ChildForceExpandWidth: 1
|
|
||||||
m_ChildForceExpandHeight: 1
|
|
||||||
--- !u!114 &11486278
|
|
||||||
MonoBehaviour:
|
|
||||||
m_ObjectHideFlags: 1
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 100100000}
|
|
||||||
m_GameObject: {fileID: 188050}
|
|
||||||
m_Enabled: 1
|
|
||||||
m_EditorHideFlags: 0
|
|
||||||
m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
|
|
||||||
m_Name:
|
|
||||||
m_EditorClassIdentifier:
|
|
||||||
m_Material: {fileID: 0}
|
|
||||||
m_Color: {r: 0.10542818, g: 0.21589755, b: 0.47794116, a: 0.9411765}
|
|
||||||
m_RaycastTarget: 1
|
|
||||||
m_OnCullStateChanged:
|
|
||||||
m_PersistentCalls:
|
|
||||||
m_Calls: []
|
|
||||||
m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
|
|
||||||
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
|
|
||||||
m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0}
|
|
||||||
m_Type: 1
|
|
||||||
m_PreserveAspect: 0
|
|
||||||
m_FillCenter: 1
|
|
||||||
m_FillMethod: 4
|
|
||||||
m_FillAmount: 1
|
|
||||||
m_FillClockwise: 1
|
|
||||||
m_FillOrigin: 0
|
|
||||||
--- !u!114 &11487728
|
|
||||||
MonoBehaviour:
|
|
||||||
m_ObjectHideFlags: 1
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 100100000}
|
|
||||||
m_GameObject: {fileID: 121924}
|
|
||||||
m_Enabled: 1
|
|
||||||
m_EditorHideFlags: 0
|
|
||||||
m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3}
|
|
||||||
m_Name:
|
|
||||||
m_EditorClassIdentifier:
|
|
||||||
m_Material: {fileID: 0}
|
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 1}
|
|
||||||
m_RaycastTarget: 1
|
|
||||||
m_OnCullStateChanged:
|
|
||||||
m_PersistentCalls:
|
|
||||||
m_Calls: []
|
|
||||||
m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
|
|
||||||
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
|
|
||||||
m_text: Sample
|
|
||||||
m_isRightToLeft: 0
|
|
||||||
m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
|
|
||||||
m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
|
|
||||||
m_fontSharedMaterials: []
|
|
||||||
m_fontMaterial: {fileID: 0}
|
|
||||||
m_fontMaterials: []
|
|
||||||
m_fontColor32:
|
|
||||||
serializedVersion: 2
|
|
||||||
rgba: 4294967295
|
|
||||||
m_fontColor: {r: 1, g: 1, b: 1, a: 1}
|
|
||||||
m_enableVertexGradient: 0
|
|
||||||
m_fontColorGradient:
|
|
||||||
topLeft: {r: 1, g: 1, b: 1, a: 1}
|
|
||||||
topRight: {r: 1, g: 1, b: 1, a: 1}
|
|
||||||
bottomLeft: {r: 1, g: 1, b: 1, a: 1}
|
|
||||||
bottomRight: {r: 1, g: 1, b: 1, a: 1}
|
|
||||||
m_fontColorGradientPreset: {fileID: 0}
|
|
||||||
m_spriteAsset: {fileID: 0}
|
|
||||||
m_tintAllSprites: 0
|
|
||||||
m_overrideHtmlColors: 0
|
|
||||||
m_faceColor:
|
|
||||||
serializedVersion: 2
|
|
||||||
rgba: 4294967295
|
|
||||||
m_outlineColor:
|
|
||||||
serializedVersion: 2
|
|
||||||
rgba: 4278190080
|
|
||||||
m_fontSize: 36
|
|
||||||
m_fontSizeBase: 36
|
|
||||||
m_fontWeight: 400
|
|
||||||
m_enableAutoSizing: 0
|
|
||||||
m_fontSizeMin: 18
|
|
||||||
m_fontSizeMax: 72
|
|
||||||
m_fontStyle: 0
|
|
||||||
m_textAlignment: 514
|
|
||||||
m_isAlignmentEnumConverted: 1
|
|
||||||
m_characterSpacing: 0
|
|
||||||
m_wordSpacing: 0
|
|
||||||
m_lineSpacing: 0
|
|
||||||
m_lineSpacingMax: 0
|
|
||||||
m_paragraphSpacing: 0
|
|
||||||
m_charWidthMaxAdj: 0
|
|
||||||
m_enableWordWrapping: 0
|
|
||||||
m_wordWrappingRatios: 0.4
|
|
||||||
m_overflowMode: 0
|
|
||||||
m_firstOverflowCharacterIndex: -1
|
|
||||||
m_linkedTextComponent: {fileID: 0}
|
|
||||||
m_isLinkedTextComponent: 0
|
|
||||||
m_enableKerning: 1
|
|
||||||
m_enableExtraPadding: 0
|
|
||||||
checkPaddingRequired: 0
|
|
||||||
m_isRichText: 1
|
|
||||||
m_parseCtrlCharacters: 1
|
|
||||||
m_isOrthographic: 1
|
|
||||||
m_isCullingEnabled: 0
|
|
||||||
m_ignoreRectMaskCulling: 0
|
|
||||||
m_ignoreCulling: 1
|
|
||||||
m_horizontalMapping: 0
|
|
||||||
m_verticalMapping: 0
|
|
||||||
m_uvLineOffset: 0
|
|
||||||
m_geometrySortingOrder: 0
|
|
||||||
m_firstVisibleCharacter: 0
|
|
||||||
m_useMaxVisibleDescender: 1
|
|
||||||
m_pageToDisplay: 1
|
|
||||||
m_margin: {x: 0, y: 0, z: 0, w: 0}
|
|
||||||
m_textInfo:
|
|
||||||
textComponent: {fileID: 0}
|
|
||||||
characterCount: 6
|
|
||||||
spriteCount: 0
|
|
||||||
spaceCount: 0
|
|
||||||
wordCount: 1
|
|
||||||
linkCount: 0
|
|
||||||
lineCount: 1
|
|
||||||
pageCount: 1
|
|
||||||
materialCount: 1
|
|
||||||
m_havePropertiesChanged: 1
|
|
||||||
m_isUsingLegacyAnimationComponent: 0
|
|
||||||
m_isVolumetricText: 0
|
|
||||||
m_spriteAnimator: {fileID: 0}
|
|
||||||
m_isInputParsingRequired: 1
|
|
||||||
m_inputSource: 0
|
|
||||||
m_hasFontAssetChanged: 0
|
|
||||||
m_subTextObjects:
|
|
||||||
- {fileID: 0}
|
|
||||||
- {fileID: 0}
|
|
||||||
- {fileID: 0}
|
|
||||||
- {fileID: 0}
|
|
||||||
- {fileID: 0}
|
|
||||||
- {fileID: 0}
|
|
||||||
- {fileID: 0}
|
|
||||||
- {fileID: 0}
|
|
||||||
m_baseMaterial: {fileID: 2100000, guid: 316f956b856b45c448987b5018ec3ef4, type: 2}
|
|
||||||
m_maskOffset: {x: 0, y: 0, z: 0, w: 0}
|
|
||||||
--- !u!222 &22204918
|
|
||||||
CanvasRenderer:
|
|
||||||
m_ObjectHideFlags: 1
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 100100000}
|
|
||||||
m_GameObject: {fileID: 188050}
|
|
||||||
--- !u!222 &22260028
|
|
||||||
CanvasRenderer:
|
|
||||||
m_ObjectHideFlags: 1
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 100100000}
|
|
||||||
m_GameObject: {fileID: 121924}
|
|
||||||
--- !u!224 &22414422
|
|
||||||
RectTransform:
|
|
||||||
m_ObjectHideFlags: 1
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 100100000}
|
|
||||||
m_GameObject: {fileID: 121924}
|
|
||||||
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
|
||||||
m_LocalPosition: {x: 0, y: 0, z: 0}
|
|
||||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
|
||||||
m_Children: []
|
|
||||||
m_Father: {fileID: 22450954}
|
|
||||||
m_RootOrder: 0
|
|
||||||
m_AnchorMin: {x: 0, y: 0}
|
|
||||||
m_AnchorMax: {x: 0, y: 0}
|
|
||||||
m_AnchoredPosition: {x: 0, y: 0}
|
|
||||||
m_SizeDelta: {x: 0, y: 0}
|
|
||||||
m_Pivot: {x: 0.5, y: 0.5}
|
|
||||||
--- !u!224 &22450954
|
|
||||||
RectTransform:
|
|
||||||
m_ObjectHideFlags: 1
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 100100000}
|
|
||||||
m_GameObject: {fileID: 188050}
|
|
||||||
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
|
||||||
m_LocalPosition: {x: 0, y: 0, z: 0}
|
|
||||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
|
||||||
m_Children:
|
|
||||||
- {fileID: 22414422}
|
|
||||||
m_Father: {fileID: 0}
|
|
||||||
m_RootOrder: 0
|
|
||||||
m_AnchorMin: {x: 0.5, y: 0.5}
|
|
||||||
m_AnchorMax: {x: 0.5, y: 0.5}
|
|
||||||
m_AnchoredPosition: {x: 0, y: 0}
|
|
||||||
m_SizeDelta: {x: 0, y: 0}
|
|
||||||
m_Pivot: {x: 0.5, y: 0.5}
|
|
||||||
--- !u!225 &22524478
|
|
||||||
CanvasGroup:
|
|
||||||
m_ObjectHideFlags: 1
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 100100000}
|
|
||||||
m_GameObject: {fileID: 188050}
|
|
||||||
m_Enabled: 1
|
|
||||||
m_Alpha: 1
|
|
||||||
m_Interactable: 0
|
|
||||||
m_BlocksRaycasts: 0
|
|
||||||
m_IgnoreParentGroups: 0
|
|
||||||
--- !u!1001 &100100000
|
|
||||||
Prefab:
|
|
||||||
m_ObjectHideFlags: 1
|
|
||||||
serializedVersion: 2
|
|
||||||
m_Modification:
|
|
||||||
m_TransformParent: {fileID: 0}
|
|
||||||
m_Modifications: []
|
|
||||||
m_RemovedComponents: []
|
|
||||||
m_ParentPrefab: {fileID: 0}
|
|
||||||
m_RootGameObject: {fileID: 188050}
|
|
||||||
m_IsPrefabParent: 1
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
fileFormatVersion: 2
|
|
||||||
guid: b06f0e6c1dfa4356ac918da1bb32c603
|
|
||||||
timeCreated: 1435130987
|
|
||||||
licenseType: Store
|
|
||||||
NativeFormatImporter:
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
||||||
@@ -1,219 +0,0 @@
|
|||||||
%YAML 1.1
|
|
||||||
%TAG !u! tag:unity3d.com,2011:
|
|
||||||
--- !u!1 &100000
|
|
||||||
GameObject:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 100100000}
|
|
||||||
serializedVersion: 5
|
|
||||||
m_Component:
|
|
||||||
- component: {fileID: 22495902}
|
|
||||||
- component: {fileID: 3300000}
|
|
||||||
- component: {fileID: 2300000}
|
|
||||||
- component: {fileID: 11400000}
|
|
||||||
- component: {fileID: 22227760}
|
|
||||||
m_Layer: 0
|
|
||||||
m_Name: TextMeshPro - Prefab 1
|
|
||||||
m_TagString: Untagged
|
|
||||||
m_Icon: {fileID: 0}
|
|
||||||
m_NavMeshLayer: 0
|
|
||||||
m_StaticEditorFlags: 0
|
|
||||||
m_IsActive: 1
|
|
||||||
--- !u!23 &2300000
|
|
||||||
MeshRenderer:
|
|
||||||
m_ObjectHideFlags: 1
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 100100000}
|
|
||||||
m_GameObject: {fileID: 100000}
|
|
||||||
m_Enabled: 1
|
|
||||||
m_CastShadows: 0
|
|
||||||
m_ReceiveShadows: 0
|
|
||||||
m_DynamicOccludee: 1
|
|
||||||
m_MotionVectors: 1
|
|
||||||
m_LightProbeUsage: 1
|
|
||||||
m_ReflectionProbeUsage: 1
|
|
||||||
m_RenderingLayerMask: 4294967295
|
|
||||||
m_Materials:
|
|
||||||
- {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
|
|
||||||
m_StaticBatchInfo:
|
|
||||||
firstSubMesh: 0
|
|
||||||
subMeshCount: 0
|
|
||||||
m_StaticBatchRoot: {fileID: 0}
|
|
||||||
m_ProbeAnchor: {fileID: 0}
|
|
||||||
m_LightProbeVolumeOverride: {fileID: 0}
|
|
||||||
m_ScaleInLightmap: 1
|
|
||||||
m_PreserveUVs: 0
|
|
||||||
m_IgnoreNormalsForChartDetection: 0
|
|
||||||
m_ImportantGI: 0
|
|
||||||
m_StitchLightmapSeams: 0
|
|
||||||
m_SelectedEditorRenderState: 3
|
|
||||||
m_MinimumChartSize: 4
|
|
||||||
m_AutoUVMaxDistance: 0.5
|
|
||||||
m_AutoUVMaxAngle: 89
|
|
||||||
m_LightmapParameters: {fileID: 0}
|
|
||||||
m_SortingLayerID: 0
|
|
||||||
m_SortingLayer: 0
|
|
||||||
m_SortingOrder: 0
|
|
||||||
--- !u!33 &3300000
|
|
||||||
MeshFilter:
|
|
||||||
m_ObjectHideFlags: 1
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 100100000}
|
|
||||||
m_GameObject: {fileID: 100000}
|
|
||||||
m_Mesh: {fileID: 0}
|
|
||||||
--- !u!114 &11400000
|
|
||||||
MonoBehaviour:
|
|
||||||
m_ObjectHideFlags: 1
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 100100000}
|
|
||||||
m_GameObject: {fileID: 100000}
|
|
||||||
m_Enabled: 1
|
|
||||||
m_EditorHideFlags: 0
|
|
||||||
m_Script: {fileID: 11500000, guid: 9541d86e2fd84c1d9990edf0852d74ab, type: 3}
|
|
||||||
m_Name:
|
|
||||||
m_EditorClassIdentifier:
|
|
||||||
m_Material: {fileID: 0}
|
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 1}
|
|
||||||
m_RaycastTarget: 1
|
|
||||||
m_OnCullStateChanged:
|
|
||||||
m_PersistentCalls:
|
|
||||||
m_Calls: []
|
|
||||||
m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
|
|
||||||
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
|
|
||||||
m_text: Seems to be ok!
|
|
||||||
m_isRightToLeft: 0
|
|
||||||
m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
|
|
||||||
m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
|
|
||||||
m_fontSharedMaterials: []
|
|
||||||
m_fontMaterial: {fileID: 0}
|
|
||||||
m_fontMaterials: []
|
|
||||||
m_fontColor32:
|
|
||||||
serializedVersion: 2
|
|
||||||
rgba: 4294967295
|
|
||||||
m_fontColor: {r: 1, g: 1, b: 1, a: 1}
|
|
||||||
m_enableVertexGradient: 0
|
|
||||||
m_fontColorGradient:
|
|
||||||
topLeft: {r: 1, g: 1, b: 1, a: 1}
|
|
||||||
topRight: {r: 1, g: 1, b: 1, a: 1}
|
|
||||||
bottomLeft: {r: 1, g: 1, b: 1, a: 1}
|
|
||||||
bottomRight: {r: 1, g: 1, b: 1, a: 1}
|
|
||||||
m_fontColorGradientPreset: {fileID: 0}
|
|
||||||
m_spriteAsset: {fileID: 0}
|
|
||||||
m_tintAllSprites: 0
|
|
||||||
m_overrideHtmlColors: 0
|
|
||||||
m_faceColor:
|
|
||||||
serializedVersion: 2
|
|
||||||
rgba: 4294967295
|
|
||||||
m_outlineColor:
|
|
||||||
serializedVersion: 2
|
|
||||||
rgba: 4278190080
|
|
||||||
m_fontSize: 36
|
|
||||||
m_fontSizeBase: 36
|
|
||||||
m_fontWeight: 400
|
|
||||||
m_enableAutoSizing: 0
|
|
||||||
m_fontSizeMin: 18
|
|
||||||
m_fontSizeMax: 72
|
|
||||||
m_fontStyle: 0
|
|
||||||
m_textAlignment: 0
|
|
||||||
m_isAlignmentEnumConverted: 0
|
|
||||||
m_characterSpacing: 0
|
|
||||||
m_wordSpacing: 0
|
|
||||||
m_lineSpacing: 0
|
|
||||||
m_lineSpacingMax: 0
|
|
||||||
m_paragraphSpacing: 0
|
|
||||||
m_charWidthMaxAdj: 0
|
|
||||||
m_enableWordWrapping: 0
|
|
||||||
m_wordWrappingRatios: 0.4
|
|
||||||
m_overflowMode: 0
|
|
||||||
m_firstOverflowCharacterIndex: -1
|
|
||||||
m_linkedTextComponent: {fileID: 0}
|
|
||||||
m_isLinkedTextComponent: 0
|
|
||||||
m_isTextTruncated: 0
|
|
||||||
m_enableKerning: 0
|
|
||||||
m_enableExtraPadding: 0
|
|
||||||
checkPaddingRequired: 0
|
|
||||||
m_isRichText: 1
|
|
||||||
m_parseCtrlCharacters: 1
|
|
||||||
m_isOrthographic: 0
|
|
||||||
m_isCullingEnabled: 0
|
|
||||||
m_ignoreRectMaskCulling: 0
|
|
||||||
m_ignoreCulling: 1
|
|
||||||
m_horizontalMapping: 0
|
|
||||||
m_verticalMapping: 0
|
|
||||||
m_uvLineOffset: 0.3
|
|
||||||
m_geometrySortingOrder: 0
|
|
||||||
m_firstVisibleCharacter: 0
|
|
||||||
m_useMaxVisibleDescender: 1
|
|
||||||
m_pageToDisplay: 0
|
|
||||||
m_margin: {x: 0, y: 0, z: 0, w: 0}
|
|
||||||
m_textInfo:
|
|
||||||
textComponent: {fileID: 11400000}
|
|
||||||
characterCount: 15
|
|
||||||
spriteCount: 0
|
|
||||||
spaceCount: 3
|
|
||||||
wordCount: 4
|
|
||||||
linkCount: 0
|
|
||||||
lineCount: 1
|
|
||||||
pageCount: 1
|
|
||||||
materialCount: 1
|
|
||||||
m_havePropertiesChanged: 1
|
|
||||||
m_isUsingLegacyAnimationComponent: 0
|
|
||||||
m_isVolumetricText: 0
|
|
||||||
m_spriteAnimator: {fileID: 0}
|
|
||||||
m_isInputParsingRequired: 1
|
|
||||||
m_inputSource: 0
|
|
||||||
m_hasFontAssetChanged: 0
|
|
||||||
m_renderer: {fileID: 2300000}
|
|
||||||
m_subTextObjects:
|
|
||||||
- {fileID: 0}
|
|
||||||
- {fileID: 0}
|
|
||||||
- {fileID: 0}
|
|
||||||
- {fileID: 0}
|
|
||||||
- {fileID: 0}
|
|
||||||
- {fileID: 0}
|
|
||||||
- {fileID: 0}
|
|
||||||
- {fileID: 0}
|
|
||||||
- {fileID: 0}
|
|
||||||
- {fileID: 0}
|
|
||||||
- {fileID: 0}
|
|
||||||
- {fileID: 0}
|
|
||||||
- {fileID: 0}
|
|
||||||
- {fileID: 0}
|
|
||||||
- {fileID: 0}
|
|
||||||
- {fileID: 0}
|
|
||||||
m_maskType: 0
|
|
||||||
--- !u!222 &22227760
|
|
||||||
CanvasRenderer:
|
|
||||||
m_ObjectHideFlags: 1
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 100100000}
|
|
||||||
m_GameObject: {fileID: 100000}
|
|
||||||
--- !u!224 &22495902
|
|
||||||
RectTransform:
|
|
||||||
m_ObjectHideFlags: 1
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 100100000}
|
|
||||||
m_GameObject: {fileID: 100000}
|
|
||||||
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
|
||||||
m_LocalPosition: {x: 0, y: 0, z: 0}
|
|
||||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
|
||||||
m_Children: []
|
|
||||||
m_Father: {fileID: 0}
|
|
||||||
m_RootOrder: 0
|
|
||||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
|
||||||
m_AnchorMin: {x: 0.5, y: 0.5}
|
|
||||||
m_AnchorMax: {x: 0.5, y: 0.5}
|
|
||||||
m_AnchoredPosition: {x: 0, y: -4.87}
|
|
||||||
m_SizeDelta: {x: 28.005241, y: 4.035484}
|
|
||||||
m_Pivot: {x: 0.5, y: 0.5}
|
|
||||||
--- !u!1001 &100100000
|
|
||||||
Prefab:
|
|
||||||
m_ObjectHideFlags: 1
|
|
||||||
serializedVersion: 2
|
|
||||||
m_Modification:
|
|
||||||
m_TransformParent: {fileID: 0}
|
|
||||||
m_Modifications: []
|
|
||||||
m_RemovedComponents: []
|
|
||||||
m_ParentPrefab: {fileID: 0}
|
|
||||||
m_RootGameObject: {fileID: 100000}
|
|
||||||
m_IsPrefabParent: 1
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
fileFormatVersion: 2
|
|
||||||
guid: a6e39ced0ea046bcb636c3f0b2e2a745
|
|
||||||
NativeFormatImporter:
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
||||||
@@ -1,219 +0,0 @@
|
|||||||
%YAML 1.1
|
|
||||||
%TAG !u! tag:unity3d.com,2011:
|
|
||||||
--- !u!1 &100000
|
|
||||||
GameObject:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 100100000}
|
|
||||||
serializedVersion: 5
|
|
||||||
m_Component:
|
|
||||||
- component: {fileID: 22478072}
|
|
||||||
- component: {fileID: 3300000}
|
|
||||||
- component: {fileID: 2300000}
|
|
||||||
- component: {fileID: 11400000}
|
|
||||||
- component: {fileID: 22224556}
|
|
||||||
m_Layer: 0
|
|
||||||
m_Name: TextMeshPro - Prefab 2
|
|
||||||
m_TagString: Untagged
|
|
||||||
m_Icon: {fileID: 0}
|
|
||||||
m_NavMeshLayer: 0
|
|
||||||
m_StaticEditorFlags: 0
|
|
||||||
m_IsActive: 1
|
|
||||||
--- !u!23 &2300000
|
|
||||||
MeshRenderer:
|
|
||||||
m_ObjectHideFlags: 1
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 100100000}
|
|
||||||
m_GameObject: {fileID: 100000}
|
|
||||||
m_Enabled: 1
|
|
||||||
m_CastShadows: 0
|
|
||||||
m_ReceiveShadows: 0
|
|
||||||
m_DynamicOccludee: 1
|
|
||||||
m_MotionVectors: 1
|
|
||||||
m_LightProbeUsage: 1
|
|
||||||
m_ReflectionProbeUsage: 1
|
|
||||||
m_RenderingLayerMask: 4294967295
|
|
||||||
m_Materials:
|
|
||||||
- {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
|
|
||||||
m_StaticBatchInfo:
|
|
||||||
firstSubMesh: 0
|
|
||||||
subMeshCount: 0
|
|
||||||
m_StaticBatchRoot: {fileID: 0}
|
|
||||||
m_ProbeAnchor: {fileID: 0}
|
|
||||||
m_LightProbeVolumeOverride: {fileID: 0}
|
|
||||||
m_ScaleInLightmap: 1
|
|
||||||
m_PreserveUVs: 0
|
|
||||||
m_IgnoreNormalsForChartDetection: 0
|
|
||||||
m_ImportantGI: 0
|
|
||||||
m_StitchLightmapSeams: 0
|
|
||||||
m_SelectedEditorRenderState: 3
|
|
||||||
m_MinimumChartSize: 4
|
|
||||||
m_AutoUVMaxDistance: 0.5
|
|
||||||
m_AutoUVMaxAngle: 89
|
|
||||||
m_LightmapParameters: {fileID: 0}
|
|
||||||
m_SortingLayerID: 0
|
|
||||||
m_SortingLayer: 0
|
|
||||||
m_SortingOrder: 0
|
|
||||||
--- !u!33 &3300000
|
|
||||||
MeshFilter:
|
|
||||||
m_ObjectHideFlags: 1
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 100100000}
|
|
||||||
m_GameObject: {fileID: 100000}
|
|
||||||
m_Mesh: {fileID: 0}
|
|
||||||
--- !u!114 &11400000
|
|
||||||
MonoBehaviour:
|
|
||||||
m_ObjectHideFlags: 1
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 100100000}
|
|
||||||
m_GameObject: {fileID: 100000}
|
|
||||||
m_Enabled: 1
|
|
||||||
m_EditorHideFlags: 0
|
|
||||||
m_Script: {fileID: 11500000, guid: 9541d86e2fd84c1d9990edf0852d74ab, type: 3}
|
|
||||||
m_Name:
|
|
||||||
m_EditorClassIdentifier:
|
|
||||||
m_Material: {fileID: 0}
|
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 1}
|
|
||||||
m_RaycastTarget: 1
|
|
||||||
m_OnCullStateChanged:
|
|
||||||
m_PersistentCalls:
|
|
||||||
m_Calls: []
|
|
||||||
m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
|
|
||||||
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
|
|
||||||
m_text: Hello World!
|
|
||||||
m_isRightToLeft: 0
|
|
||||||
m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
|
|
||||||
m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
|
|
||||||
m_fontSharedMaterials: []
|
|
||||||
m_fontMaterial: {fileID: 0}
|
|
||||||
m_fontMaterials: []
|
|
||||||
m_fontColor32:
|
|
||||||
serializedVersion: 2
|
|
||||||
rgba: 4294967295
|
|
||||||
m_fontColor: {r: 1, g: 1, b: 1, a: 1}
|
|
||||||
m_enableVertexGradient: 0
|
|
||||||
m_fontColorGradient:
|
|
||||||
topLeft: {r: 1, g: 1, b: 1, a: 1}
|
|
||||||
topRight: {r: 1, g: 1, b: 1, a: 1}
|
|
||||||
bottomLeft: {r: 1, g: 1, b: 1, a: 1}
|
|
||||||
bottomRight: {r: 1, g: 1, b: 1, a: 1}
|
|
||||||
m_fontColorGradientPreset: {fileID: 0}
|
|
||||||
m_spriteAsset: {fileID: 0}
|
|
||||||
m_tintAllSprites: 0
|
|
||||||
m_overrideHtmlColors: 0
|
|
||||||
m_faceColor:
|
|
||||||
serializedVersion: 2
|
|
||||||
rgba: 4294967295
|
|
||||||
m_outlineColor:
|
|
||||||
serializedVersion: 2
|
|
||||||
rgba: 4278190080
|
|
||||||
m_fontSize: 36
|
|
||||||
m_fontSizeBase: 36
|
|
||||||
m_fontWeight: 400
|
|
||||||
m_enableAutoSizing: 0
|
|
||||||
m_fontSizeMin: 18
|
|
||||||
m_fontSizeMax: 72
|
|
||||||
m_fontStyle: 0
|
|
||||||
m_textAlignment: 0
|
|
||||||
m_isAlignmentEnumConverted: 0
|
|
||||||
m_characterSpacing: 0
|
|
||||||
m_wordSpacing: 0
|
|
||||||
m_lineSpacing: 0
|
|
||||||
m_lineSpacingMax: 0
|
|
||||||
m_paragraphSpacing: 0
|
|
||||||
m_charWidthMaxAdj: 0
|
|
||||||
m_enableWordWrapping: 0
|
|
||||||
m_wordWrappingRatios: 0.4
|
|
||||||
m_overflowMode: 0
|
|
||||||
m_firstOverflowCharacterIndex: -1
|
|
||||||
m_linkedTextComponent: {fileID: 0}
|
|
||||||
m_isLinkedTextComponent: 0
|
|
||||||
m_isTextTruncated: 0
|
|
||||||
m_enableKerning: 0
|
|
||||||
m_enableExtraPadding: 0
|
|
||||||
checkPaddingRequired: 0
|
|
||||||
m_isRichText: 1
|
|
||||||
m_parseCtrlCharacters: 1
|
|
||||||
m_isOrthographic: 0
|
|
||||||
m_isCullingEnabled: 0
|
|
||||||
m_ignoreRectMaskCulling: 0
|
|
||||||
m_ignoreCulling: 1
|
|
||||||
m_horizontalMapping: 0
|
|
||||||
m_verticalMapping: 0
|
|
||||||
m_uvLineOffset: 0.3
|
|
||||||
m_geometrySortingOrder: 0
|
|
||||||
m_firstVisibleCharacter: 0
|
|
||||||
m_useMaxVisibleDescender: 1
|
|
||||||
m_pageToDisplay: 0
|
|
||||||
m_margin: {x: 0, y: 0, z: 0, w: 0}
|
|
||||||
m_textInfo:
|
|
||||||
textComponent: {fileID: 11400000}
|
|
||||||
characterCount: 12
|
|
||||||
spriteCount: 0
|
|
||||||
spaceCount: 1
|
|
||||||
wordCount: 2
|
|
||||||
linkCount: 0
|
|
||||||
lineCount: 1
|
|
||||||
pageCount: 1
|
|
||||||
materialCount: 1
|
|
||||||
m_havePropertiesChanged: 1
|
|
||||||
m_isUsingLegacyAnimationComponent: 0
|
|
||||||
m_isVolumetricText: 0
|
|
||||||
m_spriteAnimator: {fileID: 0}
|
|
||||||
m_isInputParsingRequired: 1
|
|
||||||
m_inputSource: 0
|
|
||||||
m_hasFontAssetChanged: 0
|
|
||||||
m_renderer: {fileID: 2300000}
|
|
||||||
m_subTextObjects:
|
|
||||||
- {fileID: 0}
|
|
||||||
- {fileID: 0}
|
|
||||||
- {fileID: 0}
|
|
||||||
- {fileID: 0}
|
|
||||||
- {fileID: 0}
|
|
||||||
- {fileID: 0}
|
|
||||||
- {fileID: 0}
|
|
||||||
- {fileID: 0}
|
|
||||||
- {fileID: 0}
|
|
||||||
- {fileID: 0}
|
|
||||||
- {fileID: 0}
|
|
||||||
- {fileID: 0}
|
|
||||||
- {fileID: 0}
|
|
||||||
- {fileID: 0}
|
|
||||||
- {fileID: 0}
|
|
||||||
- {fileID: 0}
|
|
||||||
m_maskType: 0
|
|
||||||
--- !u!222 &22224556
|
|
||||||
CanvasRenderer:
|
|
||||||
m_ObjectHideFlags: 1
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 100100000}
|
|
||||||
m_GameObject: {fileID: 100000}
|
|
||||||
--- !u!224 &22478072
|
|
||||||
RectTransform:
|
|
||||||
m_ObjectHideFlags: 1
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 100100000}
|
|
||||||
m_GameObject: {fileID: 100000}
|
|
||||||
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
|
||||||
m_LocalPosition: {x: 0, y: 0, z: 0}
|
|
||||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
|
||||||
m_Children: []
|
|
||||||
m_Father: {fileID: 0}
|
|
||||||
m_RootOrder: 0
|
|
||||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
|
||||||
m_AnchorMin: {x: 0.5, y: 0.5}
|
|
||||||
m_AnchorMax: {x: 0.5, y: 0.5}
|
|
||||||
m_AnchoredPosition: {x: 0, y: 4.48}
|
|
||||||
m_SizeDelta: {x: 19.604034, y: 4.035484}
|
|
||||||
m_Pivot: {x: 0.5, y: 0.5}
|
|
||||||
--- !u!1001 &100100000
|
|
||||||
Prefab:
|
|
||||||
m_ObjectHideFlags: 1
|
|
||||||
serializedVersion: 2
|
|
||||||
m_Modification:
|
|
||||||
m_TransformParent: {fileID: 0}
|
|
||||||
m_Modifications: []
|
|
||||||
m_RemovedComponents: []
|
|
||||||
m_ParentPrefab: {fileID: 0}
|
|
||||||
m_RootGameObject: {fileID: 100000}
|
|
||||||
m_IsPrefabParent: 1
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
fileFormatVersion: 2
|
|
||||||
guid: fdad9d952ae84cafb74c63f2e694d042
|
|
||||||
NativeFormatImporter:
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
fileFormatVersion: 2
|
|
||||||
guid: d6d3a169ad794942a21da6a552d62f6f
|
|
||||||
folderAsset: yes
|
|
||||||
timeCreated: 1436068007
|
|
||||||
licenseType: Pro
|
|
||||||
DefaultImporter:
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
fileFormatVersion: 2
|
|
||||||
guid: 7f422cd1388b01047a58cd07c7a23d9d
|
|
||||||
folderAsset: yes
|
|
||||||
DefaultImporter:
|
|
||||||
externalObjects: {}
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
%YAML 1.1
|
|
||||||
%TAG !u! tag:unity3d.com,2011:
|
|
||||||
--- !u!114 &11400000
|
|
||||||
MonoBehaviour:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 0}
|
|
||||||
m_Enabled: 1
|
|
||||||
m_EditorHideFlags: 0
|
|
||||||
m_Script: {fileID: 11500000, guid: 54d21f6ece3b46479f0c328f8c6007e0, type: 3}
|
|
||||||
m_Name: Blue to Purple - Vertical
|
|
||||||
m_EditorClassIdentifier:
|
|
||||||
topLeft: {r: 0, g: 0.83448267, b: 1, a: 1}
|
|
||||||
topRight: {r: 0.1544118, g: 0.5801215, b: 1, a: 1}
|
|
||||||
bottomLeft: {r: 0.49168324, g: 0, b: 0.7058823, a: 1}
|
|
||||||
bottomRight: {r: 0.4901961, g: 0, b: 0.7019608, a: 1}
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
fileFormatVersion: 2
|
|
||||||
guid: 479a66fa4b094512a62b0a8e553ad95a
|
|
||||||
timeCreated: 1468189245
|
|
||||||
licenseType: Pro
|
|
||||||
NativeFormatImporter:
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
%YAML 1.1
|
|
||||||
%TAG !u! tag:unity3d.com,2011:
|
|
||||||
--- !u!114 &11400000
|
|
||||||
MonoBehaviour:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 0}
|
|
||||||
m_Enabled: 1
|
|
||||||
m_EditorHideFlags: 0
|
|
||||||
m_Script: {fileID: 11500000, guid: 54d21f6ece3b46479f0c328f8c6007e0, type: 3}
|
|
||||||
m_Name: Dark to Light Green - Vertical
|
|
||||||
m_EditorClassIdentifier:
|
|
||||||
topLeft: {r: 0, g: .661764741, b: 0, a: 1}
|
|
||||||
topRight: {r: 0, g: .573529422, b: .00224910071, a: 1}
|
|
||||||
bottomLeft: {r: .525490224, g: 1, b: .490196109, a: 1}
|
|
||||||
bottomRight: {r: .421999991, g: .992156923, b: .374000013, a: 1}
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
fileFormatVersion: 2
|
|
||||||
guid: 4c86a3366cd840348ebe8dc438570ee4
|
|
||||||
timeCreated: 1468443381
|
|
||||||
licenseType: Pro
|
|
||||||
NativeFormatImporter:
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
%YAML 1.1
|
|
||||||
%TAG !u! tag:unity3d.com,2011:
|
|
||||||
--- !u!114 &11400000
|
|
||||||
MonoBehaviour:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 0}
|
|
||||||
m_Enabled: 1
|
|
||||||
m_EditorHideFlags: 0
|
|
||||||
m_Script: {fileID: 11500000, guid: 54d21f6ece3b46479f0c328f8c6007e0, type: 3}
|
|
||||||
m_Name: Light to Dark Green - Vertical
|
|
||||||
m_EditorClassIdentifier:
|
|
||||||
topLeft: {r: 0.5147059, g: 1, b: 0.5147059, a: 1}
|
|
||||||
topRight: {r: 0.5137255, g: 1, b: 0.5137255, a: 1}
|
|
||||||
bottomLeft: {r: 0, g: 0.46323532, b: 0, a: 1}
|
|
||||||
bottomRight: {r: 0, g: 0.46274513, b: 0, a: 1}
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
fileFormatVersion: 2
|
|
||||||
guid: 5cf8ae092ca54931b443bec5148f3c59
|
|
||||||
timeCreated: 1468443381
|
|
||||||
licenseType: Pro
|
|
||||||
NativeFormatImporter:
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
%YAML 1.1
|
|
||||||
%TAG !u! tag:unity3d.com,2011:
|
|
||||||
--- !u!114 &11400000
|
|
||||||
MonoBehaviour:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_PrefabParentObject: {fileID: 0}
|
|
||||||
m_PrefabInternal: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 0}
|
|
||||||
m_Enabled: 1
|
|
||||||
m_EditorHideFlags: 0
|
|
||||||
m_Script: {fileID: 11500000, guid: 54d21f6ece3b46479f0c328f8c6007e0, type: 3}
|
|
||||||
m_Name: Yellow to Orange - Vertical
|
|
||||||
m_EditorClassIdentifier:
|
|
||||||
topLeft: {r: 1, g: 1, b: 0.5661765, a: 1}
|
|
||||||
topRight: {r: 1, g: 1, b: 0.252, a: 1}
|
|
||||||
bottomLeft: {r: 1, g: 0, b: 0, a: 1}
|
|
||||||
bottomRight: {r: 1, g: 0, b: 0, a: 1}
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
fileFormatVersion: 2
|
|
||||||
guid: 69a525efa7e6472eab268f6ea605f06e
|
|
||||||
timeCreated: 1468213165
|
|
||||||
licenseType: Pro
|
|
||||||
NativeFormatImporter:
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
fileFormatVersion: 2
|
|
||||||
guid: 4f1e85c79acf49968737939ce8b445c7
|
|
||||||
folderAsset: yes
|
|
||||||
timeCreated: 1436068007
|
|
||||||
licenseType: Pro
|
|
||||||
DefaultImporter:
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
||||||
@@ -1,104 +0,0 @@
|
|||||||
%YAML 1.1
|
|
||||||
%TAG !u! tag:unity3d.com,2011:
|
|
||||||
--- !u!21 &2100000
|
|
||||||
Material:
|
|
||||||
serializedVersion: 6
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
m_Name: Anton SDF - Drop Shadow
|
|
||||||
m_Shader: {fileID: 4800000, guid: fe393ace9b354375a9cb14cdbbc28be4, type: 3}
|
|
||||||
m_ShaderKeywords: OUTLINE_ON UNDERLAY_ON
|
|
||||||
m_LightmapFlags: 5
|
|
||||||
m_EnableInstancingVariants: 0
|
|
||||||
m_DoubleSidedGI: 0
|
|
||||||
m_CustomRenderQueue: -1
|
|
||||||
stringTagMap: {}
|
|
||||||
disabledShaderPasses: []
|
|
||||||
m_SavedProperties:
|
|
||||||
serializedVersion: 3
|
|
||||||
m_TexEnvs:
|
|
||||||
- _BumpMap:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _Cube:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _FaceTex:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _MainTex:
|
|
||||||
m_Texture: {fileID: 28933816116536082, guid: 8a89fa14b10d46a99122fd4f73fca9a2,
|
|
||||||
type: 2}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _OutlineTex:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
m_Floats:
|
|
||||||
- _Ambient: 0.5
|
|
||||||
- _Bevel: 0.5
|
|
||||||
- _BevelClamp: 0
|
|
||||||
- _BevelOffset: 0
|
|
||||||
- _BevelRoundness: 0
|
|
||||||
- _BevelWidth: 0
|
|
||||||
- _BumpFace: 0
|
|
||||||
- _BumpOutline: 0
|
|
||||||
- _ColorMask: 15
|
|
||||||
- _Diffuse: 0.5
|
|
||||||
- _FaceDilate: 0.1
|
|
||||||
- _FaceUVSpeedX: 0
|
|
||||||
- _FaceUVSpeedY: 0
|
|
||||||
- _GlowInner: 0.05
|
|
||||||
- _GlowOffset: 0
|
|
||||||
- _GlowOuter: 0.05
|
|
||||||
- _GlowPower: 0.75
|
|
||||||
- _GradientScale: 10
|
|
||||||
- _LightAngle: 3.1416
|
|
||||||
- _MaskSoftnessX: 0
|
|
||||||
- _MaskSoftnessY: 0
|
|
||||||
- _OutlineSoftness: 0
|
|
||||||
- _OutlineUVSpeedX: 0
|
|
||||||
- _OutlineUVSpeedY: 0
|
|
||||||
- _OutlineWidth: 0.1
|
|
||||||
- _PerspectiveFilter: 0.875
|
|
||||||
- _Reflectivity: 10
|
|
||||||
- _ScaleRatioA: 0.9
|
|
||||||
- _ScaleRatioB: 0.6770833
|
|
||||||
- _ScaleRatioC: 0.64125
|
|
||||||
- _ScaleX: 1
|
|
||||||
- _ScaleY: 1
|
|
||||||
- _ShaderFlags: 0
|
|
||||||
- _Sharpness: 0
|
|
||||||
- _SpecularPower: 2
|
|
||||||
- _Stencil: 0
|
|
||||||
- _StencilComp: 8
|
|
||||||
- _StencilOp: 0
|
|
||||||
- _StencilReadMask: 255
|
|
||||||
- _StencilWriteMask: 255
|
|
||||||
- _TextureHeight: 1024
|
|
||||||
- _TextureWidth: 1024
|
|
||||||
- _UnderlayDilate: 0
|
|
||||||
- _UnderlayOffsetX: 0.5
|
|
||||||
- _UnderlayOffsetY: -0.5
|
|
||||||
- _UnderlaySoftness: 0.05
|
|
||||||
- _VertexOffsetX: 0
|
|
||||||
- _VertexOffsetY: 0
|
|
||||||
- _WeightBold: 0.75
|
|
||||||
- _WeightNormal: 0
|
|
||||||
m_Colors:
|
|
||||||
- _ClipRect: {r: -32767, g: -32767, b: 32767, a: 32767}
|
|
||||||
- _EnvMatrixRotation: {r: 0, g: 0, b: 0, a: 0}
|
|
||||||
- _FaceColor: {r: 1, g: 1, b: 1, a: 1}
|
|
||||||
- _GlowColor: {r: 0, g: 1, b: 0, a: 0.5}
|
|
||||||
- _MaskCoord: {r: 0, g: 0, b: 32767, a: 32767}
|
|
||||||
- _OutlineColor: {r: 0, g: 0, b: 0, a: 1}
|
|
||||||
- _ReflectFaceColor: {r: 0, g: 0, b: 0, a: 1}
|
|
||||||
- _ReflectOutlineColor: {r: 0, g: 0, b: 0, a: 1}
|
|
||||||
- _SpecularColor: {r: 1, g: 1, b: 1, a: 1}
|
|
||||||
- _UnderlayColor: {r: 0, g: 0, b: 0, a: 0.5}
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
fileFormatVersion: 2
|
|
||||||
guid: 749b9069dc4742c5bfa5c74644049926
|
|
||||||
timeCreated: 1484173523
|
|
||||||
licenseType: Pro
|
|
||||||
NativeFormatImporter:
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
||||||
@@ -1,104 +0,0 @@
|
|||||||
%YAML 1.1
|
|
||||||
%TAG !u! tag:unity3d.com,2011:
|
|
||||||
--- !u!21 &2100000
|
|
||||||
Material:
|
|
||||||
serializedVersion: 6
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
m_Name: Anton SDF - Outline
|
|
||||||
m_Shader: {fileID: 4800000, guid: fe393ace9b354375a9cb14cdbbc28be4, type: 3}
|
|
||||||
m_ShaderKeywords: OUTLINE_ON
|
|
||||||
m_LightmapFlags: 5
|
|
||||||
m_EnableInstancingVariants: 0
|
|
||||||
m_DoubleSidedGI: 0
|
|
||||||
m_CustomRenderQueue: -1
|
|
||||||
stringTagMap: {}
|
|
||||||
disabledShaderPasses: []
|
|
||||||
m_SavedProperties:
|
|
||||||
serializedVersion: 3
|
|
||||||
m_TexEnvs:
|
|
||||||
- _BumpMap:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _Cube:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _FaceTex:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _MainTex:
|
|
||||||
m_Texture: {fileID: 28933816116536082, guid: 8a89fa14b10d46a99122fd4f73fca9a2,
|
|
||||||
type: 2}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _OutlineTex:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
m_Floats:
|
|
||||||
- _Ambient: 0.5
|
|
||||||
- _Bevel: 0.5
|
|
||||||
- _BevelClamp: 0
|
|
||||||
- _BevelOffset: 0
|
|
||||||
- _BevelRoundness: 0
|
|
||||||
- _BevelWidth: 0
|
|
||||||
- _BumpFace: 0
|
|
||||||
- _BumpOutline: 0
|
|
||||||
- _ColorMask: 15
|
|
||||||
- _Diffuse: 0.5
|
|
||||||
- _FaceDilate: 0.1
|
|
||||||
- _FaceUVSpeedX: 0
|
|
||||||
- _FaceUVSpeedY: 0
|
|
||||||
- _GlowInner: 0.05
|
|
||||||
- _GlowOffset: 0
|
|
||||||
- _GlowOuter: 0.05
|
|
||||||
- _GlowPower: 0.75
|
|
||||||
- _GradientScale: 10
|
|
||||||
- _LightAngle: 3.1416
|
|
||||||
- _MaskSoftnessX: 0
|
|
||||||
- _MaskSoftnessY: 0
|
|
||||||
- _OutlineSoftness: 0
|
|
||||||
- _OutlineUVSpeedX: 0
|
|
||||||
- _OutlineUVSpeedY: 0
|
|
||||||
- _OutlineWidth: 0.1
|
|
||||||
- _PerspectiveFilter: 0.875
|
|
||||||
- _Reflectivity: 10
|
|
||||||
- _ScaleRatioA: 0.8333333
|
|
||||||
- _ScaleRatioB: 0.6770833
|
|
||||||
- _ScaleRatioC: 0.59375
|
|
||||||
- _ScaleX: 1
|
|
||||||
- _ScaleY: 1
|
|
||||||
- _ShaderFlags: 0
|
|
||||||
- _Sharpness: 0
|
|
||||||
- _SpecularPower: 2
|
|
||||||
- _Stencil: 0
|
|
||||||
- _StencilComp: 8
|
|
||||||
- _StencilOp: 0
|
|
||||||
- _StencilReadMask: 255
|
|
||||||
- _StencilWriteMask: 255
|
|
||||||
- _TextureHeight: 1024
|
|
||||||
- _TextureWidth: 1024
|
|
||||||
- _UnderlayDilate: 0
|
|
||||||
- _UnderlayOffsetX: 0
|
|
||||||
- _UnderlayOffsetY: 0
|
|
||||||
- _UnderlaySoftness: 0
|
|
||||||
- _VertexOffsetX: 0
|
|
||||||
- _VertexOffsetY: 0
|
|
||||||
- _WeightBold: 0.75
|
|
||||||
- _WeightNormal: 0
|
|
||||||
m_Colors:
|
|
||||||
- _ClipRect: {r: -32767, g: -32767, b: 32767, a: 32767}
|
|
||||||
- _EnvMatrixRotation: {r: 0, g: 0, b: 0, a: 0}
|
|
||||||
- _FaceColor: {r: 1, g: 1, b: 1, a: 1}
|
|
||||||
- _GlowColor: {r: 0, g: 1, b: 0, a: 0.5}
|
|
||||||
- _MaskCoord: {r: 0, g: 0, b: 32767, a: 32767}
|
|
||||||
- _OutlineColor: {r: 0, g: 0, b: 0, a: 1}
|
|
||||||
- _ReflectFaceColor: {r: 0, g: 0, b: 0, a: 1}
|
|
||||||
- _ReflectOutlineColor: {r: 0, g: 0, b: 0, a: 1}
|
|
||||||
- _SpecularColor: {r: 1, g: 1, b: 1, a: 1}
|
|
||||||
- _UnderlayColor: {r: 0, g: 0, b: 0, a: 0.5}
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
fileFormatVersion: 2
|
|
||||||
guid: a00013af81304728b2be1f4309ee2433
|
|
||||||
timeCreated: 1484173536
|
|
||||||
licenseType: Pro
|
|
||||||
NativeFormatImporter:
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
||||||
@@ -1,104 +0,0 @@
|
|||||||
%YAML 1.1
|
|
||||||
%TAG !u! tag:unity3d.com,2011:
|
|
||||||
--- !u!21 &2100000
|
|
||||||
Material:
|
|
||||||
serializedVersion: 6
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
m_Name: Anton SDF - Sunny Days
|
|
||||||
m_Shader: {fileID: 4800000, guid: 68e6db2ebdc24f95958faec2be5558d6, type: 3}
|
|
||||||
m_ShaderKeywords: BEVEL_ON UNDERLAY_ON
|
|
||||||
m_LightmapFlags: 5
|
|
||||||
m_EnableInstancingVariants: 0
|
|
||||||
m_DoubleSidedGI: 0
|
|
||||||
m_CustomRenderQueue: -1
|
|
||||||
stringTagMap: {}
|
|
||||||
disabledShaderPasses: []
|
|
||||||
m_SavedProperties:
|
|
||||||
serializedVersion: 3
|
|
||||||
m_TexEnvs:
|
|
||||||
- _BumpMap:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _Cube:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _FaceTex:
|
|
||||||
m_Texture: {fileID: 2800000, guid: 17c350171f7a3ca479f830547c66d187, type: 3}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: -0.15}
|
|
||||||
- _MainTex:
|
|
||||||
m_Texture: {fileID: 28933816116536082, guid: 8a89fa14b10d46a99122fd4f73fca9a2,
|
|
||||||
type: 2}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _OutlineTex:
|
|
||||||
m_Texture: {fileID: 2800000, guid: 1cdc5b506b1a4a33a53c30669ced1f51, type: 3}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
m_Floats:
|
|
||||||
- _Ambient: 0.5
|
|
||||||
- _Bevel: 0.25
|
|
||||||
- _BevelClamp: 0.345
|
|
||||||
- _BevelOffset: 0
|
|
||||||
- _BevelRoundness: 0
|
|
||||||
- _BevelWidth: 0
|
|
||||||
- _BumpFace: 0
|
|
||||||
- _BumpOutline: 0
|
|
||||||
- _ColorMask: 15
|
|
||||||
- _Diffuse: 0.5
|
|
||||||
- _FaceDilate: 0
|
|
||||||
- _FaceUVSpeedX: 0.1
|
|
||||||
- _FaceUVSpeedY: 0
|
|
||||||
- _GlowInner: 0.05
|
|
||||||
- _GlowOffset: 0
|
|
||||||
- _GlowOuter: 0.05
|
|
||||||
- _GlowPower: 0.75
|
|
||||||
- _GradientScale: 10
|
|
||||||
- _LightAngle: 3.1416
|
|
||||||
- _MaskSoftnessX: 0
|
|
||||||
- _MaskSoftnessY: 0
|
|
||||||
- _OutlineSoftness: 0
|
|
||||||
- _OutlineUVSpeedX: 0
|
|
||||||
- _OutlineUVSpeedY: 0
|
|
||||||
- _OutlineWidth: 0.15
|
|
||||||
- _PerspectiveFilter: 0.875
|
|
||||||
- _Reflectivity: 10
|
|
||||||
- _ScaleRatioA: 0.9
|
|
||||||
- _ScaleRatioB: 0.7875
|
|
||||||
- _ScaleRatioC: 0.7875
|
|
||||||
- _ScaleX: 1
|
|
||||||
- _ScaleY: 1
|
|
||||||
- _ShaderFlags: 1
|
|
||||||
- _Sharpness: 0
|
|
||||||
- _SpecularPower: 2
|
|
||||||
- _Stencil: 0
|
|
||||||
- _StencilComp: 8
|
|
||||||
- _StencilOp: 0
|
|
||||||
- _StencilReadMask: 255
|
|
||||||
- _StencilWriteMask: 255
|
|
||||||
- _TextureHeight: 1024
|
|
||||||
- _TextureWidth: 1024
|
|
||||||
- _UnderlayDilate: 0
|
|
||||||
- _UnderlayOffsetX: 0.75
|
|
||||||
- _UnderlayOffsetY: -0.75
|
|
||||||
- _UnderlaySoftness: 0.1
|
|
||||||
- _VertexOffsetX: 0
|
|
||||||
- _VertexOffsetY: 0
|
|
||||||
- _WeightBold: 0.5
|
|
||||||
- _WeightNormal: 0
|
|
||||||
m_Colors:
|
|
||||||
- _ClipRect: {r: -32767, g: -32767, b: 32767, a: 32767}
|
|
||||||
- _EnvMatrixRotation: {r: 0, g: 0, b: 0, a: 0}
|
|
||||||
- _FaceColor: {r: 1, g: 1, b: 1, a: 1}
|
|
||||||
- _GlowColor: {r: 0, g: 1, b: 0, a: 0.5}
|
|
||||||
- _MaskCoord: {r: 0, g: 0, b: 32767, a: 32767}
|
|
||||||
- _OutlineColor: {r: 0.5882353, g: 0.5882353, b: 0.5882353, a: 1}
|
|
||||||
- _ReflectFaceColor: {r: 0, g: 0, b: 0, a: 1}
|
|
||||||
- _ReflectOutlineColor: {r: 0, g: 0, b: 0, a: 1}
|
|
||||||
- _SpecularColor: {r: 0.9921569, g: 0.90196085, b: 0.40000004, a: 1}
|
|
||||||
- _UnderlayColor: {r: 0, g: 0, b: 0, a: 0.5}
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
fileFormatVersion: 2
|
|
||||||
guid: 6522f30e342599e4e9dd4cc2cc03c830
|
|
||||||
NativeFormatImporter:
|
|
||||||
externalObjects: {}
|
|
||||||
mainObjectFileID: 2100000
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
||||||
@@ -1,302 +0,0 @@
|
|||||||
%YAML 1.1
|
|
||||||
%TAG !u! tag:unity3d.com,2011:
|
|
||||||
--- !u!21 &2140474
|
|
||||||
Material:
|
|
||||||
serializedVersion: 6
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
m_Name: Anton SDF Material
|
|
||||||
m_Shader: {fileID: 4800000, guid: fe393ace9b354375a9cb14cdbbc28be4, type: 3}
|
|
||||||
m_ShaderKeywords:
|
|
||||||
m_LightmapFlags: 5
|
|
||||||
m_EnableInstancingVariants: 0
|
|
||||||
m_DoubleSidedGI: 0
|
|
||||||
m_CustomRenderQueue: -1
|
|
||||||
stringTagMap: {}
|
|
||||||
disabledShaderPasses: []
|
|
||||||
m_SavedProperties:
|
|
||||||
serializedVersion: 3
|
|
||||||
m_TexEnvs:
|
|
||||||
- _BumpMap:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _Cube:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _FaceTex:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _MainTex:
|
|
||||||
m_Texture: {fileID: 28933816116536082}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _OutlineTex:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
m_Floats:
|
|
||||||
- _Ambient: 0.5
|
|
||||||
- _Bevel: 0.5
|
|
||||||
- _BevelClamp: 0
|
|
||||||
- _BevelOffset: 0
|
|
||||||
- _BevelRoundness: 0
|
|
||||||
- _BevelWidth: 0
|
|
||||||
- _BumpFace: 0
|
|
||||||
- _BumpOutline: 0
|
|
||||||
- _ColorMask: 15
|
|
||||||
- _CullMode: 0
|
|
||||||
- _Diffuse: 0.5
|
|
||||||
- _FaceDilate: 0
|
|
||||||
- _FaceUVSpeedX: 0
|
|
||||||
- _FaceUVSpeedY: 0
|
|
||||||
- _GlowInner: 0.05
|
|
||||||
- _GlowOffset: 0
|
|
||||||
- _GlowOuter: 0.05
|
|
||||||
- _GlowPower: 0.75
|
|
||||||
- _GradientScale: 10
|
|
||||||
- _LightAngle: 3.1416
|
|
||||||
- _MaskSoftnessX: 0
|
|
||||||
- _MaskSoftnessY: 0
|
|
||||||
- _OutlineSoftness: 0
|
|
||||||
- _OutlineUVSpeedX: 0
|
|
||||||
- _OutlineUVSpeedY: 0
|
|
||||||
- _OutlineWidth: 0
|
|
||||||
- _PerspectiveFilter: 0.875
|
|
||||||
- _Reflectivity: 10
|
|
||||||
- _ScaleRatioA: 0.9
|
|
||||||
- _ScaleRatioB: 0.6770833
|
|
||||||
- _ScaleRatioC: 0.73125
|
|
||||||
- _ScaleX: 1
|
|
||||||
- _ScaleY: 1
|
|
||||||
- _ShaderFlags: 0
|
|
||||||
- _Sharpness: 0
|
|
||||||
- _SpecularPower: 2
|
|
||||||
- _Stencil: 0
|
|
||||||
- _StencilComp: 8
|
|
||||||
- _StencilOp: 0
|
|
||||||
- _StencilReadMask: 255
|
|
||||||
- _StencilWriteMask: 255
|
|
||||||
- _TextureHeight: 1024
|
|
||||||
- _TextureWidth: 1024
|
|
||||||
- _UnderlayDilate: 0
|
|
||||||
- _UnderlayOffsetX: 0
|
|
||||||
- _UnderlayOffsetY: 0
|
|
||||||
- _UnderlaySoftness: 0
|
|
||||||
- _VertexOffsetX: 0
|
|
||||||
- _VertexOffsetY: 0
|
|
||||||
- _WeightBold: 0.75
|
|
||||||
- _WeightNormal: 0
|
|
||||||
m_Colors:
|
|
||||||
- _ClipRect: {r: -32767, g: -32767, b: 32767, a: 32767}
|
|
||||||
- _EnvMatrixRotation: {r: 0, g: 0, b: 0, a: 0}
|
|
||||||
- _FaceColor: {r: 1, g: 1, b: 1, a: 1}
|
|
||||||
- _GlowColor: {r: 0, g: 1, b: 0, a: 0.5}
|
|
||||||
- _MaskCoord: {r: 0, g: 0, b: 32767, a: 32767}
|
|
||||||
- _OutlineColor: {r: 0, g: 0, b: 0, a: 1}
|
|
||||||
- _ReflectFaceColor: {r: 0, g: 0, b: 0, a: 1}
|
|
||||||
- _ReflectOutlineColor: {r: 0, g: 0, b: 0, a: 1}
|
|
||||||
- _SpecularColor: {r: 1, g: 1, b: 1, a: 1}
|
|
||||||
- _UnderlayColor: {r: 0, g: 0, b: 0, a: 0.5}
|
|
||||||
--- !u!114 &11400000
|
|
||||||
MonoBehaviour:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 0}
|
|
||||||
m_Enabled: 1
|
|
||||||
m_EditorHideFlags: 0
|
|
||||||
m_Script: {fileID: 11500000, guid: 71c1514a6bd24e1e882cebbe1904ce04, type: 3}
|
|
||||||
m_Name: Anton SDF
|
|
||||||
m_EditorClassIdentifier:
|
|
||||||
m_Version: 1.1.0
|
|
||||||
m_Material: {fileID: 2140474}
|
|
||||||
m_SourceFontFileGUID: 997a43b767814dd0a7642ec9b78cba41
|
|
||||||
m_SourceFontFile: {fileID: 12800000, guid: 997a43b767814dd0a7642ec9b78cba41, type: 3}
|
|
||||||
m_AtlasPopulationMode: 1
|
|
||||||
InternalDynamicOS: 0
|
|
||||||
m_FaceInfo:
|
|
||||||
m_FaceIndex: 0
|
|
||||||
m_FamilyName: Anton
|
|
||||||
m_StyleName: Regular
|
|
||||||
m_PointSize: 90
|
|
||||||
m_Scale: 1
|
|
||||||
m_UnitsPerEM: 2048
|
|
||||||
m_LineHeight: 132.05566
|
|
||||||
m_AscentLine: 102.43652
|
|
||||||
m_CapLine: 70
|
|
||||||
m_MeanLine: 66
|
|
||||||
m_Baseline: 0
|
|
||||||
m_DescentLine: -29.61914
|
|
||||||
m_SuperscriptOffset: 102.43652
|
|
||||||
m_SuperscriptSize: 0.5
|
|
||||||
m_SubscriptOffset: -29.61914
|
|
||||||
m_SubscriptSize: 0.5
|
|
||||||
m_UnderlineOffset: -13.491211
|
|
||||||
m_UnderlineThickness: 4.482422
|
|
||||||
m_StrikethroughOffset: 26.4
|
|
||||||
m_StrikethroughThickness: 4.482422
|
|
||||||
m_TabWidth: 21
|
|
||||||
m_GlyphTable: []
|
|
||||||
m_CharacterTable: []
|
|
||||||
m_AtlasTextures:
|
|
||||||
- {fileID: 28933816116536082}
|
|
||||||
m_AtlasTextureIndex: 0
|
|
||||||
m_IsMultiAtlasTexturesEnabled: 0
|
|
||||||
m_ClearDynamicDataOnBuild: 1
|
|
||||||
m_UsedGlyphRects: []
|
|
||||||
m_FreeGlyphRects:
|
|
||||||
- m_X: 0
|
|
||||||
m_Y: 0
|
|
||||||
m_Width: 1023
|
|
||||||
m_Height: 1023
|
|
||||||
m_fontInfo:
|
|
||||||
Name: Anton
|
|
||||||
PointSize: 73
|
|
||||||
Scale: 1
|
|
||||||
CharacterCount: 97
|
|
||||||
LineHeight: 107.125
|
|
||||||
Baseline: 0
|
|
||||||
Ascender: 83.09375
|
|
||||||
CapHeight: 56.8125
|
|
||||||
Descender: -24.03125
|
|
||||||
CenterLine: 0
|
|
||||||
SuperscriptOffset: 83.09375
|
|
||||||
SubscriptOffset: -10.942871
|
|
||||||
SubSize: 0.5
|
|
||||||
Underline: -10.942871
|
|
||||||
UnderlineThickness: 3.6357422
|
|
||||||
strikethrough: 22.725
|
|
||||||
strikethroughThickness: 0
|
|
||||||
TabWidth: 171.25
|
|
||||||
Padding: 5
|
|
||||||
AtlasWidth: 512
|
|
||||||
AtlasHeight: 512
|
|
||||||
atlas: {fileID: 0}
|
|
||||||
m_AtlasWidth: 1024
|
|
||||||
m_AtlasHeight: 1024
|
|
||||||
m_AtlasPadding: 9
|
|
||||||
m_AtlasRenderMode: 4165
|
|
||||||
m_glyphInfoList: []
|
|
||||||
m_KerningTable:
|
|
||||||
kerningPairs: []
|
|
||||||
m_FontFeatureTable:
|
|
||||||
m_MultipleSubstitutionRecords: []
|
|
||||||
m_LigatureSubstitutionRecords: []
|
|
||||||
m_GlyphPairAdjustmentRecords: []
|
|
||||||
m_MarkToBaseAdjustmentRecords: []
|
|
||||||
m_MarkToMarkAdjustmentRecords: []
|
|
||||||
fallbackFontAssets: []
|
|
||||||
m_FallbackFontAssetTable: []
|
|
||||||
m_CreationSettings:
|
|
||||||
sourceFontFileName:
|
|
||||||
sourceFontFileGUID: 997a43b767814dd0a7642ec9b78cba41
|
|
||||||
faceIndex: 0
|
|
||||||
pointSizeSamplingMode: 1
|
|
||||||
pointSize: 90
|
|
||||||
padding: 9
|
|
||||||
paddingMode: 0
|
|
||||||
packingMode: 4
|
|
||||||
atlasWidth: 1024
|
|
||||||
atlasHeight: 1024
|
|
||||||
characterSetSelectionMode: 6
|
|
||||||
characterSequence:
|
|
||||||
referencedFontAssetGUID: 8a89fa14b10d46a99122fd4f73fca9a2
|
|
||||||
referencedTextAssetGUID:
|
|
||||||
fontStyle: 0
|
|
||||||
fontStyleModifier: 0
|
|
||||||
renderMode: 4165
|
|
||||||
includeFontFeatures: 0
|
|
||||||
m_FontWeightTable:
|
|
||||||
- regularTypeface: {fileID: 0}
|
|
||||||
italicTypeface: {fileID: 0}
|
|
||||||
- regularTypeface: {fileID: 0}
|
|
||||||
italicTypeface: {fileID: 0}
|
|
||||||
- regularTypeface: {fileID: 0}
|
|
||||||
italicTypeface: {fileID: 0}
|
|
||||||
- regularTypeface: {fileID: 0}
|
|
||||||
italicTypeface: {fileID: 0}
|
|
||||||
- regularTypeface: {fileID: 0}
|
|
||||||
italicTypeface: {fileID: 0}
|
|
||||||
- regularTypeface: {fileID: 0}
|
|
||||||
italicTypeface: {fileID: 0}
|
|
||||||
- regularTypeface: {fileID: 0}
|
|
||||||
italicTypeface: {fileID: 0}
|
|
||||||
- regularTypeface: {fileID: 0}
|
|
||||||
italicTypeface: {fileID: 0}
|
|
||||||
- regularTypeface: {fileID: 0}
|
|
||||||
italicTypeface: {fileID: 0}
|
|
||||||
- regularTypeface: {fileID: 0}
|
|
||||||
italicTypeface: {fileID: 0}
|
|
||||||
fontWeights:
|
|
||||||
- regularTypeface: {fileID: 0}
|
|
||||||
italicTypeface: {fileID: 0}
|
|
||||||
- regularTypeface: {fileID: 0}
|
|
||||||
italicTypeface: {fileID: 0}
|
|
||||||
- regularTypeface: {fileID: 0}
|
|
||||||
italicTypeface: {fileID: 0}
|
|
||||||
- regularTypeface: {fileID: 0}
|
|
||||||
italicTypeface: {fileID: 0}
|
|
||||||
- regularTypeface: {fileID: 0}
|
|
||||||
italicTypeface: {fileID: 0}
|
|
||||||
- regularTypeface: {fileID: 0}
|
|
||||||
italicTypeface: {fileID: 0}
|
|
||||||
- regularTypeface: {fileID: 0}
|
|
||||||
italicTypeface: {fileID: 0}
|
|
||||||
- regularTypeface: {fileID: 0}
|
|
||||||
italicTypeface: {fileID: 0}
|
|
||||||
- regularTypeface: {fileID: 0}
|
|
||||||
italicTypeface: {fileID: 0}
|
|
||||||
- regularTypeface: {fileID: 0}
|
|
||||||
italicTypeface: {fileID: 0}
|
|
||||||
normalStyle: 0
|
|
||||||
normalSpacingOffset: 0
|
|
||||||
boldStyle: 0.75
|
|
||||||
boldSpacing: 7
|
|
||||||
italicStyle: 35
|
|
||||||
tabSize: 10
|
|
||||||
--- !u!28 &28933816116536082
|
|
||||||
Texture2D:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
m_Name: Anton SDF Atlas
|
|
||||||
m_ImageContentsHash:
|
|
||||||
serializedVersion: 2
|
|
||||||
Hash: 00000000000000000000000000000000
|
|
||||||
m_ForcedFallbackFormat: 4
|
|
||||||
m_DownscaleFallback: 0
|
|
||||||
serializedVersion: 2
|
|
||||||
m_Width: 0
|
|
||||||
m_Height: 0
|
|
||||||
m_CompleteImageSize: 0
|
|
||||||
m_TextureFormat: 1
|
|
||||||
m_MipCount: 1
|
|
||||||
m_IsReadable: 1
|
|
||||||
m_StreamingMipmaps: 0
|
|
||||||
m_StreamingMipmapsPriority: 0
|
|
||||||
m_AlphaIsTransparency: 0
|
|
||||||
m_ImageCount: 1
|
|
||||||
m_TextureDimension: 2
|
|
||||||
m_TextureSettings:
|
|
||||||
serializedVersion: 2
|
|
||||||
m_FilterMode: 1
|
|
||||||
m_Aniso: 1
|
|
||||||
m_MipBias: 0
|
|
||||||
m_WrapU: 0
|
|
||||||
m_WrapV: 0
|
|
||||||
m_WrapW: 0
|
|
||||||
m_LightmapFormat: 0
|
|
||||||
m_ColorSpace: 0
|
|
||||||
image data: 0
|
|
||||||
_typelessdata:
|
|
||||||
m_StreamData:
|
|
||||||
offset: 0
|
|
||||||
size: 0
|
|
||||||
path:
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
fileFormatVersion: 2
|
|
||||||
guid: 8a89fa14b10d46a99122fd4f73fca9a2
|
|
||||||
timeCreated: 1484172732
|
|
||||||
licenseType: Pro
|
|
||||||
NativeFormatImporter:
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
||||||
@@ -1,112 +0,0 @@
|
|||||||
%YAML 1.1
|
|
||||||
%TAG !u! tag:unity3d.com,2011:
|
|
||||||
--- !u!21 &2100000
|
|
||||||
Material:
|
|
||||||
serializedVersion: 6
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
m_Name: Bangers SDF - Drop Shadow - 2 Pass
|
|
||||||
m_Shader: {fileID: 4800000, guid: 0178fcb869bafef4690d177d31d17db8, type: 3}
|
|
||||||
m_ShaderKeywords: OUTLINE_ON UNDERLAY_ON
|
|
||||||
m_LightmapFlags: 5
|
|
||||||
m_EnableInstancingVariants: 0
|
|
||||||
m_DoubleSidedGI: 0
|
|
||||||
m_CustomRenderQueue: -1
|
|
||||||
stringTagMap: {}
|
|
||||||
disabledShaderPasses: []
|
|
||||||
m_SavedProperties:
|
|
||||||
serializedVersion: 3
|
|
||||||
m_TexEnvs:
|
|
||||||
- _BumpMap:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _Cube:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _FaceTex:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _MainTex:
|
|
||||||
m_Texture: {fileID: 28584486757587946, guid: 125cb55b44b24c4393181402bc6200e6,
|
|
||||||
type: 2}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _MaskTex:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _OutlineTex:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
m_Floats:
|
|
||||||
- _Ambient: 0.5
|
|
||||||
- _Bevel: 0.5
|
|
||||||
- _BevelClamp: 0
|
|
||||||
- _BevelOffset: 0
|
|
||||||
- _BevelRoundness: 0
|
|
||||||
- _BevelWidth: 0
|
|
||||||
- _BumpFace: 0
|
|
||||||
- _BumpOutline: 0
|
|
||||||
- _ColorMask: 15
|
|
||||||
- _CullMode: 0
|
|
||||||
- _Diffuse: 0.5
|
|
||||||
- _FaceDilate: 0
|
|
||||||
- _FaceUVSpeedX: 0
|
|
||||||
- _FaceUVSpeedY: 0
|
|
||||||
- _GlowInner: 0.05
|
|
||||||
- _GlowOffset: 0
|
|
||||||
- _GlowOuter: 0.05
|
|
||||||
- _GlowPower: 0.75
|
|
||||||
- _GradientScale: 11
|
|
||||||
- _LightAngle: 3.1416
|
|
||||||
- _MaskID: 0
|
|
||||||
- _MaskSoftnessX: 0
|
|
||||||
- _MaskSoftnessY: 0
|
|
||||||
- _OutlineSoftness: 0
|
|
||||||
- _OutlineUVSpeedX: 0
|
|
||||||
- _OutlineUVSpeedY: 0
|
|
||||||
- _OutlineWidth: 0.4
|
|
||||||
- _PerspectiveFilter: 0
|
|
||||||
- _Reflectivity: 10
|
|
||||||
- _ScaleRatioA: 0.90909094
|
|
||||||
- _ScaleRatioB: 1
|
|
||||||
- _ScaleRatioC: 0.60843194
|
|
||||||
- _ScaleX: 1
|
|
||||||
- _ScaleY: 1
|
|
||||||
- _ShaderFlags: 0
|
|
||||||
- _Sharpness: 0
|
|
||||||
- _SpecularPower: 2
|
|
||||||
- _Stencil: 0
|
|
||||||
- _StencilComp: 8
|
|
||||||
- _StencilOp: 0
|
|
||||||
- _StencilReadMask: 255
|
|
||||||
- _StencilWriteMask: 255
|
|
||||||
- _TextureHeight: 1024
|
|
||||||
- _TextureWidth: 1024
|
|
||||||
- _UnderlayDilate: 0
|
|
||||||
- _UnderlayOffsetX: 0.789
|
|
||||||
- _UnderlayOffsetY: -0.777
|
|
||||||
- _UnderlaySoftness: 0.425
|
|
||||||
- _VertexOffsetX: 0
|
|
||||||
- _VertexOffsetY: 0
|
|
||||||
- _WeightBold: 0.75
|
|
||||||
- _WeightNormal: 0
|
|
||||||
m_Colors:
|
|
||||||
- _ClipRect: {r: -10000, g: -10000, b: 10000, a: 10000}
|
|
||||||
- _Color: {r: 1, g: 1, b: 1, a: 1}
|
|
||||||
- _EnvMatrixRotation: {r: 0, g: 0, b: 0, a: 0}
|
|
||||||
- _FaceColor: {r: 1, g: 1, b: 1, a: 1}
|
|
||||||
- _GlowColor: {r: 0, g: 1, b: 0, a: 0.5}
|
|
||||||
- _MaskCoord: {r: 0, g: 0, b: 100000, a: 100000}
|
|
||||||
- _OutlineColor: {r: 0, g: 0, b: 0, a: 1}
|
|
||||||
- _ReflectFaceColor: {r: 0, g: 0, b: 0, a: 1}
|
|
||||||
- _ReflectOutlineColor: {r: 0, g: 0, b: 0, a: 1}
|
|
||||||
- _SpecularColor: {r: 1, g: 1, b: 1, a: 1}
|
|
||||||
- _UnderlayColor: {r: 0, g: 0, b: 0, a: 0.7529412}
|
|
||||||
m_BuildTextureStacks: []
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
fileFormatVersion: 2
|
|
||||||
guid: 947a44964e53bf0448ff698b2a2219c0
|
|
||||||
NativeFormatImporter:
|
|
||||||
externalObjects: {}
|
|
||||||
mainObjectFileID: 2100000
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
||||||
@@ -1,110 +0,0 @@
|
|||||||
%YAML 1.1
|
|
||||||
%TAG !u! tag:unity3d.com,2011:
|
|
||||||
--- !u!21 &2100000
|
|
||||||
Material:
|
|
||||||
serializedVersion: 6
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
m_Name: Bangers SDF - Drop Shadow
|
|
||||||
m_Shader: {fileID: 4800000, guid: fe393ace9b354375a9cb14cdbbc28be4, type: 3}
|
|
||||||
m_ShaderKeywords: OUTLINE_ON UNDERLAY_ON
|
|
||||||
m_LightmapFlags: 5
|
|
||||||
m_EnableInstancingVariants: 0
|
|
||||||
m_DoubleSidedGI: 0
|
|
||||||
m_CustomRenderQueue: -1
|
|
||||||
stringTagMap: {}
|
|
||||||
disabledShaderPasses: []
|
|
||||||
m_SavedProperties:
|
|
||||||
serializedVersion: 3
|
|
||||||
m_TexEnvs:
|
|
||||||
- _BumpMap:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _Cube:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _FaceTex:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _MainTex:
|
|
||||||
m_Texture: {fileID: 28584486757587946, guid: 125cb55b44b24c4393181402bc6200e6,
|
|
||||||
type: 2}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _MaskTex:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _OutlineTex:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
m_Floats:
|
|
||||||
- _Ambient: 0.5
|
|
||||||
- _Bevel: 0.5
|
|
||||||
- _BevelClamp: 0
|
|
||||||
- _BevelOffset: 0
|
|
||||||
- _BevelRoundness: 0
|
|
||||||
- _BevelWidth: 0
|
|
||||||
- _BumpFace: 0
|
|
||||||
- _BumpOutline: 0
|
|
||||||
- _ColorMask: 15
|
|
||||||
- _Diffuse: 0.5
|
|
||||||
- _FaceDilate: 0
|
|
||||||
- _FaceUVSpeedX: 0
|
|
||||||
- _FaceUVSpeedY: 0
|
|
||||||
- _GlowInner: 0.05
|
|
||||||
- _GlowOffset: 0
|
|
||||||
- _GlowOuter: 0.05
|
|
||||||
- _GlowPower: 0.75
|
|
||||||
- _GradientScale: 11
|
|
||||||
- _LightAngle: 3.1416
|
|
||||||
- _MaskID: 0
|
|
||||||
- _MaskSoftnessX: 0
|
|
||||||
- _MaskSoftnessY: 0
|
|
||||||
- _OutlineSoftness: 0
|
|
||||||
- _OutlineUVSpeedX: 0
|
|
||||||
- _OutlineUVSpeedY: 0
|
|
||||||
- _OutlineWidth: 0.15
|
|
||||||
- _PerspectiveFilter: 0
|
|
||||||
- _Reflectivity: 10
|
|
||||||
- _ScaleRatioA: 0.90909094
|
|
||||||
- _ScaleRatioB: 1
|
|
||||||
- _ScaleRatioC: 0.7386364
|
|
||||||
- _ScaleX: 1
|
|
||||||
- _ScaleY: 1
|
|
||||||
- _ShaderFlags: 0
|
|
||||||
- _Sharpness: 0
|
|
||||||
- _SpecularPower: 2
|
|
||||||
- _Stencil: 0
|
|
||||||
- _StencilComp: 8
|
|
||||||
- _StencilOp: 0
|
|
||||||
- _StencilReadMask: 255
|
|
||||||
- _StencilWriteMask: 255
|
|
||||||
- _TextureHeight: 1024
|
|
||||||
- _TextureWidth: 1024
|
|
||||||
- _UnderlayDilate: 0
|
|
||||||
- _UnderlayOffsetX: 0.289
|
|
||||||
- _UnderlayOffsetY: -0.478
|
|
||||||
- _UnderlaySoftness: 0.068
|
|
||||||
- _VertexOffsetX: 0
|
|
||||||
- _VertexOffsetY: 0
|
|
||||||
- _WeightBold: 0.75
|
|
||||||
- _WeightNormal: 0
|
|
||||||
m_Colors:
|
|
||||||
- _ClipRect: {r: -10000, g: -10000, b: 10000, a: 10000}
|
|
||||||
- _Color: {r: 1, g: 1, b: 1, a: 1}
|
|
||||||
- _EnvMatrixRotation: {r: 0, g: 0, b: 0, a: 0}
|
|
||||||
- _FaceColor: {r: 1, g: 1, b: 1, a: 1}
|
|
||||||
- _GlowColor: {r: 0, g: 1, b: 0, a: 0.5}
|
|
||||||
- _MaskCoord: {r: 0, g: 0, b: 100000, a: 100000}
|
|
||||||
- _OutlineColor: {r: 0, g: 0, b: 0, a: 1}
|
|
||||||
- _ReflectFaceColor: {r: 0, g: 0, b: 0, a: 1}
|
|
||||||
- _ReflectOutlineColor: {r: 0, g: 0, b: 0, a: 1}
|
|
||||||
- _SpecularColor: {r: 1, g: 1, b: 1, a: 1}
|
|
||||||
- _UnderlayColor: {r: 0, g: 0, b: 0, a: 0.7529412}
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
fileFormatVersion: 2
|
|
||||||
guid: f2dcf029949142e28b974630369c8b4e
|
|
||||||
timeCreated: 1444812175
|
|
||||||
licenseType: Store
|
|
||||||
NativeFormatImporter:
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
||||||
@@ -1,110 +0,0 @@
|
|||||||
%YAML 1.1
|
|
||||||
%TAG !u! tag:unity3d.com,2011:
|
|
||||||
--- !u!21 &2100000
|
|
||||||
Material:
|
|
||||||
serializedVersion: 6
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
m_Name: Bangers SDF - Outline
|
|
||||||
m_Shader: {fileID: 4800000, guid: fe393ace9b354375a9cb14cdbbc28be4, type: 3}
|
|
||||||
m_ShaderKeywords: OUTLINE_ON
|
|
||||||
m_LightmapFlags: 5
|
|
||||||
m_EnableInstancingVariants: 0
|
|
||||||
m_DoubleSidedGI: 0
|
|
||||||
m_CustomRenderQueue: -1
|
|
||||||
stringTagMap: {}
|
|
||||||
disabledShaderPasses: []
|
|
||||||
m_SavedProperties:
|
|
||||||
serializedVersion: 3
|
|
||||||
m_TexEnvs:
|
|
||||||
- _BumpMap:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _Cube:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _FaceTex:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _MainTex:
|
|
||||||
m_Texture: {fileID: 28584486757587946, guid: 125cb55b44b24c4393181402bc6200e6,
|
|
||||||
type: 2}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _MaskTex:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _OutlineTex:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
m_Floats:
|
|
||||||
- _Ambient: 0.5
|
|
||||||
- _Bevel: 0.5
|
|
||||||
- _BevelClamp: 0
|
|
||||||
- _BevelOffset: 0
|
|
||||||
- _BevelRoundness: 0
|
|
||||||
- _BevelWidth: 0
|
|
||||||
- _BumpFace: 0
|
|
||||||
- _BumpOutline: 0
|
|
||||||
- _ColorMask: 15
|
|
||||||
- _Diffuse: 0.5
|
|
||||||
- _FaceDilate: 0
|
|
||||||
- _FaceUVSpeedX: 0
|
|
||||||
- _FaceUVSpeedY: 0
|
|
||||||
- _GlowInner: 0.05
|
|
||||||
- _GlowOffset: 0
|
|
||||||
- _GlowOuter: 0.05
|
|
||||||
- _GlowPower: 0.75
|
|
||||||
- _GradientScale: 11
|
|
||||||
- _LightAngle: 3.1416
|
|
||||||
- _MaskID: 0
|
|
||||||
- _MaskSoftnessX: 0
|
|
||||||
- _MaskSoftnessY: 0
|
|
||||||
- _OutlineSoftness: 0
|
|
||||||
- _OutlineUVSpeedX: 0
|
|
||||||
- _OutlineUVSpeedY: 0
|
|
||||||
- _OutlineWidth: 0.15
|
|
||||||
- _PerspectiveFilter: 0
|
|
||||||
- _Reflectivity: 10
|
|
||||||
- _ScaleRatioA: 0.90909094
|
|
||||||
- _ScaleRatioB: 1
|
|
||||||
- _ScaleRatioC: 0.79545456
|
|
||||||
- _ScaleX: 1
|
|
||||||
- _ScaleY: 1
|
|
||||||
- _ShaderFlags: 0
|
|
||||||
- _Sharpness: 0
|
|
||||||
- _SpecularPower: 2
|
|
||||||
- _Stencil: 0
|
|
||||||
- _StencilComp: 8
|
|
||||||
- _StencilOp: 0
|
|
||||||
- _StencilReadMask: 255
|
|
||||||
- _StencilWriteMask: 255
|
|
||||||
- _TextureHeight: 1024
|
|
||||||
- _TextureWidth: 1024
|
|
||||||
- _UnderlayDilate: 0
|
|
||||||
- _UnderlayOffsetX: 0
|
|
||||||
- _UnderlayOffsetY: 0
|
|
||||||
- _UnderlaySoftness: 0
|
|
||||||
- _VertexOffsetX: 0
|
|
||||||
- _VertexOffsetY: 0
|
|
||||||
- _WeightBold: 0.75
|
|
||||||
- _WeightNormal: 0
|
|
||||||
m_Colors:
|
|
||||||
- _ClipRect: {r: -10000, g: -10000, b: 10000, a: 10000}
|
|
||||||
- _Color: {r: 1, g: 1, b: 1, a: 1}
|
|
||||||
- _EnvMatrixRotation: {r: 0, g: 0, b: 0, a: 0}
|
|
||||||
- _FaceColor: {r: 1, g: 1, b: 1, a: 1}
|
|
||||||
- _GlowColor: {r: 0, g: 1, b: 0, a: 0.5}
|
|
||||||
- _MaskCoord: {r: 0, g: 0, b: 100000, a: 100000}
|
|
||||||
- _OutlineColor: {r: 0, g: 0, b: 0, a: 1}
|
|
||||||
- _ReflectFaceColor: {r: 0, g: 0, b: 0, a: 1}
|
|
||||||
- _ReflectOutlineColor: {r: 0, g: 0, b: 0, a: 1}
|
|
||||||
- _SpecularColor: {r: 1, g: 1, b: 1, a: 1}
|
|
||||||
- _UnderlayColor: {r: 0, g: 0, b: 0, a: 0.5019608}
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
fileFormatVersion: 2
|
|
||||||
guid: f629c6e43dba4bf38cb74d8860150664
|
|
||||||
timeCreated: 1455497618
|
|
||||||
licenseType: Store
|
|
||||||
NativeFormatImporter:
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
||||||
@@ -1,113 +0,0 @@
|
|||||||
%YAML 1.1
|
|
||||||
%TAG !u! tag:unity3d.com,2011:
|
|
||||||
--- !u!21 &2100000
|
|
||||||
Material:
|
|
||||||
serializedVersion: 6
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
m_Name: Bangers SDF Glow
|
|
||||||
m_Shader: {fileID: 4800000, guid: 68e6db2ebdc24f95958faec2be5558d6, type: 3}
|
|
||||||
m_ShaderKeywords: GLOW_ON UNDERLAY_ON
|
|
||||||
m_LightmapFlags: 5
|
|
||||||
m_EnableInstancingVariants: 0
|
|
||||||
m_DoubleSidedGI: 0
|
|
||||||
m_CustomRenderQueue: -1
|
|
||||||
stringTagMap: {}
|
|
||||||
disabledShaderPasses: []
|
|
||||||
m_SavedProperties:
|
|
||||||
serializedVersion: 3
|
|
||||||
m_TexEnvs:
|
|
||||||
- _BumpMap:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _Cube:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _FaceTex:
|
|
||||||
m_Texture: {fileID: 2800000, guid: 2ce5c55e85304b819a1826ecbc839aa5, type: 3}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _MainTex:
|
|
||||||
m_Texture: {fileID: 28584486757587946, guid: 125cb55b44b24c4393181402bc6200e6,
|
|
||||||
type: 2}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _MaskTex:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
- _OutlineTex:
|
|
||||||
m_Texture: {fileID: 0}
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Offset: {x: 0, y: 0}
|
|
||||||
m_Floats:
|
|
||||||
- _Ambient: 0.5
|
|
||||||
- _Bevel: 0.5
|
|
||||||
- _BevelClamp: 0
|
|
||||||
- _BevelOffset: 0
|
|
||||||
- _BevelRoundness: 0
|
|
||||||
- _BevelWidth: 0
|
|
||||||
- _BumpFace: 0
|
|
||||||
- _BumpOutline: 0
|
|
||||||
- _ColorMask: 15
|
|
||||||
- _Diffuse: 0.5
|
|
||||||
- _FaceDilate: 0.1
|
|
||||||
- _FaceShininess: 0
|
|
||||||
- _FaceUVSpeedX: 0
|
|
||||||
- _FaceUVSpeedY: 0
|
|
||||||
- _GlowInner: 0.148
|
|
||||||
- _GlowOffset: 0.433
|
|
||||||
- _GlowOuter: 0.158
|
|
||||||
- _GlowPower: 0.908
|
|
||||||
- _GradientScale: 11
|
|
||||||
- _LightAngle: 3.1416
|
|
||||||
- _MaskID: 0
|
|
||||||
- _MaskSoftnessX: 0
|
|
||||||
- _MaskSoftnessY: 0
|
|
||||||
- _OutlineShininess: 0
|
|
||||||
- _OutlineSoftness: 0
|
|
||||||
- _OutlineUVSpeedX: 0
|
|
||||||
- _OutlineUVSpeedY: 0
|
|
||||||
- _OutlineWidth: 0.21
|
|
||||||
- _PerspectiveFilter: 0
|
|
||||||
- _Reflectivity: 10
|
|
||||||
- _ScaleRatioA: 0.90909094
|
|
||||||
- _ScaleRatioB: 0.64772725
|
|
||||||
- _ScaleRatioC: 0.64772725
|
|
||||||
- _ScaleX: 1
|
|
||||||
- _ScaleY: 1
|
|
||||||
- _ShaderFlags: 0
|
|
||||||
- _Sharpness: 0
|
|
||||||
- _SpecularPower: 2
|
|
||||||
- _Stencil: 0
|
|
||||||
- _StencilComp: 8
|
|
||||||
- _StencilOp: 0
|
|
||||||
- _StencilReadMask: 255
|
|
||||||
- _StencilWriteMask: 255
|
|
||||||
- _TextureHeight: 1024
|
|
||||||
- _TextureWidth: 1024
|
|
||||||
- _UnderlayDilate: 0
|
|
||||||
- _UnderlayOffsetX: 0.869
|
|
||||||
- _UnderlayOffsetY: -1
|
|
||||||
- _UnderlaySoftness: 0
|
|
||||||
- _UseClipRect: 0
|
|
||||||
- _VertexOffsetX: 0
|
|
||||||
- _VertexOffsetY: 0
|
|
||||||
- _WeightBold: 0.75
|
|
||||||
- _WeightNormal: 0
|
|
||||||
m_Colors:
|
|
||||||
- _ClipRect: {r: -10000, g: -10000, b: 10000, a: 10000}
|
|
||||||
- _EnvMatrixRotation: {r: 0, g: 0, b: 0, a: 0}
|
|
||||||
- _FaceColor: {r: 1, g: 1, b: 1, a: 1}
|
|
||||||
- _GlowColor: {r: 0, g: 1, b: 0, a: 1}
|
|
||||||
- _MaskCoord: {r: 0, g: 0, b: 100000, a: 100000}
|
|
||||||
- _OutlineColor: {r: 0, g: 0.25517216, b: 1, a: 1}
|
|
||||||
- _ReflectFaceColor: {r: 0, g: 0, b: 0, a: 1}
|
|
||||||
- _ReflectOutlineColor: {r: 0, g: 0, b: 0, a: 1}
|
|
||||||
- _SpecColor: {r: 0, g: 0, b: 0, a: 1}
|
|
||||||
- _SpecularColor: {r: 1, g: 1, b: 1, a: 1}
|
|
||||||
- _UnderlayColor: {r: 1, g: 0, b: 0, a: 0.5}
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
fileFormatVersion: 2
|
|
||||||
guid: d75b8f41e959450c84ac6e967084d3e1
|
|
||||||
timeCreated: 1426033972
|
|
||||||
licenseType: Store
|
|
||||||
NativeFormatImporter:
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user