Flatkit 추가 및 설정
8
Assets/FlatKit/Demos/Common.meta
Normal file
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 00cd8d44f40e54a2f9a7cbf4ae64e2f2
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
8
Assets/FlatKit/Demos/Common/Scripts.meta
Normal file
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: cfea5d9d9ca5443559d507636ef65e98
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
59
Assets/FlatKit/Demos/Common/Scripts/AutoLoadPipelineAsset.cs
Normal file
@@ -0,0 +1,59 @@
|
||||
using UnityEngine;
|
||||
using UnityEngine.Rendering;
|
||||
|
||||
namespace FlatKit {
|
||||
[ExecuteAlways]
|
||||
public class AutoLoadPipelineAsset : MonoBehaviour {
|
||||
[SerializeField]
|
||||
private RenderPipelineAsset pipelineAsset;
|
||||
private RenderPipelineAsset _previousPipelineAsset;
|
||||
private bool _overrodeQualitySettings;
|
||||
|
||||
private void OnEnable() {
|
||||
UpdatePipeline();
|
||||
}
|
||||
|
||||
private void OnDisable() {
|
||||
ResetPipeline();
|
||||
}
|
||||
|
||||
private void OnValidate() {
|
||||
UpdatePipeline();
|
||||
}
|
||||
|
||||
private void UpdatePipeline() {
|
||||
if (pipelineAsset) {
|
||||
if (QualitySettings.renderPipeline != null && QualitySettings.renderPipeline != pipelineAsset) {
|
||||
_previousPipelineAsset = QualitySettings.renderPipeline;
|
||||
QualitySettings.renderPipeline = pipelineAsset;
|
||||
_overrodeQualitySettings = true;
|
||||
} else {
|
||||
#if UNITY_6000_0_OR_NEWER
|
||||
var currentPipeline = GraphicsSettings.defaultRenderPipeline;
|
||||
#else
|
||||
var currentPipeline = GraphicsSettings.renderPipelineAsset;
|
||||
#endif
|
||||
if (currentPipeline != pipelineAsset) {
|
||||
_previousPipelineAsset = currentPipeline;
|
||||
GraphicsSettings.defaultRenderPipeline = pipelineAsset;
|
||||
_overrodeQualitySettings = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void ResetPipeline() {
|
||||
if (_previousPipelineAsset) {
|
||||
if (_overrodeQualitySettings) {
|
||||
QualitySettings.renderPipeline = _previousPipelineAsset;
|
||||
} else {
|
||||
#if UNITY_6000_0_OR_NEWER
|
||||
GraphicsSettings.defaultRenderPipeline = _previousPipelineAsset;
|
||||
#else
|
||||
GraphicsSettings.renderPipelineAsset = _previousPipelineAsset;
|
||||
#endif
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: d70c9ba36a8bebe4697e8f8a9da58409
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
8
Assets/FlatKit/Demos/Common/Scripts/Motion.meta
Normal file
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 9dd39a54106ae470f822efa6bd5fc5b4
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
9
Assets/FlatKit/Demos/Common/Scripts/Motion/Editor.meta
Normal file
@@ -0,0 +1,9 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 5f2b8436fbb9bd045ab8bdccf8490ae1
|
||||
folderAsset: yes
|
||||
timeCreated: 1452853741
|
||||
licenseType: Pro
|
||||
DefaultImporter:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,83 @@
|
||||
using UnityEngine;
|
||||
using UnityEditor;
|
||||
|
||||
namespace Dustyroom {
|
||||
[CanEditMultipleObjects]
|
||||
[CustomEditor(typeof(LinearMotion))]
|
||||
public class LinearMotionEditor : UnityEditor.Editor {
|
||||
private SerializedProperty _translationMode;
|
||||
private SerializedProperty _translationVector;
|
||||
private SerializedProperty _translationSpeed;
|
||||
private SerializedProperty _translationAcceleration;
|
||||
|
||||
private SerializedProperty _rotationMode;
|
||||
private SerializedProperty _rotationAxis;
|
||||
private SerializedProperty _rotationSpeed;
|
||||
private SerializedProperty _rotationAcceleration;
|
||||
|
||||
private SerializedProperty _useLocalCoordinate;
|
||||
|
||||
private static readonly GUIContent TextRotation = new GUIContent("Rotation");
|
||||
private static readonly GUIContent TextAcceleration = new GUIContent("Acceleration");
|
||||
private static readonly GUIContent TextTranslation = new GUIContent("Translation");
|
||||
private static readonly GUIContent TextSpeed = new GUIContent("Speed");
|
||||
private static readonly GUIContent TextVector = new GUIContent("Vector");
|
||||
private static readonly GUIContent TextLocalCoordinate = new GUIContent("Local Coordinate");
|
||||
|
||||
void OnEnable() {
|
||||
_translationMode = serializedObject.FindProperty("translationMode");
|
||||
_translationVector = serializedObject.FindProperty("translationVector");
|
||||
_translationSpeed = serializedObject.FindProperty("translationSpeed");
|
||||
_translationAcceleration = serializedObject.FindProperty("translationAcceleration");
|
||||
|
||||
_rotationMode = serializedObject.FindProperty("rotationMode");
|
||||
_rotationAxis = serializedObject.FindProperty("rotationAxis");
|
||||
_rotationSpeed = serializedObject.FindProperty("rotationSpeed");
|
||||
_rotationAcceleration = serializedObject.FindProperty("rotationAcceleration");
|
||||
|
||||
_useLocalCoordinate = serializedObject.FindProperty("useLocalCoordinate");
|
||||
}
|
||||
|
||||
public override void OnInspectorGUI() {
|
||||
serializedObject.Update();
|
||||
|
||||
EditorGUILayout.PropertyField(_translationMode, TextTranslation);
|
||||
|
||||
EditorGUI.indentLevel++;
|
||||
|
||||
if (_translationMode.hasMultipleDifferentValues ||
|
||||
_translationMode.enumValueIndex == (int) LinearMotion.TranslationMode.Vector) {
|
||||
EditorGUILayout.PropertyField(_translationVector, TextVector);
|
||||
}
|
||||
|
||||
if (_translationMode.hasMultipleDifferentValues ||
|
||||
_translationMode.enumValueIndex != 0) {
|
||||
EditorGUILayout.PropertyField(_translationSpeed, TextSpeed);
|
||||
EditorGUILayout.PropertyField(_translationAcceleration, TextAcceleration);
|
||||
}
|
||||
|
||||
EditorGUI.indentLevel--;
|
||||
|
||||
EditorGUILayout.PropertyField(_rotationMode, TextRotation);
|
||||
|
||||
EditorGUI.indentLevel++;
|
||||
|
||||
if (_rotationMode.hasMultipleDifferentValues ||
|
||||
_rotationMode.enumValueIndex == (int) LinearMotion.RotationMode.Vector) {
|
||||
EditorGUILayout.PropertyField(_rotationAxis, TextVector);
|
||||
}
|
||||
|
||||
if (_rotationMode.hasMultipleDifferentValues ||
|
||||
_rotationMode.enumValueIndex != 0) {
|
||||
EditorGUILayout.PropertyField(_rotationSpeed, TextSpeed);
|
||||
EditorGUILayout.PropertyField(_rotationAcceleration, TextAcceleration);
|
||||
}
|
||||
|
||||
EditorGUI.indentLevel--;
|
||||
|
||||
EditorGUILayout.PropertyField(_useLocalCoordinate, TextLocalCoordinate);
|
||||
|
||||
serializedObject.ApplyModifiedProperties();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 6fc5aa7ff4bc94e60a8415d6b0755c76
|
||||
timeCreated: 1452496761
|
||||
licenseType: Pro
|
||||
MonoImporter:
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
96
Assets/FlatKit/Demos/Common/Scripts/Motion/LinearMotion.cs
Normal file
@@ -0,0 +1,96 @@
|
||||
using System;
|
||||
using UnityEngine;
|
||||
using Random = UnityEngine.Random;
|
||||
|
||||
namespace Dustyroom {
|
||||
public class LinearMotion : MonoBehaviour {
|
||||
public enum TranslationMode {
|
||||
Off,
|
||||
XAxis,
|
||||
YAxis,
|
||||
ZAxis,
|
||||
Vector
|
||||
}
|
||||
|
||||
public enum RotationMode {
|
||||
Off,
|
||||
XAxis,
|
||||
YAxis,
|
||||
ZAxis,
|
||||
Vector
|
||||
}
|
||||
|
||||
public TranslationMode translationMode = TranslationMode.Off;
|
||||
public Vector3 translationVector = Vector3.forward;
|
||||
public float translationSpeed = 1.0f;
|
||||
public RotationMode rotationMode = RotationMode.Off;
|
||||
public Vector3 rotationAxis = Vector3.up;
|
||||
public float rotationSpeed = 50.0f;
|
||||
public bool useLocalCoordinate = true;
|
||||
public float translationAcceleration = 0f;
|
||||
public float rotationAcceleration = 0f;
|
||||
|
||||
private Vector3 TranslationVector {
|
||||
get {
|
||||
switch (translationMode) {
|
||||
case TranslationMode.XAxis: return Vector3.right;
|
||||
case TranslationMode.YAxis: return Vector3.up;
|
||||
case TranslationMode.ZAxis: return Vector3.forward;
|
||||
case TranslationMode.Vector: return translationVector;
|
||||
case TranslationMode.Off:
|
||||
break;
|
||||
default:
|
||||
throw new ArgumentOutOfRangeException();
|
||||
}
|
||||
|
||||
return Vector3.zero;
|
||||
}
|
||||
}
|
||||
|
||||
Vector3 RotationVector {
|
||||
get {
|
||||
switch (rotationMode) {
|
||||
case RotationMode.XAxis: return Vector3.right;
|
||||
case RotationMode.YAxis: return Vector3.up;
|
||||
case RotationMode.ZAxis: return Vector3.forward;
|
||||
case RotationMode.Vector: return rotationAxis;
|
||||
case RotationMode.Off:
|
||||
break;
|
||||
default:
|
||||
throw new ArgumentOutOfRangeException();
|
||||
}
|
||||
|
||||
return Vector3.zero;
|
||||
}
|
||||
}
|
||||
|
||||
void Update() {
|
||||
if (translationMode != TranslationMode.Off) {
|
||||
Vector3 positionDelta = TranslationVector * translationSpeed * Time.deltaTime;
|
||||
|
||||
if (useLocalCoordinate) {
|
||||
transform.localPosition += positionDelta;
|
||||
}
|
||||
else {
|
||||
transform.position += positionDelta;
|
||||
}
|
||||
}
|
||||
|
||||
if (rotationMode == RotationMode.Off) return;
|
||||
|
||||
Quaternion rotationDelta = Quaternion.AngleAxis(
|
||||
rotationSpeed * Time.deltaTime, RotationVector);
|
||||
if (useLocalCoordinate) {
|
||||
transform.localRotation = rotationDelta * transform.localRotation;
|
||||
}
|
||||
else {
|
||||
transform.rotation = rotationDelta * transform.rotation;
|
||||
}
|
||||
}
|
||||
|
||||
private void FixedUpdate() {
|
||||
translationSpeed += translationAcceleration;
|
||||
rotationSpeed += rotationAcceleration;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 3db4c4a72731246b2b1ad1e73178c04e
|
||||
timeCreated: 1452494131
|
||||
licenseType: Pro
|
||||
MonoImporter:
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
141
Assets/FlatKit/Demos/Common/Scripts/Motion/OrbitMotion.cs
Normal file
@@ -0,0 +1,141 @@
|
||||
using UnityEngine;
|
||||
|
||||
namespace Dustyroom {
|
||||
public class OrbitMotion : MonoBehaviour {
|
||||
public enum TargetMode {
|
||||
Transform,
|
||||
Position
|
||||
}
|
||||
|
||||
public TargetMode targetMode = TargetMode.Position;
|
||||
public Transform targetTransform;
|
||||
public bool followTargetTransform = true;
|
||||
public Vector3 targetOffset = Vector3.zero;
|
||||
public Vector3 targetPosition;
|
||||
|
||||
[Space] public float distanceHorizontal = 60.0f;
|
||||
public float distanceVertical = 60.0f;
|
||||
public float xSpeed = 120.0f;
|
||||
public float ySpeed = 120.0f;
|
||||
public float damping = 3f;
|
||||
|
||||
[Space] public bool clampAngle = false;
|
||||
public float yMinLimit = -20f;
|
||||
public float yMaxLimit = 80f;
|
||||
|
||||
[Space] public bool allowZoom = false;
|
||||
public float distanceMin = .5f;
|
||||
public float distanceMax = 15f;
|
||||
|
||||
float _x = 0.0f;
|
||||
float _y = 0.0f;
|
||||
|
||||
[Space] public bool autoMovement = false;
|
||||
public float autoSpeedX = 0.2f;
|
||||
public float autoSpeedY = 0.1f;
|
||||
public float autoSpeedDistance = -0.1f;
|
||||
|
||||
[Space] public bool interactive = true;
|
||||
|
||||
private float _lastMoveTime;
|
||||
[HideInInspector] public float timeSinceLastMove;
|
||||
|
||||
void Start() {
|
||||
Vector3 angles = transform.eulerAngles;
|
||||
_x = angles.y;
|
||||
_y = angles.x;
|
||||
|
||||
// Make the rigid body not change rotation
|
||||
Rigidbody rigidbody = GetComponent<Rigidbody>();
|
||||
if (rigidbody != null) {
|
||||
rigidbody.freezeRotation = true;
|
||||
}
|
||||
|
||||
#if (UNITY_ANDROID || UNITY_IOS) && !UNITY_EDITOR
|
||||
xSpeed *= 0.2f;
|
||||
ySpeed *= 0.2f;
|
||||
#endif
|
||||
|
||||
if (targetMode == TargetMode.Transform) {
|
||||
if (targetTransform != null) {
|
||||
targetPosition = targetTransform.position + targetOffset;
|
||||
}
|
||||
else {
|
||||
Debug.LogWarning("Reference transform is not set.");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void Update() {
|
||||
if (targetMode == TargetMode.Transform && followTargetTransform) {
|
||||
if (targetTransform != null) {
|
||||
targetPosition = targetTransform.position + targetOffset;
|
||||
}
|
||||
else {
|
||||
Debug.LogWarning("Reference transform is not set.");
|
||||
}
|
||||
}
|
||||
|
||||
//*
|
||||
bool isCameraMoving = false;
|
||||
#if ((UNITY_ANDROID || UNITY_IOS) && !UNITY_EDITOR)
|
||||
isCameraMoving = Input.GetTouch(0).deltaPosition.sqrMagnitude > 0f;
|
||||
#else
|
||||
isCameraMoving = Mathf.Abs(Input.GetAxis("Mouse X")) + Mathf.Abs(Input.GetAxis("Mouse Y")) > 0f;
|
||||
#endif
|
||||
if (isCameraMoving) {
|
||||
_lastMoveTime = Time.time;
|
||||
}
|
||||
|
||||
timeSinceLastMove = Time.time - _lastMoveTime;
|
||||
//*/
|
||||
|
||||
if (interactive && Input.GetMouseButton(0)) {
|
||||
#if ((UNITY_ANDROID || UNITY_IOS) && !UNITY_EDITOR)
|
||||
_x += Input.GetTouch(0).deltaPosition.x * xSpeed * 40f * 0.02f;
|
||||
_y -= Input.GetTouch(0).deltaPosition.y * ySpeed * 40f * 0.02f;
|
||||
#else
|
||||
_x += Input.GetAxis("Mouse X") * xSpeed * 40f * 0.02f;
|
||||
_y -= Input.GetAxis("Mouse Y") * ySpeed * 40f * 0.02f;
|
||||
#endif
|
||||
}
|
||||
else if (autoMovement) {
|
||||
_x += autoSpeedX * 40f * Time.deltaTime * 10f;
|
||||
_y -= autoSpeedY * 40f * Time.deltaTime * 10f;
|
||||
distanceHorizontal += autoSpeedDistance;
|
||||
}
|
||||
|
||||
if (clampAngle) {
|
||||
_y = ClampAngle(_y, yMinLimit, yMaxLimit);
|
||||
}
|
||||
|
||||
Quaternion rotation = Quaternion.Slerp(transform.rotation, Quaternion.Euler(_y, _x, 0),
|
||||
Time.deltaTime * damping);
|
||||
|
||||
if (allowZoom) {
|
||||
distanceHorizontal = Mathf.Clamp(
|
||||
distanceHorizontal - Input.GetAxis("Mouse ScrollWheel") * 5, distanceMin, distanceMax);
|
||||
}
|
||||
|
||||
float rotationX = rotation.eulerAngles.x;
|
||||
if (rotationX > 90f) {
|
||||
rotationX -= 360f;
|
||||
}
|
||||
|
||||
float usedDistance = Mathf.Lerp(distanceHorizontal, distanceVertical, Mathf.Abs(rotationX / 90f));
|
||||
Vector3 negDistance = new Vector3(0.0f, 0.0f, -usedDistance);
|
||||
Vector3 position = rotation * negDistance + targetPosition;
|
||||
|
||||
transform.rotation = rotation;
|
||||
transform.position = position;
|
||||
}
|
||||
|
||||
private static float ClampAngle(float angle, float min, float max) {
|
||||
if (angle < -360f)
|
||||
angle += 360f;
|
||||
if (angle > 360f)
|
||||
angle -= 360f;
|
||||
return Mathf.Clamp(angle, min, max);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: afc635dbcae404d4f8e03f5219dc8099
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
27
Assets/FlatKit/Demos/Common/Scripts/UvScroller.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
using UnityEngine;
|
||||
|
||||
namespace FlatKit {
|
||||
public class UvScroller : MonoBehaviour {
|
||||
public Material targetMaterial;
|
||||
public float speedX = 0f;
|
||||
public float speedY = 0f;
|
||||
|
||||
private Vector2 offset;
|
||||
private Vector2 initOffset;
|
||||
|
||||
void Start() {
|
||||
offset = targetMaterial.mainTextureOffset;
|
||||
initOffset = targetMaterial.mainTextureOffset;
|
||||
}
|
||||
|
||||
void OnDisable() {
|
||||
targetMaterial.mainTextureOffset = initOffset;
|
||||
}
|
||||
|
||||
void Update() {
|
||||
offset.x += speedX * Time.deltaTime;
|
||||
offset.y += speedY * Time.deltaTime;
|
||||
targetMaterial.mainTextureOffset = offset;
|
||||
}
|
||||
}
|
||||
}
|
||||
11
Assets/FlatKit/Demos/Common/Scripts/UvScroller.cs.meta
Normal file
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: d1b6a21ce70e59f46a5c3a55c91b0153
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
8
Assets/FlatKit/Demos/Common/Textures.meta
Normal file
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 0215c073cddbf4931ab9784405f119c3
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
8
Assets/FlatKit/Demos/Common/Textures/Grid.meta
Normal file
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 783ca762475954faeb36b9d078b0c688
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
BIN
Assets/FlatKit/Demos/Common/Textures/Grid/grid-01-2048.png
Normal file
|
After Width: | Height: | Size: 28 KiB |
110
Assets/FlatKit/Demos/Common/Textures/Grid/grid-01-2048.png.meta
Normal file
@@ -0,0 +1,110 @@
|
||||
fileFormatVersion: 2
|
||||
guid: c2a08a175aefc4b3ea194eebe493aede
|
||||
TextureImporter:
|
||||
fileIDToRecycleName: {}
|
||||
externalObjects: {}
|
||||
serializedVersion: 9
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 1
|
||||
sRGBTexture: 1
|
||||
linearTexture: 0
|
||||
fadeOut: 0
|
||||
borderMipMap: 0
|
||||
mipMapsPreserveCoverage: 0
|
||||
alphaTestReferenceValue: 0.5
|
||||
mipMapFadeDistanceStart: 1
|
||||
mipMapFadeDistanceEnd: 3
|
||||
bumpmap:
|
||||
convertToNormalMap: 0
|
||||
externalNormalMap: 0
|
||||
heightScale: 0.25
|
||||
normalMapFilter: 0
|
||||
isReadable: 0
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
grayScaleToAlpha: 0
|
||||
generateCubemap: 6
|
||||
cubemapConvolution: 0
|
||||
seamlessCubemap: 0
|
||||
textureFormat: 1
|
||||
maxTextureSize: 2048
|
||||
textureSettings:
|
||||
serializedVersion: 2
|
||||
filterMode: 2
|
||||
aniso: 16
|
||||
mipBias: -100
|
||||
wrapU: 0
|
||||
wrapV: 0
|
||||
wrapW: 0
|
||||
nPOTScale: 1
|
||||
lightmap: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 0
|
||||
spriteExtrude: 1
|
||||
spriteMeshType: 1
|
||||
alignment: 0
|
||||
spritePivot: {x: 0.5, y: 0.5}
|
||||
spritePixelsToUnits: 100
|
||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||
spriteGenerateFallbackPhysicsShape: 1
|
||||
alphaUsage: 1
|
||||
alphaIsTransparency: 0
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 0
|
||||
textureShape: 1
|
||||
singleChannelComponent: 0
|
||||
maxTextureSizeSet: 0
|
||||
compressionQualitySet: 0
|
||||
textureFormatSet: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 2
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
- serializedVersion: 2
|
||||
buildTarget: Standalone
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
- serializedVersion: 2
|
||||
buildTarget: WebGL
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID:
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
spritePackingTag:
|
||||
pSDRemoveMatte: 0
|
||||
pSDShowRemoveMatteOption: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
8
Assets/FlatKit/Demos/Common/Textures/Misc.meta
Normal file
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 5b96030887e354d7494c97f1db92e78f
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
8
Assets/FlatKit/Demos/Common/Textures/Misc/Dissolve.meta
Normal file
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: a32f3a2ad1bf64c93b43820e51b206e8
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
|
After Width: | Height: | Size: 58 KiB |
@@ -0,0 +1,130 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 48e027aa90c1b49dfa07cd8e8e84febf
|
||||
TextureImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 13
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 0
|
||||
sRGBTexture: 1
|
||||
linearTexture: 0
|
||||
fadeOut: 0
|
||||
borderMipMap: 0
|
||||
mipMapsPreserveCoverage: 0
|
||||
alphaTestReferenceValue: 0.5
|
||||
mipMapFadeDistanceStart: 1
|
||||
mipMapFadeDistanceEnd: 3
|
||||
bumpmap:
|
||||
convertToNormalMap: 0
|
||||
externalNormalMap: 0
|
||||
heightScale: 0.25
|
||||
normalMapFilter: 0
|
||||
flipGreenChannel: 0
|
||||
isReadable: 0
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
vTOnly: 0
|
||||
ignoreMipmapLimit: 1
|
||||
grayScaleToAlpha: 0
|
||||
generateCubemap: 6
|
||||
cubemapConvolution: 0
|
||||
seamlessCubemap: 0
|
||||
textureFormat: 1
|
||||
maxTextureSize: 2048
|
||||
textureSettings:
|
||||
serializedVersion: 2
|
||||
filterMode: 1
|
||||
aniso: 1
|
||||
mipBias: 0
|
||||
wrapU: 0
|
||||
wrapV: 0
|
||||
wrapW: 0
|
||||
nPOTScale: 1
|
||||
lightmap: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 0
|
||||
spriteExtrude: 1
|
||||
spriteMeshType: 1
|
||||
alignment: 0
|
||||
spritePivot: {x: 0.5, y: 0.5}
|
||||
spritePixelsToUnits: 100
|
||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||
spriteGenerateFallbackPhysicsShape: 1
|
||||
alphaUsage: 1
|
||||
alphaIsTransparency: 0
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 0
|
||||
textureShape: 1
|
||||
singleChannelComponent: 0
|
||||
flipbookRows: 1
|
||||
flipbookColumns: 1
|
||||
maxTextureSizeSet: 0
|
||||
compressionQualitySet: 0
|
||||
textureFormatSet: 0
|
||||
ignorePngGamma: 0
|
||||
applyGammaDecoding: 0
|
||||
swizzle: 50462976
|
||||
cookieLightType: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 4
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 4
|
||||
buildTarget: Standalone
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 4
|
||||
buildTarget: VisionOS
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
customData:
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID:
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
spriteCustomMetadata:
|
||||
entries: []
|
||||
nameFileIdTable: {}
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
8
Assets/FlatKit/Demos/Common/Textures/Misc/Noise.meta
Normal file
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: b418b5faac561466591e6f43acdc1193
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
BIN
Assets/FlatKit/Demos/Common/Textures/Misc/Noise/Noise-01.png
Normal file
|
After Width: | Height: | Size: 91 KiB |
@@ -0,0 +1,88 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 3dd885f2e127c417eb6732a90a069415
|
||||
TextureImporter:
|
||||
fileIDToRecycleName: {}
|
||||
externalObjects: {}
|
||||
serializedVersion: 9
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 1
|
||||
sRGBTexture: 1
|
||||
linearTexture: 0
|
||||
fadeOut: 0
|
||||
borderMipMap: 0
|
||||
mipMapsPreserveCoverage: 0
|
||||
alphaTestReferenceValue: 0.5
|
||||
mipMapFadeDistanceStart: 1
|
||||
mipMapFadeDistanceEnd: 3
|
||||
bumpmap:
|
||||
convertToNormalMap: 0
|
||||
externalNormalMap: 0
|
||||
heightScale: 0.25
|
||||
normalMapFilter: 0
|
||||
isReadable: 0
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
grayScaleToAlpha: 0
|
||||
generateCubemap: 6
|
||||
cubemapConvolution: 0
|
||||
seamlessCubemap: 0
|
||||
textureFormat: 1
|
||||
maxTextureSize: 2048
|
||||
textureSettings:
|
||||
serializedVersion: 2
|
||||
filterMode: -1
|
||||
aniso: -1
|
||||
mipBias: -100
|
||||
wrapU: -1
|
||||
wrapV: -1
|
||||
wrapW: -1
|
||||
nPOTScale: 1
|
||||
lightmap: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 0
|
||||
spriteExtrude: 1
|
||||
spriteMeshType: 1
|
||||
alignment: 0
|
||||
spritePivot: {x: 0.5, y: 0.5}
|
||||
spritePixelsToUnits: 100
|
||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||
spriteGenerateFallbackPhysicsShape: 1
|
||||
alphaUsage: 1
|
||||
alphaIsTransparency: 0
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 0
|
||||
textureShape: 1
|
||||
singleChannelComponent: 0
|
||||
maxTextureSizeSet: 0
|
||||
compressionQualitySet: 0
|
||||
textureFormatSet: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 2
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID:
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
spritePackingTag:
|
||||
pSDRemoveMatte: 0
|
||||
pSDShowRemoveMatteOption: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
BIN
Assets/FlatKit/Demos/Common/Textures/Misc/Noise/Noise-02.png
Normal file
|
After Width: | Height: | Size: 127 KiB |
@@ -0,0 +1,88 @@
|
||||
fileFormatVersion: 2
|
||||
guid: eb443ff6ac43844798414b5604a5d6fc
|
||||
TextureImporter:
|
||||
fileIDToRecycleName: {}
|
||||
externalObjects: {}
|
||||
serializedVersion: 9
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 1
|
||||
sRGBTexture: 1
|
||||
linearTexture: 0
|
||||
fadeOut: 0
|
||||
borderMipMap: 0
|
||||
mipMapsPreserveCoverage: 0
|
||||
alphaTestReferenceValue: 0.5
|
||||
mipMapFadeDistanceStart: 1
|
||||
mipMapFadeDistanceEnd: 3
|
||||
bumpmap:
|
||||
convertToNormalMap: 0
|
||||
externalNormalMap: 0
|
||||
heightScale: 0.25
|
||||
normalMapFilter: 0
|
||||
isReadable: 0
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
grayScaleToAlpha: 0
|
||||
generateCubemap: 6
|
||||
cubemapConvolution: 0
|
||||
seamlessCubemap: 0
|
||||
textureFormat: 1
|
||||
maxTextureSize: 2048
|
||||
textureSettings:
|
||||
serializedVersion: 2
|
||||
filterMode: -1
|
||||
aniso: -1
|
||||
mipBias: -100
|
||||
wrapU: -1
|
||||
wrapV: -1
|
||||
wrapW: -1
|
||||
nPOTScale: 1
|
||||
lightmap: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 0
|
||||
spriteExtrude: 1
|
||||
spriteMeshType: 1
|
||||
alignment: 0
|
||||
spritePivot: {x: 0.5, y: 0.5}
|
||||
spritePixelsToUnits: 100
|
||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||
spriteGenerateFallbackPhysicsShape: 1
|
||||
alphaUsage: 1
|
||||
alphaIsTransparency: 0
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 0
|
||||
textureShape: 1
|
||||
singleChannelComponent: 0
|
||||
maxTextureSizeSet: 0
|
||||
compressionQualitySet: 0
|
||||
textureFormatSet: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 2
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID:
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
spritePackingTag:
|
||||
pSDRemoveMatte: 0
|
||||
pSDShowRemoveMatteOption: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
BIN
Assets/FlatKit/Demos/Common/Textures/Misc/Noise/Noise-03.png
Normal file
|
After Width: | Height: | Size: 252 KiB |
@@ -0,0 +1,88 @@
|
||||
fileFormatVersion: 2
|
||||
guid: e5ac8267ea3bd433c997fea203af21a6
|
||||
TextureImporter:
|
||||
fileIDToRecycleName: {}
|
||||
externalObjects: {}
|
||||
serializedVersion: 9
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 1
|
||||
sRGBTexture: 1
|
||||
linearTexture: 0
|
||||
fadeOut: 0
|
||||
borderMipMap: 0
|
||||
mipMapsPreserveCoverage: 0
|
||||
alphaTestReferenceValue: 0.5
|
||||
mipMapFadeDistanceStart: 1
|
||||
mipMapFadeDistanceEnd: 3
|
||||
bumpmap:
|
||||
convertToNormalMap: 0
|
||||
externalNormalMap: 0
|
||||
heightScale: 0.25
|
||||
normalMapFilter: 0
|
||||
isReadable: 0
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
grayScaleToAlpha: 0
|
||||
generateCubemap: 6
|
||||
cubemapConvolution: 0
|
||||
seamlessCubemap: 0
|
||||
textureFormat: 1
|
||||
maxTextureSize: 2048
|
||||
textureSettings:
|
||||
serializedVersion: 2
|
||||
filterMode: -1
|
||||
aniso: -1
|
||||
mipBias: -100
|
||||
wrapU: -1
|
||||
wrapV: -1
|
||||
wrapW: -1
|
||||
nPOTScale: 1
|
||||
lightmap: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 0
|
||||
spriteExtrude: 1
|
||||
spriteMeshType: 1
|
||||
alignment: 0
|
||||
spritePivot: {x: 0.5, y: 0.5}
|
||||
spritePixelsToUnits: 100
|
||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||
spriteGenerateFallbackPhysicsShape: 1
|
||||
alphaUsage: 1
|
||||
alphaIsTransparency: 0
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 0
|
||||
textureShape: 1
|
||||
singleChannelComponent: 0
|
||||
maxTextureSizeSet: 0
|
||||
compressionQualitySet: 0
|
||||
textureFormatSet: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 2
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID:
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
spritePackingTag:
|
||||
pSDRemoveMatte: 0
|
||||
pSDShowRemoveMatteOption: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
BIN
Assets/FlatKit/Demos/Common/Textures/Misc/Noise/Noise-04.png
Normal file
|
After Width: | Height: | Size: 30 KiB |
@@ -0,0 +1,88 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 225a346f2fd654e859ecc66a84844998
|
||||
TextureImporter:
|
||||
fileIDToRecycleName: {}
|
||||
externalObjects: {}
|
||||
serializedVersion: 9
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 1
|
||||
sRGBTexture: 1
|
||||
linearTexture: 0
|
||||
fadeOut: 0
|
||||
borderMipMap: 0
|
||||
mipMapsPreserveCoverage: 0
|
||||
alphaTestReferenceValue: 0.5
|
||||
mipMapFadeDistanceStart: 1
|
||||
mipMapFadeDistanceEnd: 3
|
||||
bumpmap:
|
||||
convertToNormalMap: 0
|
||||
externalNormalMap: 0
|
||||
heightScale: 0.25
|
||||
normalMapFilter: 0
|
||||
isReadable: 0
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
grayScaleToAlpha: 0
|
||||
generateCubemap: 6
|
||||
cubemapConvolution: 0
|
||||
seamlessCubemap: 0
|
||||
textureFormat: 1
|
||||
maxTextureSize: 2048
|
||||
textureSettings:
|
||||
serializedVersion: 2
|
||||
filterMode: -1
|
||||
aniso: -1
|
||||
mipBias: -100
|
||||
wrapU: -1
|
||||
wrapV: -1
|
||||
wrapW: -1
|
||||
nPOTScale: 1
|
||||
lightmap: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 0
|
||||
spriteExtrude: 1
|
||||
spriteMeshType: 1
|
||||
alignment: 0
|
||||
spritePivot: {x: 0.5, y: 0.5}
|
||||
spritePixelsToUnits: 100
|
||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||
spriteGenerateFallbackPhysicsShape: 1
|
||||
alphaUsage: 1
|
||||
alphaIsTransparency: 0
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 0
|
||||
textureShape: 1
|
||||
singleChannelComponent: 0
|
||||
maxTextureSizeSet: 0
|
||||
compressionQualitySet: 0
|
||||
textureFormatSet: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 2
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID:
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
spritePackingTag:
|
||||
pSDRemoveMatte: 0
|
||||
pSDShowRemoveMatteOption: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
BIN
Assets/FlatKit/Demos/Common/Textures/Misc/Noise/Noise-05.png
Normal file
|
After Width: | Height: | Size: 520 KiB |
@@ -0,0 +1,88 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 9b6f1d1fb45bc41ea899ec0aa1d82aa7
|
||||
TextureImporter:
|
||||
fileIDToRecycleName: {}
|
||||
externalObjects: {}
|
||||
serializedVersion: 9
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 1
|
||||
sRGBTexture: 1
|
||||
linearTexture: 0
|
||||
fadeOut: 0
|
||||
borderMipMap: 0
|
||||
mipMapsPreserveCoverage: 0
|
||||
alphaTestReferenceValue: 0.5
|
||||
mipMapFadeDistanceStart: 1
|
||||
mipMapFadeDistanceEnd: 3
|
||||
bumpmap:
|
||||
convertToNormalMap: 0
|
||||
externalNormalMap: 0
|
||||
heightScale: 0.25
|
||||
normalMapFilter: 0
|
||||
isReadable: 0
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
grayScaleToAlpha: 0
|
||||
generateCubemap: 6
|
||||
cubemapConvolution: 0
|
||||
seamlessCubemap: 0
|
||||
textureFormat: 1
|
||||
maxTextureSize: 2048
|
||||
textureSettings:
|
||||
serializedVersion: 2
|
||||
filterMode: -1
|
||||
aniso: -1
|
||||
mipBias: -100
|
||||
wrapU: -1
|
||||
wrapV: -1
|
||||
wrapW: -1
|
||||
nPOTScale: 1
|
||||
lightmap: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 0
|
||||
spriteExtrude: 1
|
||||
spriteMeshType: 1
|
||||
alignment: 0
|
||||
spritePivot: {x: 0.5, y: 0.5}
|
||||
spritePixelsToUnits: 100
|
||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||
spriteGenerateFallbackPhysicsShape: 1
|
||||
alphaUsage: 1
|
||||
alphaIsTransparency: 0
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 0
|
||||
textureShape: 1
|
||||
singleChannelComponent: 0
|
||||
maxTextureSizeSet: 0
|
||||
compressionQualitySet: 0
|
||||
textureFormatSet: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 2
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID:
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
spritePackingTag:
|
||||
pSDRemoveMatte: 0
|
||||
pSDShowRemoveMatteOption: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
BIN
Assets/FlatKit/Demos/Common/Textures/Misc/Noise/Noise-06.png
Normal file
|
After Width: | Height: | Size: 59 KiB |
@@ -0,0 +1,88 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 938f23ae374934eabbc4c954db1cae99
|
||||
TextureImporter:
|
||||
fileIDToRecycleName: {}
|
||||
externalObjects: {}
|
||||
serializedVersion: 9
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 1
|
||||
sRGBTexture: 1
|
||||
linearTexture: 0
|
||||
fadeOut: 0
|
||||
borderMipMap: 0
|
||||
mipMapsPreserveCoverage: 0
|
||||
alphaTestReferenceValue: 0.5
|
||||
mipMapFadeDistanceStart: 1
|
||||
mipMapFadeDistanceEnd: 3
|
||||
bumpmap:
|
||||
convertToNormalMap: 0
|
||||
externalNormalMap: 0
|
||||
heightScale: 0.25
|
||||
normalMapFilter: 0
|
||||
isReadable: 0
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
grayScaleToAlpha: 0
|
||||
generateCubemap: 6
|
||||
cubemapConvolution: 0
|
||||
seamlessCubemap: 0
|
||||
textureFormat: 1
|
||||
maxTextureSize: 2048
|
||||
textureSettings:
|
||||
serializedVersion: 2
|
||||
filterMode: -1
|
||||
aniso: -1
|
||||
mipBias: -100
|
||||
wrapU: -1
|
||||
wrapV: -1
|
||||
wrapW: -1
|
||||
nPOTScale: 1
|
||||
lightmap: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 0
|
||||
spriteExtrude: 1
|
||||
spriteMeshType: 1
|
||||
alignment: 0
|
||||
spritePivot: {x: 0.5, y: 0.5}
|
||||
spritePixelsToUnits: 100
|
||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||
spriteGenerateFallbackPhysicsShape: 1
|
||||
alphaUsage: 1
|
||||
alphaIsTransparency: 0
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 0
|
||||
textureShape: 1
|
||||
singleChannelComponent: 0
|
||||
maxTextureSizeSet: 0
|
||||
compressionQualitySet: 0
|
||||
textureFormatSet: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 2
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID:
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
spritePackingTag:
|
||||
pSDRemoveMatte: 0
|
||||
pSDShowRemoveMatteOption: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
BIN
Assets/FlatKit/Demos/Common/Textures/Misc/Noise/Noise-07.png
Normal file
|
After Width: | Height: | Size: 157 KiB |
@@ -0,0 +1,88 @@
|
||||
fileFormatVersion: 2
|
||||
guid: a45f94196032743bb8ed908b5fd3df9c
|
||||
TextureImporter:
|
||||
fileIDToRecycleName: {}
|
||||
externalObjects: {}
|
||||
serializedVersion: 9
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 1
|
||||
sRGBTexture: 1
|
||||
linearTexture: 0
|
||||
fadeOut: 0
|
||||
borderMipMap: 0
|
||||
mipMapsPreserveCoverage: 0
|
||||
alphaTestReferenceValue: 0.5
|
||||
mipMapFadeDistanceStart: 1
|
||||
mipMapFadeDistanceEnd: 3
|
||||
bumpmap:
|
||||
convertToNormalMap: 0
|
||||
externalNormalMap: 0
|
||||
heightScale: 0.25
|
||||
normalMapFilter: 0
|
||||
isReadable: 0
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
grayScaleToAlpha: 0
|
||||
generateCubemap: 6
|
||||
cubemapConvolution: 0
|
||||
seamlessCubemap: 0
|
||||
textureFormat: 1
|
||||
maxTextureSize: 2048
|
||||
textureSettings:
|
||||
serializedVersion: 2
|
||||
filterMode: -1
|
||||
aniso: -1
|
||||
mipBias: -100
|
||||
wrapU: -1
|
||||
wrapV: -1
|
||||
wrapW: -1
|
||||
nPOTScale: 1
|
||||
lightmap: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 0
|
||||
spriteExtrude: 1
|
||||
spriteMeshType: 1
|
||||
alignment: 0
|
||||
spritePivot: {x: 0.5, y: 0.5}
|
||||
spritePixelsToUnits: 100
|
||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||
spriteGenerateFallbackPhysicsShape: 1
|
||||
alphaUsage: 1
|
||||
alphaIsTransparency: 0
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 0
|
||||
textureShape: 1
|
||||
singleChannelComponent: 0
|
||||
maxTextureSizeSet: 0
|
||||
compressionQualitySet: 0
|
||||
textureFormatSet: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 2
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID:
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
spritePackingTag:
|
||||
pSDRemoveMatte: 0
|
||||
pSDShowRemoveMatteOption: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
BIN
Assets/FlatKit/Demos/Common/Textures/Misc/Waterfall-01.png
Normal file
|
After Width: | Height: | Size: 18 KiB |
110
Assets/FlatKit/Demos/Common/Textures/Misc/Waterfall-01.png.meta
Normal file
@@ -0,0 +1,110 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 863be0e02a08d44aab03ed9156efe1c5
|
||||
TextureImporter:
|
||||
fileIDToRecycleName: {}
|
||||
externalObjects: {}
|
||||
serializedVersion: 9
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 1
|
||||
sRGBTexture: 1
|
||||
linearTexture: 0
|
||||
fadeOut: 0
|
||||
borderMipMap: 0
|
||||
mipMapsPreserveCoverage: 0
|
||||
alphaTestReferenceValue: 0.5
|
||||
mipMapFadeDistanceStart: 1
|
||||
mipMapFadeDistanceEnd: 3
|
||||
bumpmap:
|
||||
convertToNormalMap: 0
|
||||
externalNormalMap: 0
|
||||
heightScale: 0.25
|
||||
normalMapFilter: 0
|
||||
isReadable: 0
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
grayScaleToAlpha: 0
|
||||
generateCubemap: 6
|
||||
cubemapConvolution: 0
|
||||
seamlessCubemap: 0
|
||||
textureFormat: 1
|
||||
maxTextureSize: 2048
|
||||
textureSettings:
|
||||
serializedVersion: 2
|
||||
filterMode: 2
|
||||
aniso: 14
|
||||
mipBias: -100
|
||||
wrapU: 0
|
||||
wrapV: 0
|
||||
wrapW: 0
|
||||
nPOTScale: 1
|
||||
lightmap: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 0
|
||||
spriteExtrude: 1
|
||||
spriteMeshType: 1
|
||||
alignment: 0
|
||||
spritePivot: {x: 0.5, y: 0.5}
|
||||
spritePixelsToUnits: 100
|
||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||
spriteGenerateFallbackPhysicsShape: 1
|
||||
alphaUsage: 1
|
||||
alphaIsTransparency: 0
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 0
|
||||
textureShape: 1
|
||||
singleChannelComponent: 0
|
||||
maxTextureSizeSet: 0
|
||||
compressionQualitySet: 0
|
||||
textureFormatSet: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 2
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
- serializedVersion: 2
|
||||
buildTarget: Standalone
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
- serializedVersion: 2
|
||||
buildTarget: WebGL
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID:
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
spritePackingTag:
|
||||
pSDRemoveMatte: 0
|
||||
pSDShowRemoveMatteOption: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
8
Assets/FlatKit/Demos/Common/URP Configs.meta
Normal file
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 61f7a0a3a915e4c0996f2c32edf64837
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,144 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !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: 8a6f656ab8114e939b71b289ffd9d7b2, type: 3}
|
||||
m_Name: '[FlatKit] Example Fog Settings'
|
||||
m_EditorClassIdentifier:
|
||||
useDistance: 1
|
||||
distanceGradient:
|
||||
serializedVersion: 2
|
||||
key0: {r: 0, g: 0.85213137, b: 1, a: 0.09803922}
|
||||
key1: {r: 1, g: 0.99326676, b: 0.5707547, a: 1}
|
||||
key2: {r: 0, g: 0, b: 0, a: 1}
|
||||
key3: {r: 0, g: 0, b: 0, a: 0}
|
||||
key4: {r: 0, g: 0, b: 0, a: 0}
|
||||
key5: {r: 0, g: 0, b: 0, a: 0}
|
||||
key6: {r: 0, g: 0, b: 0, a: 0}
|
||||
key7: {r: 0, g: 0, b: 0, a: 0}
|
||||
ctime0: 0
|
||||
ctime1: 64379
|
||||
ctime2: 0
|
||||
ctime3: 0
|
||||
ctime4: 0
|
||||
ctime5: 0
|
||||
ctime6: 0
|
||||
ctime7: 0
|
||||
atime0: 0
|
||||
atime1: 20817
|
||||
atime2: 65535
|
||||
atime3: 0
|
||||
atime4: 0
|
||||
atime5: 0
|
||||
atime6: 0
|
||||
atime7: 0
|
||||
m_Mode: 0
|
||||
m_ColorSpace: -1
|
||||
m_NumColorKeys: 2
|
||||
m_NumAlphaKeys: 3
|
||||
near: 30
|
||||
far: 150
|
||||
distanceFogIntensity: 0.5
|
||||
useHeight: 1
|
||||
heightGradient:
|
||||
serializedVersion: 2
|
||||
key0: {r: 0.0745098, g: 0.94509804, b: 0.9280485, a: 0}
|
||||
key1: {r: 0, g: 0.848485, b: 1, a: 1}
|
||||
key2: {r: 0.6634565, g: 0.94509804, b: 0.0745098, a: 1}
|
||||
key3: {r: 0, g: 0, b: 0, a: 0}
|
||||
key4: {r: 0, g: 0, b: 0, a: 0}
|
||||
key5: {r: 0, g: 0, b: 0, a: 0}
|
||||
key6: {r: 0, g: 0, b: 0, a: 0}
|
||||
key7: {r: 0, g: 0, b: 0, a: 0}
|
||||
ctime0: 0
|
||||
ctime1: 18504
|
||||
ctime2: 65535
|
||||
ctime3: 0
|
||||
ctime4: 0
|
||||
ctime5: 0
|
||||
ctime6: 0
|
||||
ctime7: 0
|
||||
atime0: 0
|
||||
atime1: 22937
|
||||
atime2: 65535
|
||||
atime3: 0
|
||||
atime4: 0
|
||||
atime5: 0
|
||||
atime6: 0
|
||||
atime7: 0
|
||||
m_Mode: 0
|
||||
m_ColorSpace: -1
|
||||
m_NumColorKeys: 3
|
||||
m_NumAlphaKeys: 3
|
||||
low: 5
|
||||
high: 35
|
||||
heightFogIntensity: 0.5
|
||||
cameraRelativePosition: 0
|
||||
distanceHeightBlend: 0.5
|
||||
renderEvent: 550
|
||||
applyInSceneView: 1
|
||||
effectMaterial: {fileID: 3809722197779856838}
|
||||
--- !u!21 &3809722197779856838
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: Effect Material
|
||||
m_Shader: {fileID: -6465566751694194690, guid: c77db07224d9f784d90d7eb0e84c57f7, type: 3}
|
||||
m_Parent: {fileID: 0}
|
||||
m_ModifiedSerializedProperties: 0
|
||||
m_ValidKeywords:
|
||||
- USE_DISTANCE_FOG
|
||||
- USE_HEIGHT_FOG
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses: []
|
||||
m_LockedProperties:
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _DistanceLUT:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _HeightLUT:
|
||||
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:
|
||||
- _DistanceFogIntensity: 0.5
|
||||
- _DistanceHeightBlend: 0.5
|
||||
- _Far: 150
|
||||
- _HeightFogIntensity: 0.5
|
||||
- _HighWorldY: 35
|
||||
- _LowWorldY: 5
|
||||
- _Near: 30
|
||||
m_Colors: []
|
||||
m_BuildTextureStacks: []
|
||||
m_AllowLocking: 1
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: f68defe9b6889484787a8d20c715e802
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 11400000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,85 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!21 &-3130267085085746722
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: Effect Material
|
||||
m_Shader: {fileID: -6465566751694194690, guid: f968e7540d632cc40b5ca8b340a3e718, type: 3}
|
||||
m_Parent: {fileID: 0}
|
||||
m_ModifiedSerializedProperties: 0
|
||||
m_ValidKeywords:
|
||||
- OUTLINE_USE_COLOR
|
||||
- OUTLINE_USE_NORMALS
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses: []
|
||||
m_LockedProperties:
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- 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:
|
||||
- _ColorThresholdMax: 0.25
|
||||
- _ColorThresholdMin: 0
|
||||
- _DepthThresholdMax: 0.1
|
||||
- _DepthThresholdMin: 0.1
|
||||
- _FadeRangeEnd: 50
|
||||
- _FadeRangeStart: 10
|
||||
- _NormalThresholdMax: 2
|
||||
- _NormalThresholdMin: 1
|
||||
- _Thickness: 2
|
||||
m_Colors:
|
||||
- _EdgeColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
m_BuildTextureStacks: []
|
||||
m_AllowLocking: 1
|
||||
--- !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: 130791d3e20646d2b6d81688877b0909, type: 3}
|
||||
m_Name: '[FlatKit] Example Outline Settings'
|
||||
m_EditorClassIdentifier:
|
||||
edgeColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
thickness: 2
|
||||
resolutionInvariant: 0
|
||||
fadeWithDistance: 0
|
||||
fadeRangeStart: 10
|
||||
fadeRangeEnd: 50
|
||||
useDepth: 0
|
||||
minDepthThreshold: 0.1
|
||||
maxDepthThreshold: 0.1
|
||||
useNormals: 1
|
||||
minNormalsThreshold: 1
|
||||
maxNormalsThreshold: 2
|
||||
useColor: 1
|
||||
minColorThreshold: 0
|
||||
maxColorThreshold: 0.25
|
||||
renderEvent: 500
|
||||
outlineOnly: 0
|
||||
applyInSceneView: 1
|
||||
effectMaterial: {fileID: -3130267085085746722}
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: ff3dfd77429d64938a26bd54c27dacd8
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 11400000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,147 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!114 &-6088551604455195741
|
||||
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: d9dd956d9a1644821b4952bf41df25ef, type: 3}
|
||||
m_Name: FlatKitDepthNormals
|
||||
m_EditorClassIdentifier:
|
||||
m_Active: 0
|
||||
overrideRenderEvent: 0
|
||||
renderEvent: 0
|
||||
--- !u!114 &-2401278517541482506
|
||||
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: 1cca7768aaaea4b0081f14e7f9d4b5ad, type: 3}
|
||||
m_Name: FlatKitOutline
|
||||
m_EditorClassIdentifier:
|
||||
m_Active: 0
|
||||
settings: {fileID: 11400000, guid: ff3dfd77429d64938a26bd54c27dacd8, type: 2}
|
||||
--- !u!114 &-1344586528338988631
|
||||
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: 770acbaed70db4ad696458511aa3f084, type: 3}
|
||||
m_Name: FlatKitFog
|
||||
m_EditorClassIdentifier:
|
||||
m_Active: 0
|
||||
settings: {fileID: 11400000, guid: f68defe9b6889484787a8d20c715e802, type: 2}
|
||||
--- !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: de640fe3d0db1804a85f9fc8f5cadab6, type: 3}
|
||||
m_Name: '[FlatKit] Example Renderer'
|
||||
m_EditorClassIdentifier:
|
||||
debugShaders:
|
||||
debugReplacementPS: {fileID: 4800000, guid: cf852408f2e174538bcd9b7fda1c5ae7, type: 3}
|
||||
hdrDebugViewPS: {fileID: 4800000, guid: 573620ae32aec764abd4d728906d2587, type: 3}
|
||||
probeVolumeSamplingDebugComputeShader: {fileID: 7200000, guid: 53626a513ea68ce47b59dc1299fe3959, type: 3}
|
||||
probeVolumeResources:
|
||||
probeVolumeDebugShader: {fileID: 0}
|
||||
probeVolumeFragmentationDebugShader: {fileID: 0}
|
||||
probeVolumeOffsetDebugShader: {fileID: 0}
|
||||
probeVolumeSamplingDebugShader: {fileID: 0}
|
||||
probeSamplingDebugMesh: {fileID: 0}
|
||||
probeSamplingDebugTexture: {fileID: 0}
|
||||
probeVolumeBlendStatesCS: {fileID: 0}
|
||||
m_RendererFeatures:
|
||||
- {fileID: -1344586528338988631}
|
||||
- {fileID: -2401278517541482506}
|
||||
- {fileID: 4523260582098458979}
|
||||
m_RendererFeatureMap: a9319428ad1157edf6cf292be9f1acde
|
||||
m_UseNativeRenderPass: 0
|
||||
xrSystemData: {fileID: 11400000, guid: 60e1133243b97e347b653163a8c01b64, type: 2}
|
||||
postProcessData: {fileID: 11400000, guid: 41439944d30ece34e96484bdb6645b55, type: 2}
|
||||
m_AssetVersion: 3
|
||||
m_PrepassLayerMask:
|
||||
serializedVersion: 2
|
||||
m_Bits: 4294967295
|
||||
m_OpaqueLayerMask:
|
||||
serializedVersion: 2
|
||||
m_Bits: 4294967295
|
||||
m_TransparentLayerMask:
|
||||
serializedVersion: 2
|
||||
m_Bits: 4294967295
|
||||
m_DefaultStencilState:
|
||||
overrideStencilState: 0
|
||||
stencilReference: 0
|
||||
stencilCompareFunction: 8
|
||||
passOperation: 0
|
||||
failOperation: 0
|
||||
zFailOperation: 0
|
||||
m_ShadowTransparentReceive: 1
|
||||
m_RenderingMode: 0
|
||||
m_DepthPrimingMode: 0
|
||||
m_CopyDepthMode: 0
|
||||
m_DepthAttachmentFormat: 0
|
||||
m_DepthTextureFormat: 0
|
||||
m_AccurateGbufferNormals: 0
|
||||
m_IntermediateTextureMode: 1
|
||||
--- !u!114 &4523260582098458979
|
||||
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: 576f949be0794f548b825c9ce6f556db, type: 3}
|
||||
m_Name: Flat Kit Per Object Outline
|
||||
m_EditorClassIdentifier: Unity.RenderPipelines.Universal.Runtime::FlatKit.ObjectOutlineRendererFeature
|
||||
m_Active: 1
|
||||
settings:
|
||||
passTag: RenderObjectsFeature
|
||||
Event: 300
|
||||
filterSettings:
|
||||
RenderQueueType: 0
|
||||
LayerMask:
|
||||
serializedVersion: 2
|
||||
m_Bits: 4294967295
|
||||
PassNames:
|
||||
- Outline
|
||||
overrideMaterial: {fileID: 0}
|
||||
overrideMaterialPassIndex: 0
|
||||
overrideShader: {fileID: 4800000, guid: bee44b4a58655ee4cbff107302a3e131, type: 3}
|
||||
overrideShaderPassIndex: 1
|
||||
overrideMode: 2
|
||||
overrideDepthState: 0
|
||||
depthCompareFunction: 4
|
||||
enableWrite: 1
|
||||
stencilSettings:
|
||||
overrideStencilState: 0
|
||||
stencilReference: 0
|
||||
stencilCompareFunction: 8
|
||||
passOperation: 0
|
||||
failOperation: 0
|
||||
zFailOperation: 0
|
||||
cameraSettings:
|
||||
overrideCamera: 0
|
||||
restoreCamera: 1
|
||||
offset: {x: 0, y: 0, z: 0, w: 0}
|
||||
cameraFieldOfView: 60
|
||||
materials: []
|
||||
autoReferenceMaterials: 1
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 4cbdadf2d11484d7aab34b901b5d9c52
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 11400000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,143 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !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: bf2edee5c58d82540a51f03df9d42094, type: 3}
|
||||
m_Name: '[FlatKit] Example URP Asset'
|
||||
m_EditorClassIdentifier:
|
||||
k_AssetVersion: 13
|
||||
k_AssetPreviousVersion: 13
|
||||
m_RendererType: 1
|
||||
m_RendererData: {fileID: 11400000, guid: 618d298269e66c542b306de85db1faea, type: 2}
|
||||
m_RendererDataList:
|
||||
- {fileID: 11400000, guid: 4cbdadf2d11484d7aab34b901b5d9c52, type: 2}
|
||||
m_DefaultRendererIndex: 0
|
||||
m_RequireDepthTexture: 1
|
||||
m_RequireOpaqueTexture: 1
|
||||
m_OpaqueDownsampling: 0
|
||||
m_SupportsTerrainHoles: 1
|
||||
m_SupportsHDR: 1
|
||||
m_HDRColorBufferPrecision: 0
|
||||
m_MSAA: 1
|
||||
m_RenderScale: 1
|
||||
m_UpscalingFilter: 0
|
||||
m_FsrOverrideSharpness: 0
|
||||
m_FsrSharpness: 0.92
|
||||
m_EnableLODCrossFade: 1
|
||||
m_LODCrossFadeDitheringType: 1
|
||||
m_ShEvalMode: 0
|
||||
m_LightProbeSystem: 0
|
||||
m_ProbeVolumeMemoryBudget: 1024
|
||||
m_ProbeVolumeBlendingMemoryBudget: 256
|
||||
m_SupportProbeVolumeGPUStreaming: 0
|
||||
m_SupportProbeVolumeDiskStreaming: 0
|
||||
m_SupportProbeVolumeScenarios: 0
|
||||
m_SupportProbeVolumeScenarioBlending: 0
|
||||
m_ProbeVolumeSHBands: 1
|
||||
m_MainLightRenderingMode: 1
|
||||
m_MainLightShadowsSupported: 1
|
||||
m_MainLightShadowmapResolution: 2048
|
||||
m_AdditionalLightsRenderingMode: 1
|
||||
m_AdditionalLightsPerObjectLimit: 4
|
||||
m_AdditionalLightShadowsSupported: 1
|
||||
m_AdditionalLightsShadowmapResolution: 512
|
||||
m_AdditionalLightsShadowResolutionTierLow: 256
|
||||
m_AdditionalLightsShadowResolutionTierMedium: 512
|
||||
m_AdditionalLightsShadowResolutionTierHigh: 1024
|
||||
m_ReflectionProbeBlending: 0
|
||||
m_ReflectionProbeBoxProjection: 0
|
||||
m_ReflectionProbeAtlas: 0
|
||||
m_ShadowDistance: 100
|
||||
m_ShadowCascadeCount: 4
|
||||
m_Cascade2Split: 0.25
|
||||
m_Cascade3Split: {x: 0.1, y: 0.3}
|
||||
m_Cascade4Split: {x: 0.067, y: 0.2, z: 0.467}
|
||||
m_CascadeBorder: 0.2
|
||||
m_ShadowDepthBias: 1
|
||||
m_ShadowNormalBias: 1
|
||||
m_AnyShadowsSupported: 1
|
||||
m_SoftShadowsSupported: 1
|
||||
m_ConservativeEnclosingSphere: 0
|
||||
m_NumIterationsEnclosingSphere: 64
|
||||
m_SoftShadowQuality: 2
|
||||
m_AdditionalLightsCookieResolution: 2048
|
||||
m_AdditionalLightsCookieFormat: 3
|
||||
m_UseSRPBatcher: 1
|
||||
m_SupportsDynamicBatching: 1
|
||||
m_MixedLightingSupported: 1
|
||||
m_SupportsLightCookies: 1
|
||||
m_SupportsLightLayers: 0
|
||||
m_DebugLevel: 0
|
||||
m_StoreActionsOptimization: 0
|
||||
m_UseAdaptivePerformance: 1
|
||||
m_ColorGradingMode: 0
|
||||
m_ColorGradingLutSize: 32
|
||||
m_AllowPostProcessAlphaOutput: 0
|
||||
m_UseFastSRGBLinearConversion: 0
|
||||
m_SupportDataDrivenLensFlare: 1
|
||||
m_SupportScreenSpaceLensFlare: 1
|
||||
m_GPUResidentDrawerMode: 0
|
||||
m_SmallMeshScreenPercentage: 0
|
||||
m_GPUResidentDrawerEnableOcclusionCullingInCameras: 0
|
||||
m_ShadowType: 1
|
||||
m_LocalShadowsSupported: 0
|
||||
m_LocalShadowsAtlasResolution: 256
|
||||
m_MaxPixelLights: 0
|
||||
m_ShadowAtlasResolution: 256
|
||||
m_VolumeFrameworkUpdateMode: 0
|
||||
m_VolumeProfile: {fileID: 0}
|
||||
apvScenesData:
|
||||
obsoleteSceneBounds:
|
||||
m_Keys: []
|
||||
m_Values: []
|
||||
obsoleteHasProbeVolumes:
|
||||
m_Keys: []
|
||||
m_Values:
|
||||
m_PrefilteringModeMainLightShadows: 3
|
||||
m_PrefilteringModeAdditionalLight: 3
|
||||
m_PrefilteringModeAdditionalLightShadows: 2
|
||||
m_PrefilterXRKeywords: 1
|
||||
m_PrefilteringModeForwardPlus: 0
|
||||
m_PrefilteringModeDeferredRendering: 0
|
||||
m_PrefilteringModeScreenSpaceOcclusion: 0
|
||||
m_PrefilterDebugKeywords: 1
|
||||
m_PrefilterWriteRenderingLayers: 1
|
||||
m_PrefilterHDROutput: 1
|
||||
m_PrefilterAlphaOutput: 1
|
||||
m_PrefilterSSAODepthNormals: 1
|
||||
m_PrefilterSSAOSourceDepthLow: 1
|
||||
m_PrefilterSSAOSourceDepthMedium: 1
|
||||
m_PrefilterSSAOSourceDepthHigh: 1
|
||||
m_PrefilterSSAOInterleaved: 1
|
||||
m_PrefilterSSAOBlueNoise: 1
|
||||
m_PrefilterSSAOSampleCountLow: 1
|
||||
m_PrefilterSSAOSampleCountMedium: 1
|
||||
m_PrefilterSSAOSampleCountHigh: 1
|
||||
m_PrefilterDBufferMRT1: 1
|
||||
m_PrefilterDBufferMRT2: 1
|
||||
m_PrefilterDBufferMRT3: 1
|
||||
m_PrefilterSoftShadowsQualityLow: 1
|
||||
m_PrefilterSoftShadowsQualityMedium: 1
|
||||
m_PrefilterSoftShadowsQualityHigh: 1
|
||||
m_PrefilterSoftShadows: 0
|
||||
m_PrefilterScreenCoord: 1
|
||||
m_PrefilterScreenSpaceIrradiance: 0
|
||||
m_PrefilterNativeRenderPass: 1
|
||||
m_PrefilterUseLegacyLightmaps: 0
|
||||
m_PrefilterBicubicLightmapSampling: 1
|
||||
m_PrefilterReflectionProbeRotation: 0
|
||||
m_PrefilterReflectionProbeBlending: 0
|
||||
m_PrefilterReflectionProbeBoxProjection: 0
|
||||
m_PrefilterReflectionProbeAtlas: 0
|
||||
m_ShaderVariantLogLevel: 0
|
||||
m_ShadowCascades: 2
|
||||
m_Textures:
|
||||
blueNoise64LTex: {fileID: 2800000, guid: e3d24661c1e055f45a7560c033dbb837, type: 3}
|
||||
bayerMatrixTex: {fileID: 2800000, guid: f9ee4ed84c1d10c49aabb9b210b0fc44, type: 3}
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: ecbd363870e07455ea237f5753668d30
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 11400000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
8
Assets/FlatKit/Demos/[Demo] Car.meta
Normal file
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 5f453d6dbe62e4e95b74f45db9f2ddeb
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
2000
Assets/FlatKit/Demos/[Demo] Car/Car - Scene - Set1.unity
Normal file
@@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 312064dbeb83a41b7a5277dc9f4ada35
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
1547
Assets/FlatKit/Demos/[Demo] Car/Car - Scene - Set2.unity
Normal file
@@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 91c2694f0a7234fa990a8a12b879aa58
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
1248
Assets/FlatKit/Demos/[Demo] Car/Car - Scene - Set3.unity
Normal file
@@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 26e7b998e4722451fa7d94993d1c9f57
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
2318
Assets/FlatKit/Demos/[Demo] Car/Car - Scene - Set4.unity
Normal file
@@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 1147a6bb4101f4e35a7cc096b1a00aa0
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
1543
Assets/FlatKit/Demos/[Demo] Car/Car - Scene - Set5.unity
Normal file
@@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 928e1795041b74c2688a640bc5de1d9c
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
8
Assets/FlatKit/Demos/[Demo] Car/Car-Materials.meta
Normal file
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 06f5a0b8db5944d2fba01db7e77085ef
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: c4abdf50befc541179e3d98877478434
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,192 @@
|
||||
%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: Car-Set1-Car1Body
|
||||
m_Shader: {fileID: 4800000, guid: bee44b4a58655ee4cbff107302a3e131, type: 3}
|
||||
m_Parent: {fileID: 0}
|
||||
m_ModifiedSerializedProperties: 0
|
||||
m_ValidKeywords:
|
||||
- DR_CEL_EXTRA_ON
|
||||
- DR_GRADIENT_ON
|
||||
- DR_RIM_ON
|
||||
- DR_SPECULAR_ON
|
||||
- _CELPRIMARYMODE_SINGLE
|
||||
- _DETAILMAPBLENDINGMODE_MULTIPLY
|
||||
- _GRADIENTSPACE_WORLD
|
||||
- _OUTLINESPACE_SCREEN
|
||||
- _TEXTUREBLENDINGMODE_MULTIPLY
|
||||
- _UNITYSHADOWMODE_MULTIPLY
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 1
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses:
|
||||
- SRPDEFAULTUNLIT
|
||||
m_LockedProperties:
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _BaseMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BumpMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _CelCurveTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _CelStepTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
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}
|
||||
- _DetailMap:
|
||||
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: 0}
|
||||
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}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _AlphaClip: 0
|
||||
- _BaseMapPremultiply: 0
|
||||
- _Blend: 0
|
||||
- _BumpScale: 1
|
||||
- _CameraDistanceImpact: 0
|
||||
- _CelExtraEnabled: 1
|
||||
- _CelNumSteps: 3
|
||||
- _CelPrimaryEnabled: 0
|
||||
- _CelPrimaryMode: 1
|
||||
- _Cull: 2
|
||||
- _Cutoff: 0.5
|
||||
- _DetailMapBlendingMode: 0
|
||||
- _DetailMapImpact: 0
|
||||
- _DetailNormalMapScale: 1
|
||||
- _DstBlend: 0
|
||||
- _FlatRimAmount: 0.5
|
||||
- _FlatRimEdgeSmoothness: 0.279
|
||||
- _FlatRimEnabled: 1
|
||||
- _FlatRimLightAlign: 0
|
||||
- _FlatRimSize: 0.174
|
||||
- _FlatShadowsEnabled: 1
|
||||
- _FlatSmoothness: 0.362
|
||||
- _FlatSpecularEdgeSmoothness: 0.897
|
||||
- _FlatSpecularEnabled: 1
|
||||
- _FlatSpecularSize: 0.1
|
||||
- _FlatSpecularSmoothness: 0.5
|
||||
- _Flatness: 1
|
||||
- _FlatnessExtra: 1
|
||||
- _FlatnessSecondary: 1
|
||||
- _GlossMapScale: 1
|
||||
- _Glossiness: 0
|
||||
- _GlossyReflections: 1
|
||||
- _GradientAngle: 0
|
||||
- _GradientCenterX: 0
|
||||
- _GradientCenterY: 0
|
||||
- _GradientEnabled: 1
|
||||
- _GradientEnd: 0.55
|
||||
- _GradientSize: 10
|
||||
- _GradientSpace: 0
|
||||
- _GradientStart: 1.17
|
||||
- _LightContribution: 0.5
|
||||
- _LightFalloffSize: 0.0001
|
||||
- _LightmapDirectionPitch: 0
|
||||
- _LightmapDirectionYaw: 0
|
||||
- _Metallic: 0
|
||||
- _Mode: 0
|
||||
- _OcclusionStrength: 1
|
||||
- _OutlineDepthOffset: 0
|
||||
- _OutlineEnabled: 0
|
||||
- _OutlineScale: 1
|
||||
- _OutlineSpace: 0
|
||||
- _OutlineWidth: 1
|
||||
- _OverrideLightmapDir: 0
|
||||
- _OverrideShadows: 1
|
||||
- _OverrideShadowsEnabled: 1
|
||||
- _Parallax: 0.02
|
||||
- _QueueOffset: 0
|
||||
- _ReceiveShadows: 1
|
||||
- _RimEnabled: 1
|
||||
- _SecondaryColor: 1
|
||||
- _SecondaryColorEnabled: 1
|
||||
- _SelfShadingSize: -0.93
|
||||
- _SelfShadingSizeExtra: 0.5
|
||||
- _ShadowEdgeSize: 0.05
|
||||
- _ShadowEdgeSizeExtra: 0.05
|
||||
- _ShadowEdgeSmoothness: 0.071
|
||||
- _ShadowFalloff: 0.01
|
||||
- _SmoothnessTextureChannel: 0
|
||||
- _SpecularEnabled: 1
|
||||
- _SpecularHighlights: 1
|
||||
- _SrcBlend: 1
|
||||
- _Surface: 0
|
||||
- _TextureBlendingMode: 0
|
||||
- _TextureImpact: 1
|
||||
- _UVSec: 0
|
||||
- _UnityShadowMode: 1
|
||||
- _UnityShadowOcclusion: 0
|
||||
- _UnityShadowPower: 0.2
|
||||
- _UnityShadowSharpness: 1
|
||||
- _VertexColorsEnabled: 0
|
||||
- _VertexExtrusionSmoothNormals: 0
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _BaseColor: {r: 0.8980392, g: 0.67660296, b: 0, a: 1}
|
||||
- _Color: {r: 0.8980392, g: 0.67660296, b: 0, a: 1}
|
||||
- _ColorCelShadow: {r: 0.49056602, g: 0.34478462, b: 0.4476891, a: 1}
|
||||
- _ColorDim: {r: 0.85, g: 0.85, b: 0.85, a: 0.85}
|
||||
- _ColorDimCurve: {r: 0.85, g: 0.85, b: 0.85, a: 0.85}
|
||||
- _ColorDimExtra: {r: 1, g: 0, b: 0.029372692, a: 0.85}
|
||||
- _ColorDimSteps: {r: 0.85, g: 0.85, b: 0.85, a: 0.85}
|
||||
- _ColorGradient: {r: 1, g: 0.43189976, b: 0, a: 1}
|
||||
- _ColorSecondary: {r: 1, g: 0.55879205, b: 0, a: 1}
|
||||
- _ColorShadow: {r: 0.5, g: 0.5, b: 0.5, a: 1}
|
||||
- _ColorShadows: {r: 0.5471698, g: 0.37346402, b: 0.26584196, a: 1}
|
||||
- _DetailMapColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _EmissionColor: {r: 4.9245777, g: 0, b: 0, a: 1}
|
||||
- _FlatRimColor: {r: 1, g: 0.91906786, b: 0.5518868, a: 1}
|
||||
- _FlatSpecularColor: {r: 1, g: 0.90740365, b: 0.3915094, a: 1}
|
||||
- _LightmapDirection: {r: 0, g: 1, b: 0, a: 0}
|
||||
- _OutlineColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _UnityShadowColor: {r: 0.65, g: 0.65, b: 0.65, a: 1}
|
||||
m_BuildTextureStacks: []
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 8f00bde2c4e76407f9e853cd7cba5c25
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,189 @@
|
||||
%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: Car-Set1-Car1Chrome
|
||||
m_Shader: {fileID: 4800000, guid: bee44b4a58655ee4cbff107302a3e131, type: 3}
|
||||
m_Parent: {fileID: 0}
|
||||
m_ModifiedSerializedProperties: 0
|
||||
m_ValidKeywords:
|
||||
- DR_CEL_EXTRA_ON
|
||||
- DR_SPECULAR_ON
|
||||
- _CELPRIMARYMODE_SINGLE
|
||||
- _DETAILMAPBLENDINGMODE_MULTIPLY
|
||||
- _GRADIENTSPACE_WORLD
|
||||
- _OUTLINESPACE_SCREEN
|
||||
- _TEXTUREBLENDINGMODE_MULTIPLY
|
||||
- _UNITYSHADOWMODE_MULTIPLY
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 1
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses:
|
||||
- SRPDEFAULTUNLIT
|
||||
m_LockedProperties:
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _BaseMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BumpMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _CelCurveTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _CelStepTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
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}
|
||||
- _DetailMap:
|
||||
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: 0}
|
||||
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}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _AlphaClip: 0
|
||||
- _BaseMapPremultiply: 0
|
||||
- _Blend: 0
|
||||
- _BumpScale: 1
|
||||
- _CameraDistanceImpact: 0
|
||||
- _CelExtraEnabled: 1
|
||||
- _CelNumSteps: 3
|
||||
- _CelPrimaryEnabled: 1
|
||||
- _CelPrimaryMode: 1
|
||||
- _Cull: 2
|
||||
- _Cutoff: 0.5
|
||||
- _DetailMapBlendingMode: 0
|
||||
- _DetailMapImpact: 0
|
||||
- _DetailNormalMapScale: 1
|
||||
- _DstBlend: 0
|
||||
- _FlatRimAmount: 0.5
|
||||
- _FlatRimEdgeSmoothness: 0.611
|
||||
- _FlatRimEnabled: 1
|
||||
- _FlatRimLightAlign: 0
|
||||
- _FlatRimSize: 0.156
|
||||
- _FlatShadowsEnabled: 1
|
||||
- _FlatSmoothness: 0.362
|
||||
- _FlatSpecularEdgeSmoothness: 0.897
|
||||
- _FlatSpecularEnabled: 1
|
||||
- _FlatSpecularSize: 0.1
|
||||
- _FlatSpecularSmoothness: 0.5
|
||||
- _Flatness: 1
|
||||
- _FlatnessExtra: 1
|
||||
- _FlatnessSecondary: 1
|
||||
- _GlossMapScale: 1
|
||||
- _Glossiness: 0
|
||||
- _GlossyReflections: 1
|
||||
- _GradientAngle: 0
|
||||
- _GradientCenterX: 0
|
||||
- _GradientCenterY: 0
|
||||
- _GradientEnabled: 0
|
||||
- _GradientEnd: 0.55
|
||||
- _GradientSize: 10
|
||||
- _GradientSpace: 0
|
||||
- _GradientStart: 1.17
|
||||
- _LightContribution: 0.5
|
||||
- _LightFalloffSize: 0.0001
|
||||
- _LightmapDirectionPitch: 0
|
||||
- _LightmapDirectionYaw: 0
|
||||
- _Metallic: 0
|
||||
- _Mode: 0
|
||||
- _OcclusionStrength: 1
|
||||
- _OutlineDepthOffset: 0
|
||||
- _OutlineEnabled: 0
|
||||
- _OutlineScale: 1
|
||||
- _OutlineSpace: 0
|
||||
- _OutlineWidth: 1
|
||||
- _OverrideLightmapDir: 0
|
||||
- _OverrideShadows: 1
|
||||
- _OverrideShadowsEnabled: 1
|
||||
- _Parallax: 0.02
|
||||
- _QueueOffset: 0
|
||||
- _RimEnabled: 0
|
||||
- _SecondaryColor: 1
|
||||
- _SecondaryColorEnabled: 1
|
||||
- _SelfShadingSize: -0.93
|
||||
- _SelfShadingSizeExtra: 0.5
|
||||
- _ShadowEdgeSize: 0.05
|
||||
- _ShadowEdgeSizeExtra: 0.05
|
||||
- _ShadowEdgeSmoothness: 0.071
|
||||
- _ShadowFalloff: 0.01
|
||||
- _SmoothnessTextureChannel: 0
|
||||
- _SpecularEnabled: 1
|
||||
- _SpecularHighlights: 1
|
||||
- _SrcBlend: 1
|
||||
- _Surface: 0
|
||||
- _TextureBlendingMode: 0
|
||||
- _TextureImpact: 1
|
||||
- _UVSec: 0
|
||||
- _UnityShadowMode: 1
|
||||
- _UnityShadowOcclusion: 0
|
||||
- _UnityShadowPower: 0.2
|
||||
- _UnityShadowSharpness: 1
|
||||
- _VertexColorsEnabled: 0
|
||||
- _VertexExtrusionSmoothNormals: 0
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _BaseColor: {r: 0.75471693, g: 0.75471693, b: 0.75471693, a: 1}
|
||||
- _Color: {r: 0.754717, g: 0.754717, b: 0.754717, a: 1}
|
||||
- _ColorCelShadow: {r: 0.49056602, g: 0.34478462, b: 0.4476891, a: 1}
|
||||
- _ColorDim: {r: 0.85, g: 0.85, b: 0.85, a: 0.85}
|
||||
- _ColorDimCurve: {r: 0.85, g: 0.85, b: 0.85, a: 0.85}
|
||||
- _ColorDimExtra: {r: 0.85, g: 0.85, b: 0.85, a: 0.85}
|
||||
- _ColorDimSteps: {r: 0.85, g: 0.85, b: 0.85, a: 0.85}
|
||||
- _ColorGradient: {r: 0.65, g: 0.65, b: 0.65, a: 1}
|
||||
- _ColorSecondary: {r: 1, g: 0.55879205, b: 0, a: 1}
|
||||
- _ColorShadow: {r: 0.5, g: 0.5, b: 0.5, a: 1}
|
||||
- _ColorShadows: {r: 0.5471698, g: 0.37346402, b: 0.26584196, a: 1}
|
||||
- _DetailMapColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _EmissionColor: {r: 4.9245777, g: 0, b: 0, a: 1}
|
||||
- _FlatRimColor: {r: 0.06274509, g: 0.3764706, b: 0.36200908, a: 1}
|
||||
- _FlatSpecularColor: {r: 0.8584906, g: 0.8584906, b: 0.8584906, a: 1}
|
||||
- _LightmapDirection: {r: 0, g: 1, b: 0, a: 0}
|
||||
- _OutlineColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _UnityShadowColor: {r: 0.65, g: 0.65, b: 0.65, a: 1}
|
||||
m_BuildTextureStacks: []
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 067013b2a82eb4cad87d82235ed2d552
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,190 @@
|
||||
%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: Car-Set1-Car1Chrome2
|
||||
m_Shader: {fileID: 4800000, guid: bee44b4a58655ee4cbff107302a3e131, type: 3}
|
||||
m_Parent: {fileID: 0}
|
||||
m_ModifiedSerializedProperties: 0
|
||||
m_ValidKeywords:
|
||||
- DR_CEL_EXTRA_ON
|
||||
- DR_GRADIENT_ON
|
||||
- DR_SPECULAR_ON
|
||||
- _CELPRIMARYMODE_SINGLE
|
||||
- _DETAILMAPBLENDINGMODE_MULTIPLY
|
||||
- _GRADIENTSPACE_WORLD
|
||||
- _OUTLINESPACE_SCREEN
|
||||
- _TEXTUREBLENDINGMODE_MULTIPLY
|
||||
- _UNITYSHADOWMODE_MULTIPLY
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 1
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses:
|
||||
- SRPDEFAULTUNLIT
|
||||
m_LockedProperties:
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _BaseMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BumpMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _CelCurveTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _CelStepTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
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}
|
||||
- _DetailMap:
|
||||
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: 0}
|
||||
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}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _AlphaClip: 0
|
||||
- _BaseMapPremultiply: 0
|
||||
- _Blend: 0
|
||||
- _BumpScale: 1
|
||||
- _CameraDistanceImpact: 0
|
||||
- _CelExtraEnabled: 1
|
||||
- _CelNumSteps: 3
|
||||
- _CelPrimaryEnabled: 1
|
||||
- _CelPrimaryMode: 1
|
||||
- _Cull: 2
|
||||
- _Cutoff: 0.5
|
||||
- _DetailMapBlendingMode: 0
|
||||
- _DetailMapImpact: 0
|
||||
- _DetailNormalMapScale: 1
|
||||
- _DstBlend: 0
|
||||
- _FlatRimAmount: 0.5
|
||||
- _FlatRimEdgeSmoothness: 0.611
|
||||
- _FlatRimEnabled: 1
|
||||
- _FlatRimLightAlign: 0
|
||||
- _FlatRimSize: 0.156
|
||||
- _FlatShadowsEnabled: 1
|
||||
- _FlatSmoothness: 0.362
|
||||
- _FlatSpecularEdgeSmoothness: 0.897
|
||||
- _FlatSpecularEnabled: 1
|
||||
- _FlatSpecularSize: 0.1
|
||||
- _FlatSpecularSmoothness: 0.5
|
||||
- _Flatness: 1
|
||||
- _FlatnessExtra: 1
|
||||
- _FlatnessSecondary: 1
|
||||
- _GlossMapScale: 1
|
||||
- _Glossiness: 0
|
||||
- _GlossyReflections: 1
|
||||
- _GradientAngle: 0
|
||||
- _GradientCenterX: 0
|
||||
- _GradientCenterY: 0
|
||||
- _GradientEnabled: 1
|
||||
- _GradientEnd: 0.55
|
||||
- _GradientSize: 10
|
||||
- _GradientSpace: 0
|
||||
- _GradientStart: 1.17
|
||||
- _LightContribution: 0.5
|
||||
- _LightFalloffSize: 0.0001
|
||||
- _LightmapDirectionPitch: 0
|
||||
- _LightmapDirectionYaw: 0
|
||||
- _Metallic: 0
|
||||
- _Mode: 0
|
||||
- _OcclusionStrength: 1
|
||||
- _OutlineDepthOffset: 0
|
||||
- _OutlineEnabled: 0
|
||||
- _OutlineScale: 1
|
||||
- _OutlineSpace: 0
|
||||
- _OutlineWidth: 1
|
||||
- _OverrideLightmapDir: 0
|
||||
- _OverrideShadows: 1
|
||||
- _OverrideShadowsEnabled: 1
|
||||
- _Parallax: 0.02
|
||||
- _QueueOffset: 0
|
||||
- _RimEnabled: 0
|
||||
- _SecondaryColor: 1
|
||||
- _SecondaryColorEnabled: 1
|
||||
- _SelfShadingSize: -0.93
|
||||
- _SelfShadingSizeExtra: 0.5
|
||||
- _ShadowEdgeSize: 0.05
|
||||
- _ShadowEdgeSizeExtra: 0.05
|
||||
- _ShadowEdgeSmoothness: 0.071
|
||||
- _ShadowFalloff: 0.01
|
||||
- _SmoothnessTextureChannel: 0
|
||||
- _SpecularEnabled: 1
|
||||
- _SpecularHighlights: 1
|
||||
- _SrcBlend: 1
|
||||
- _Surface: 0
|
||||
- _TextureBlendingMode: 0
|
||||
- _TextureImpact: 1
|
||||
- _UVSec: 0
|
||||
- _UnityShadowMode: 1
|
||||
- _UnityShadowOcclusion: 0
|
||||
- _UnityShadowPower: 0.2
|
||||
- _UnityShadowSharpness: 1
|
||||
- _VertexColorsEnabled: 0
|
||||
- _VertexExtrusionSmoothNormals: 0
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _BaseColor: {r: 0.8113207, g: 0.8113207, b: 0.8113207, a: 1}
|
||||
- _Color: {r: 0.8113208, g: 0.8113208, b: 0.8113208, a: 1}
|
||||
- _ColorCelShadow: {r: 0.49056602, g: 0.34478462, b: 0.4476891, a: 1}
|
||||
- _ColorDim: {r: 0.23082057, g: 0.8584906, b: 0.852217, a: 0.85}
|
||||
- _ColorDimCurve: {r: 0.85, g: 0.85, b: 0.85, a: 0.85}
|
||||
- _ColorDimExtra: {r: 0.044544328, g: 0.8584906, b: 0.84255034, a: 0.85}
|
||||
- _ColorDimSteps: {r: 0.85, g: 0.85, b: 0.85, a: 0.85}
|
||||
- _ColorGradient: {r: 0.19188322, g: 0.34794194, b: 0.5283019, a: 1}
|
||||
- _ColorSecondary: {r: 1, g: 0.55879205, b: 0, a: 1}
|
||||
- _ColorShadow: {r: 0.5, g: 0.5, b: 0.5, a: 1}
|
||||
- _ColorShadows: {r: 0.5471698, g: 0.37346402, b: 0.26584196, a: 1}
|
||||
- _DetailMapColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _EmissionColor: {r: 4.9245777, g: 0, b: 0, a: 1}
|
||||
- _FlatRimColor: {r: 0.06274509, g: 0.3764706, b: 0.36200908, a: 1}
|
||||
- _FlatSpecularColor: {r: 0.8867924, g: 0.8826094, b: 0.8826094, a: 1}
|
||||
- _LightmapDirection: {r: 0, g: 1, b: 0, a: 0}
|
||||
- _OutlineColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _UnityShadowColor: {r: 0.65, g: 0.65, b: 0.65, a: 1}
|
||||
m_BuildTextureStacks: []
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 7af8bb9140fc243589d384c6421d2510
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,191 @@
|
||||
%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: Car-Set1-Car1Hatch
|
||||
m_Shader: {fileID: 4800000, guid: bee44b4a58655ee4cbff107302a3e131, type: 3}
|
||||
m_Parent: {fileID: 0}
|
||||
m_ModifiedSerializedProperties: 0
|
||||
m_ValidKeywords:
|
||||
- DR_CEL_EXTRA_ON
|
||||
- DR_GRADIENT_ON
|
||||
- DR_RIM_ON
|
||||
- DR_SPECULAR_ON
|
||||
- _CELPRIMARYMODE_SINGLE
|
||||
- _DETAILMAPBLENDINGMODE_MULTIPLY
|
||||
- _GRADIENTSPACE_WORLD
|
||||
- _OUTLINESPACE_SCREEN
|
||||
- _TEXTUREBLENDINGMODE_MULTIPLY
|
||||
- _UNITYSHADOWMODE_MULTIPLY
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 1
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses:
|
||||
- SRPDEFAULTUNLIT
|
||||
m_LockedProperties:
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _BaseMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BumpMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _CelCurveTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _CelStepTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
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}
|
||||
- _DetailMap:
|
||||
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: 0}
|
||||
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}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _AlphaClip: 0
|
||||
- _BaseMapPremultiply: 0
|
||||
- _Blend: 0
|
||||
- _BumpScale: 1
|
||||
- _CameraDistanceImpact: 0
|
||||
- _CelExtraEnabled: 1
|
||||
- _CelNumSteps: 3
|
||||
- _CelPrimaryEnabled: 1
|
||||
- _CelPrimaryMode: 1
|
||||
- _Cull: 2
|
||||
- _Cutoff: 0.5
|
||||
- _DetailMapBlendingMode: 0
|
||||
- _DetailMapImpact: 0
|
||||
- _DetailNormalMapScale: 1
|
||||
- _DstBlend: 0
|
||||
- _FlatRimAmount: 0.5
|
||||
- _FlatRimEdgeSmoothness: 0.611
|
||||
- _FlatRimEnabled: 1
|
||||
- _FlatRimLightAlign: 0
|
||||
- _FlatRimSize: 0.156
|
||||
- _FlatShadowsEnabled: 1
|
||||
- _FlatSmoothness: 0.362
|
||||
- _FlatSpecularEdgeSmoothness: 0.897
|
||||
- _FlatSpecularEnabled: 1
|
||||
- _FlatSpecularSize: 0.1
|
||||
- _FlatSpecularSmoothness: 0.5
|
||||
- _Flatness: 1
|
||||
- _FlatnessExtra: 1
|
||||
- _FlatnessSecondary: 1
|
||||
- _GlossMapScale: 1
|
||||
- _Glossiness: 0
|
||||
- _GlossyReflections: 1
|
||||
- _GradientAngle: 0
|
||||
- _GradientCenterX: 0
|
||||
- _GradientCenterY: 0
|
||||
- _GradientEnabled: 1
|
||||
- _GradientEnd: 0.55
|
||||
- _GradientSize: 10
|
||||
- _GradientSpace: 0
|
||||
- _GradientStart: 1.17
|
||||
- _LightContribution: 0.5
|
||||
- _LightFalloffSize: 0.0001
|
||||
- _LightmapDirectionPitch: 0
|
||||
- _LightmapDirectionYaw: 0
|
||||
- _Metallic: 0
|
||||
- _Mode: 0
|
||||
- _OcclusionStrength: 1
|
||||
- _OutlineDepthOffset: 0
|
||||
- _OutlineEnabled: 0
|
||||
- _OutlineScale: 1
|
||||
- _OutlineSpace: 0
|
||||
- _OutlineWidth: 1
|
||||
- _OverrideLightmapDir: 0
|
||||
- _OverrideShadows: 1
|
||||
- _OverrideShadowsEnabled: 1
|
||||
- _Parallax: 0.02
|
||||
- _QueueOffset: 0
|
||||
- _RimEnabled: 1
|
||||
- _SecondaryColor: 1
|
||||
- _SecondaryColorEnabled: 1
|
||||
- _SelfShadingSize: -0.93
|
||||
- _SelfShadingSizeExtra: 0.5
|
||||
- _ShadowEdgeSize: 0.05
|
||||
- _ShadowEdgeSizeExtra: 0.05
|
||||
- _ShadowEdgeSmoothness: 0.071
|
||||
- _ShadowFalloff: 0.01
|
||||
- _SmoothnessTextureChannel: 0
|
||||
- _SpecularEnabled: 1
|
||||
- _SpecularHighlights: 1
|
||||
- _SrcBlend: 1
|
||||
- _Surface: 0
|
||||
- _TextureBlendingMode: 0
|
||||
- _TextureImpact: 1
|
||||
- _UVSec: 0
|
||||
- _UnityShadowMode: 1
|
||||
- _UnityShadowOcclusion: 0
|
||||
- _UnityShadowPower: 0.2
|
||||
- _UnityShadowSharpness: 1
|
||||
- _VertexColorsEnabled: 0
|
||||
- _VertexExtrusionSmoothNormals: 0
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _BaseColor: {r: 0.13207546, g: 0.13207546, b: 0.13207546, a: 1}
|
||||
- _Color: {r: 0.13207549, g: 0.13207549, b: 0.13207549, a: 1}
|
||||
- _ColorCelShadow: {r: 0.49056602, g: 0.34478462, b: 0.4476891, a: 1}
|
||||
- _ColorDim: {r: 0.85, g: 0.85, b: 0.85, a: 0.85}
|
||||
- _ColorDimCurve: {r: 0.85, g: 0.85, b: 0.85, a: 0.85}
|
||||
- _ColorDimExtra: {r: 0.85, g: 0.85, b: 0.85, a: 0.85}
|
||||
- _ColorDimSteps: {r: 0.85, g: 0.85, b: 0.85, a: 0.85}
|
||||
- _ColorGradient: {r: 0.5660378, g: 0.21387337, b: 0.20024922, a: 1}
|
||||
- _ColorSecondary: {r: 1, g: 0.55879205, b: 0, a: 1}
|
||||
- _ColorShadow: {r: 0.5, g: 0.5, b: 0.5, a: 1}
|
||||
- _ColorShadows: {r: 0.5471698, g: 0.37346402, b: 0.26584196, a: 1}
|
||||
- _DetailMapColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _EmissionColor: {r: 4.9245777, g: 0, b: 0, a: 1}
|
||||
- _FlatRimColor: {r: 0.21586867, g: 0.31132078, b: 0.30654818, a: 1}
|
||||
- _FlatSpecularColor: {r: 0.2735849, g: 0.26971343, b: 0.26971343, a: 1}
|
||||
- _LightmapDirection: {r: 0, g: 1, b: 0, a: 0}
|
||||
- _OutlineColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _UnityShadowColor: {r: 0.65, g: 0.65, b: 0.65, a: 1}
|
||||
m_BuildTextureStacks: []
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 02d647967c9044a10b8c17e7012bdb93
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,189 @@
|
||||
%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: Car-Set1-Car1Lights1
|
||||
m_Shader: {fileID: 4800000, guid: bee44b4a58655ee4cbff107302a3e131, type: 3}
|
||||
m_Parent: {fileID: 0}
|
||||
m_ModifiedSerializedProperties: 0
|
||||
m_ValidKeywords:
|
||||
- DR_CEL_EXTRA_ON
|
||||
- DR_SPECULAR_ON
|
||||
- _CELPRIMARYMODE_SINGLE
|
||||
- _DETAILMAPBLENDINGMODE_MULTIPLY
|
||||
- _GRADIENTSPACE_WORLD
|
||||
- _OUTLINESPACE_SCREEN
|
||||
- _TEXTUREBLENDINGMODE_MULTIPLY
|
||||
- _UNITYSHADOWMODE_MULTIPLY
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 1
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses:
|
||||
- SRPDEFAULTUNLIT
|
||||
m_LockedProperties:
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _BaseMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BumpMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _CelCurveTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _CelStepTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
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}
|
||||
- _DetailMap:
|
||||
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: 0}
|
||||
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}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _AlphaClip: 0
|
||||
- _BaseMapPremultiply: 0
|
||||
- _Blend: 0
|
||||
- _BumpScale: 1
|
||||
- _CameraDistanceImpact: 0
|
||||
- _CelExtraEnabled: 1
|
||||
- _CelNumSteps: 3
|
||||
- _CelPrimaryEnabled: 1
|
||||
- _CelPrimaryMode: 1
|
||||
- _Cull: 2
|
||||
- _Cutoff: 0.5
|
||||
- _DetailMapBlendingMode: 0
|
||||
- _DetailMapImpact: 0
|
||||
- _DetailNormalMapScale: 1
|
||||
- _DstBlend: 0
|
||||
- _FlatRimAmount: 0.5
|
||||
- _FlatRimEdgeSmoothness: 0.611
|
||||
- _FlatRimEnabled: 1
|
||||
- _FlatRimLightAlign: 0
|
||||
- _FlatRimSize: 0.156
|
||||
- _FlatShadowsEnabled: 1
|
||||
- _FlatSmoothness: 0.362
|
||||
- _FlatSpecularEdgeSmoothness: 0.897
|
||||
- _FlatSpecularEnabled: 1
|
||||
- _FlatSpecularSize: 0.1
|
||||
- _FlatSpecularSmoothness: 0.5
|
||||
- _Flatness: 1
|
||||
- _FlatnessExtra: 1
|
||||
- _FlatnessSecondary: 1
|
||||
- _GlossMapScale: 1
|
||||
- _Glossiness: 0
|
||||
- _GlossyReflections: 1
|
||||
- _GradientAngle: 0
|
||||
- _GradientCenterX: 0
|
||||
- _GradientCenterY: 0
|
||||
- _GradientEnabled: 0
|
||||
- _GradientEnd: 0.55
|
||||
- _GradientSize: 10
|
||||
- _GradientSpace: 0
|
||||
- _GradientStart: 1.17
|
||||
- _LightContribution: 0.5
|
||||
- _LightFalloffSize: 0
|
||||
- _LightmapDirectionPitch: 0
|
||||
- _LightmapDirectionYaw: 0
|
||||
- _Metallic: 0
|
||||
- _Mode: 0
|
||||
- _OcclusionStrength: 1
|
||||
- _OutlineDepthOffset: 0
|
||||
- _OutlineEnabled: 0
|
||||
- _OutlineScale: 1
|
||||
- _OutlineSpace: 0
|
||||
- _OutlineWidth: 1
|
||||
- _OverrideLightmapDir: 0
|
||||
- _OverrideShadows: 1
|
||||
- _OverrideShadowsEnabled: 1
|
||||
- _Parallax: 0.02
|
||||
- _QueueOffset: 0
|
||||
- _RimEnabled: 0
|
||||
- _SecondaryColor: 1
|
||||
- _SecondaryColorEnabled: 1
|
||||
- _SelfShadingSize: -0.93
|
||||
- _SelfShadingSizeExtra: 0.5
|
||||
- _ShadowEdgeSize: 0.05
|
||||
- _ShadowEdgeSizeExtra: 0.05
|
||||
- _ShadowEdgeSmoothness: 0.071
|
||||
- _ShadowFalloff: 0.01
|
||||
- _SmoothnessTextureChannel: 0
|
||||
- _SpecularEnabled: 1
|
||||
- _SpecularHighlights: 1
|
||||
- _SrcBlend: 1
|
||||
- _Surface: 0
|
||||
- _TextureBlendingMode: 0
|
||||
- _TextureImpact: 1
|
||||
- _UVSec: 0
|
||||
- _UnityShadowMode: 1
|
||||
- _UnityShadowOcclusion: 0
|
||||
- _UnityShadowPower: 0.2
|
||||
- _UnityShadowSharpness: 1
|
||||
- _VertexColorsEnabled: 0
|
||||
- _VertexExtrusionSmoothNormals: 0
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _BaseColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _Color: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _ColorCelShadow: {r: 0.49056602, g: 0.34478462, b: 0.4476891, a: 1}
|
||||
- _ColorDim: {r: 0.7735849, g: 0.7735849, b: 0.7735849, a: 0.85}
|
||||
- _ColorDimCurve: {r: 0.85, g: 0.85, b: 0.85, a: 0.85}
|
||||
- _ColorDimExtra: {r: 0.85, g: 0.85, b: 0.85, a: 0.85}
|
||||
- _ColorDimSteps: {r: 0.85, g: 0.85, b: 0.85, a: 0.85}
|
||||
- _ColorGradient: {r: 0.65, g: 0.65, b: 0.65, a: 1}
|
||||
- _ColorSecondary: {r: 1, g: 0.55879205, b: 0, a: 1}
|
||||
- _ColorShadow: {r: 0.5, g: 0.5, b: 0.5, a: 1}
|
||||
- _ColorShadows: {r: 0.5471698, g: 0.37346402, b: 0.26584196, a: 1}
|
||||
- _DetailMapColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _EmissionColor: {r: 4.9245777, g: 0, b: 0, a: 1}
|
||||
- _FlatRimColor: {r: 0.06274509, g: 0.3764706, b: 0.36200908, a: 1}
|
||||
- _FlatSpecularColor: {r: 0.3474101, g: 0.3490566, b: 0.348743, a: 1}
|
||||
- _LightmapDirection: {r: 0, g: 1, b: 0, a: 0}
|
||||
- _OutlineColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _UnityShadowColor: {r: 0.65, g: 0.65, b: 0.65, a: 1}
|
||||
m_BuildTextureStacks: []
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 283a705137c9344f9b4abcda7229f773
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,188 @@
|
||||
%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: Car-Set1-Car1Lights2
|
||||
m_Shader: {fileID: 4800000, guid: bee44b4a58655ee4cbff107302a3e131, type: 3}
|
||||
m_Parent: {fileID: 0}
|
||||
m_ModifiedSerializedProperties: 0
|
||||
m_ValidKeywords:
|
||||
- DR_CEL_EXTRA_ON
|
||||
- _CELPRIMARYMODE_SINGLE
|
||||
- _DETAILMAPBLENDINGMODE_MULTIPLY
|
||||
- _GRADIENTSPACE_WORLD
|
||||
- _OUTLINESPACE_SCREEN
|
||||
- _TEXTUREBLENDINGMODE_MULTIPLY
|
||||
- _UNITYSHADOWMODE_MULTIPLY
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 1
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses:
|
||||
- SRPDEFAULTUNLIT
|
||||
m_LockedProperties:
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _BaseMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BumpMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _CelCurveTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _CelStepTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
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}
|
||||
- _DetailMap:
|
||||
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: 0}
|
||||
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}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _AlphaClip: 0
|
||||
- _BaseMapPremultiply: 0
|
||||
- _Blend: 0
|
||||
- _BumpScale: 1
|
||||
- _CameraDistanceImpact: 0
|
||||
- _CelExtraEnabled: 1
|
||||
- _CelNumSteps: 3
|
||||
- _CelPrimaryEnabled: 1
|
||||
- _CelPrimaryMode: 1
|
||||
- _Cull: 2
|
||||
- _Cutoff: 0.5
|
||||
- _DetailMapBlendingMode: 0
|
||||
- _DetailMapImpact: 0
|
||||
- _DetailNormalMapScale: 1
|
||||
- _DstBlend: 0
|
||||
- _FlatRimAmount: 0.5
|
||||
- _FlatRimEdgeSmoothness: 0.611
|
||||
- _FlatRimEnabled: 1
|
||||
- _FlatRimLightAlign: 0
|
||||
- _FlatRimSize: 0.156
|
||||
- _FlatShadowsEnabled: 1
|
||||
- _FlatSmoothness: 0.362
|
||||
- _FlatSpecularEdgeSmoothness: 0.897
|
||||
- _FlatSpecularEnabled: 1
|
||||
- _FlatSpecularSize: 0.1
|
||||
- _FlatSpecularSmoothness: 0.5
|
||||
- _Flatness: 1
|
||||
- _FlatnessExtra: 1
|
||||
- _FlatnessSecondary: 1
|
||||
- _GlossMapScale: 1
|
||||
- _Glossiness: 0
|
||||
- _GlossyReflections: 1
|
||||
- _GradientAngle: 0
|
||||
- _GradientCenterX: 0
|
||||
- _GradientCenterY: 0
|
||||
- _GradientEnabled: 0
|
||||
- _GradientEnd: 0.55
|
||||
- _GradientSize: 10
|
||||
- _GradientSpace: 0
|
||||
- _GradientStart: 1.17
|
||||
- _LightContribution: 0.5
|
||||
- _LightFalloffSize: 0.0001
|
||||
- _LightmapDirectionPitch: 0
|
||||
- _LightmapDirectionYaw: 0
|
||||
- _Metallic: 0
|
||||
- _Mode: 0
|
||||
- _OcclusionStrength: 1
|
||||
- _OutlineDepthOffset: 0
|
||||
- _OutlineEnabled: 0
|
||||
- _OutlineScale: 1
|
||||
- _OutlineSpace: 0
|
||||
- _OutlineWidth: 1
|
||||
- _OverrideLightmapDir: 0
|
||||
- _OverrideShadows: 1
|
||||
- _OverrideShadowsEnabled: 1
|
||||
- _Parallax: 0.02
|
||||
- _QueueOffset: 0
|
||||
- _RimEnabled: 0
|
||||
- _SecondaryColor: 1
|
||||
- _SecondaryColorEnabled: 1
|
||||
- _SelfShadingSize: -0.93
|
||||
- _SelfShadingSizeExtra: 0.5
|
||||
- _ShadowEdgeSize: 0.05
|
||||
- _ShadowEdgeSizeExtra: 0.05
|
||||
- _ShadowEdgeSmoothness: 0.071
|
||||
- _ShadowFalloff: 0.01
|
||||
- _SmoothnessTextureChannel: 0
|
||||
- _SpecularEnabled: 0
|
||||
- _SpecularHighlights: 1
|
||||
- _SrcBlend: 1
|
||||
- _Surface: 0
|
||||
- _TextureBlendingMode: 0
|
||||
- _TextureImpact: 1
|
||||
- _UVSec: 0
|
||||
- _UnityShadowMode: 1
|
||||
- _UnityShadowOcclusion: 0
|
||||
- _UnityShadowPower: 0.2
|
||||
- _UnityShadowSharpness: 1
|
||||
- _VertexColorsEnabled: 0
|
||||
- _VertexExtrusionSmoothNormals: 0
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _BaseColor: {r: 0.9433962, g: 0.6639119, b: 0.04004982, a: 1}
|
||||
- _Color: {r: 0.9433962, g: 0.6639119, b: 0.04004982, a: 1}
|
||||
- _ColorCelShadow: {r: 0.49056602, g: 0.34478462, b: 0.4476891, a: 1}
|
||||
- _ColorDim: {r: 0.7735849, g: 0.7735849, b: 0.7735849, a: 0.85}
|
||||
- _ColorDimCurve: {r: 0.85, g: 0.85, b: 0.85, a: 0.85}
|
||||
- _ColorDimExtra: {r: 0.8617097, g: 0.8962264, b: 0.19023676, a: 0.85}
|
||||
- _ColorDimSteps: {r: 0.85, g: 0.85, b: 0.85, a: 0.85}
|
||||
- _ColorGradient: {r: 0.65, g: 0.65, b: 0.65, a: 1}
|
||||
- _ColorSecondary: {r: 1, g: 0.55879205, b: 0, a: 1}
|
||||
- _ColorShadow: {r: 0.5, g: 0.5, b: 0.5, a: 1}
|
||||
- _ColorShadows: {r: 0.5471698, g: 0.37346402, b: 0.26584196, a: 1}
|
||||
- _DetailMapColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _EmissionColor: {r: 4.9245777, g: 0, b: 0, a: 1}
|
||||
- _FlatRimColor: {r: 0.06274509, g: 0.3764706, b: 0.36200908, a: 1}
|
||||
- _FlatSpecularColor: {r: 0.3474101, g: 0.3490566, b: 0.348743, a: 1}
|
||||
- _LightmapDirection: {r: 0, g: 1, b: 0, a: 0}
|
||||
- _OutlineColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _UnityShadowColor: {r: 0.65, g: 0.65, b: 0.65, a: 1}
|
||||
m_BuildTextureStacks: []
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: fe69fbebd018247d4a0054d1264bcfdf
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,159 @@
|
||||
%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: Car-Set1-Car1Lights3
|
||||
m_Shader: {fileID: 4800000, guid: bee44b4a58655ee4cbff107302a3e131, type: 3}
|
||||
m_ShaderKeywords: DR_CEL_EXTRA_ON DR_CEL_PRIMARY_ON _FLAT_SHADOWS_ENABLED _FLAT_SPECULAR_ENABLED
|
||||
_UNITYSHADOWMODE_MULTIPLY
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 1
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses:
|
||||
- SRPDEFAULTUNLIT
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _BaseMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BumpMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _CelCurveTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _CelStepTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
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: 0}
|
||||
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}
|
||||
m_Floats:
|
||||
- _AlphaClip: 0
|
||||
- _Blend: 0
|
||||
- _BumpScale: 1
|
||||
- _CelExtraEnabled: 1
|
||||
- _CelNumSteps: 3
|
||||
- _CelPrimaryEnabled: 1
|
||||
- _CelPrimaryMode: 1
|
||||
- _Cull: 2
|
||||
- _Cutoff: 0.5
|
||||
- _DetailNormalMapScale: 1
|
||||
- _DstBlend: 0
|
||||
- _FlatRimAmount: 0.5
|
||||
- _FlatRimEdgeSmoothness: 0.611
|
||||
- _FlatRimEnabled: 1
|
||||
- _FlatRimLightAlign: 0
|
||||
- _FlatRimSize: 0.156
|
||||
- _FlatShadowsEnabled: 1
|
||||
- _FlatSmoothness: 0.362
|
||||
- _FlatSpecularEdgeSmoothness: 0.897
|
||||
- _FlatSpecularEnabled: 1
|
||||
- _FlatSpecularSize: 0.1
|
||||
- _FlatSpecularSmoothness: 0.5
|
||||
- _Flatness: 1
|
||||
- _FlatnessExtra: 1
|
||||
- _FlatnessSecondary: 1
|
||||
- _GlossMapScale: 1
|
||||
- _Glossiness: 0
|
||||
- _GlossyReflections: 1
|
||||
- _GradientAngle: 0
|
||||
- _GradientCenterX: 0
|
||||
- _GradientCenterY: 0
|
||||
- _GradientEnabled: 0
|
||||
- _GradientEnd: 0.55
|
||||
- _GradientSize: 10
|
||||
- _GradientStart: 1.17
|
||||
- _LightContribution: 0.5
|
||||
- _LightFalloffSize: 0.0001
|
||||
- _LightmapDirectionPitch: 0
|
||||
- _LightmapDirectionYaw: 0
|
||||
- _Metallic: 0
|
||||
- _Mode: 0
|
||||
- _OcclusionStrength: 1
|
||||
- _OverrideLightmapDir: 0
|
||||
- _OverrideShadows: 1
|
||||
- _OverrideShadowsEnabled: 1
|
||||
- _Parallax: 0.02
|
||||
- _QueueOffset: 0
|
||||
- _RimEnabled: 0
|
||||
- _SecondaryColor: 1
|
||||
- _SecondaryColorEnabled: 1
|
||||
- _SelfShadingSize: -0.93
|
||||
- _SelfShadingSizeExtra: 0.5
|
||||
- _ShadowEdgeSize: 0.05
|
||||
- _ShadowEdgeSizeExtra: 0.05
|
||||
- _ShadowEdgeSmoothness: 0.071
|
||||
- _ShadowFalloff: 0.01
|
||||
- _SmoothnessTextureChannel: 0
|
||||
- _SpecularEnabled: 0
|
||||
- _SpecularHighlights: 1
|
||||
- _SrcBlend: 1
|
||||
- _Surface: 0
|
||||
- _TextureBlendingMode: 0
|
||||
- _TextureImpact: 1
|
||||
- _UVSec: 0
|
||||
- _UnityShadowMode: 1
|
||||
- _UnityShadowPower: 0.2
|
||||
- _UnityShadowSharpness: 1
|
||||
- _VertexColorsEnabled: 0
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _BaseColor: {r: 0.945098, g: 0.3683742, b: 0.039215684, a: 1}
|
||||
- _Color: {r: 0.94509804, g: 0.36837423, b: 0.039215684, a: 1}
|
||||
- _ColorCelShadow: {r: 0.49056602, g: 0.34478462, b: 0.4476891, a: 1}
|
||||
- _ColorDim: {r: 0.7735849, g: 0.7735849, b: 0.7735849, a: 0.85}
|
||||
- _ColorDimCurve: {r: 0.85, g: 0.85, b: 0.85, a: 0.85}
|
||||
- _ColorDimExtra: {r: 0.8617097, g: 0.8962264, b: 0.19023676, a: 0.85}
|
||||
- _ColorDimSteps: {r: 0.85, g: 0.85, b: 0.85, a: 0.85}
|
||||
- _ColorGradient: {r: 0.65, g: 0.65, b: 0.65, a: 1}
|
||||
- _ColorSecondary: {r: 1, g: 0.55879205, b: 0, a: 1}
|
||||
- _ColorShadow: {r: 0.5, g: 0.5, b: 0.5, a: 1}
|
||||
- _ColorShadows: {r: 0.5471698, g: 0.37346402, b: 0.26584196, a: 1}
|
||||
- _EmissionColor: {r: 4.9245777, g: 0, b: 0, a: 1}
|
||||
- _FlatRimColor: {r: 0.06274509, g: 0.3764706, b: 0.36200908, a: 1}
|
||||
- _FlatSpecularColor: {r: 0.3474101, g: 0.3490566, b: 0.348743, a: 1}
|
||||
- _LightmapDirection: {r: 0, g: 1, b: 0, a: 0}
|
||||
- _UnityShadowColor: {r: 0.65, g: 0.65, b: 0.65, a: 1}
|
||||
m_BuildTextureStacks: []
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 16805951027bc42d187d5eb94e9b2e2c
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,189 @@
|
||||
%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: Car-Set1-Car1Plates
|
||||
m_Shader: {fileID: 4800000, guid: bee44b4a58655ee4cbff107302a3e131, type: 3}
|
||||
m_Parent: {fileID: 0}
|
||||
m_ModifiedSerializedProperties: 0
|
||||
m_ValidKeywords:
|
||||
- DR_RIM_ON
|
||||
- DR_SPECULAR_ON
|
||||
- _CELPRIMARYMODE_SINGLE
|
||||
- _DETAILMAPBLENDINGMODE_MULTIPLY
|
||||
- _GRADIENTSPACE_WORLD
|
||||
- _OUTLINESPACE_SCREEN
|
||||
- _TEXTUREBLENDINGMODE_MULTIPLY
|
||||
- _UNITYSHADOWMODE_MULTIPLY
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 1
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses:
|
||||
- SRPDEFAULTUNLIT
|
||||
m_LockedProperties:
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _BaseMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BumpMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _CelCurveTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _CelStepTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
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}
|
||||
- _DetailMap:
|
||||
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: 0}
|
||||
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}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _AlphaClip: 0
|
||||
- _BaseMapPremultiply: 0
|
||||
- _Blend: 0
|
||||
- _BumpScale: 1
|
||||
- _CameraDistanceImpact: 0
|
||||
- _CelExtraEnabled: 0
|
||||
- _CelNumSteps: 3
|
||||
- _CelPrimaryEnabled: 1
|
||||
- _CelPrimaryMode: 1
|
||||
- _Cull: 2
|
||||
- _Cutoff: 0.5
|
||||
- _DetailMapBlendingMode: 0
|
||||
- _DetailMapImpact: 0
|
||||
- _DetailNormalMapScale: 1
|
||||
- _DstBlend: 0
|
||||
- _FlatRimAmount: 0.5
|
||||
- _FlatRimEdgeSmoothness: 0.611
|
||||
- _FlatRimEnabled: 1
|
||||
- _FlatRimLightAlign: 0
|
||||
- _FlatRimSize: 0.156
|
||||
- _FlatShadowsEnabled: 1
|
||||
- _FlatSmoothness: 0.362
|
||||
- _FlatSpecularEdgeSmoothness: 0.897
|
||||
- _FlatSpecularEnabled: 1
|
||||
- _FlatSpecularSize: 0.1
|
||||
- _FlatSpecularSmoothness: 0.5
|
||||
- _Flatness: 1
|
||||
- _FlatnessExtra: 1
|
||||
- _FlatnessSecondary: 1
|
||||
- _GlossMapScale: 1
|
||||
- _Glossiness: 0
|
||||
- _GlossyReflections: 1
|
||||
- _GradientAngle: 0
|
||||
- _GradientCenterX: 0
|
||||
- _GradientCenterY: 0
|
||||
- _GradientEnabled: 0
|
||||
- _GradientEnd: 0.55
|
||||
- _GradientSize: 10
|
||||
- _GradientSpace: 0
|
||||
- _GradientStart: 1.17
|
||||
- _LightContribution: 0.5
|
||||
- _LightFalloffSize: 0.0001
|
||||
- _LightmapDirectionPitch: 0
|
||||
- _LightmapDirectionYaw: 0
|
||||
- _Metallic: 0
|
||||
- _Mode: 0
|
||||
- _OcclusionStrength: 1
|
||||
- _OutlineDepthOffset: 0
|
||||
- _OutlineEnabled: 0
|
||||
- _OutlineScale: 1
|
||||
- _OutlineSpace: 0
|
||||
- _OutlineWidth: 1
|
||||
- _OverrideLightmapDir: 0
|
||||
- _OverrideShadows: 1
|
||||
- _OverrideShadowsEnabled: 1
|
||||
- _Parallax: 0.02
|
||||
- _QueueOffset: 0
|
||||
- _RimEnabled: 1
|
||||
- _SecondaryColor: 1
|
||||
- _SecondaryColorEnabled: 1
|
||||
- _SelfShadingSize: -0.93
|
||||
- _SelfShadingSizeExtra: 0.5
|
||||
- _ShadowEdgeSize: 0.05
|
||||
- _ShadowEdgeSizeExtra: 0.05
|
||||
- _ShadowEdgeSmoothness: 0.071
|
||||
- _ShadowFalloff: 0.01
|
||||
- _SmoothnessTextureChannel: 0
|
||||
- _SpecularEnabled: 1
|
||||
- _SpecularHighlights: 1
|
||||
- _SrcBlend: 1
|
||||
- _Surface: 0
|
||||
- _TextureBlendingMode: 0
|
||||
- _TextureImpact: 1
|
||||
- _UVSec: 0
|
||||
- _UnityShadowMode: 1
|
||||
- _UnityShadowOcclusion: 0
|
||||
- _UnityShadowPower: 0.2
|
||||
- _UnityShadowSharpness: 1
|
||||
- _VertexColorsEnabled: 0
|
||||
- _VertexExtrusionSmoothNormals: 0
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _BaseColor: {r: 0.20754716, g: 0.19286221, b: 0.19286221, a: 1}
|
||||
- _Color: {r: 0.20754719, g: 0.19286224, b: 0.19286224, a: 1}
|
||||
- _ColorCelShadow: {r: 0.49056602, g: 0.34478462, b: 0.4476891, a: 1}
|
||||
- _ColorDim: {r: 0.85, g: 0.85, b: 0.85, a: 0.85}
|
||||
- _ColorDimCurve: {r: 0.85, g: 0.85, b: 0.85, a: 0.85}
|
||||
- _ColorDimExtra: {r: 0.85, g: 0.85, b: 0.85, a: 0.85}
|
||||
- _ColorDimSteps: {r: 0.85, g: 0.85, b: 0.85, a: 0.85}
|
||||
- _ColorGradient: {r: 0.65, g: 0.65, b: 0.65, a: 1}
|
||||
- _ColorSecondary: {r: 1, g: 0.55879205, b: 0, a: 1}
|
||||
- _ColorShadow: {r: 0.5, g: 0.5, b: 0.5, a: 1}
|
||||
- _ColorShadows: {r: 0.5471698, g: 0.37346402, b: 0.26584196, a: 1}
|
||||
- _DetailMapColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _EmissionColor: {r: 4.9245777, g: 0, b: 0, a: 1}
|
||||
- _FlatRimColor: {r: 0.06274509, g: 0.3764706, b: 0.36200908, a: 1}
|
||||
- _FlatSpecularColor: {r: 0.3474101, g: 0.3490566, b: 0.348743, a: 1}
|
||||
- _LightmapDirection: {r: 0, g: 1, b: 0, a: 0}
|
||||
- _OutlineColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _UnityShadowColor: {r: 0.65, g: 0.65, b: 0.65, a: 1}
|
||||
m_BuildTextureStacks: []
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 783e6eb0854334fc98fdba1a3f26ae1e
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,159 @@
|
||||
%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: Car-Set1-Car2Body
|
||||
m_Shader: {fileID: 4800000, guid: bee44b4a58655ee4cbff107302a3e131, type: 3}
|
||||
m_ShaderKeywords: DR_CEL_EXTRA_ON DR_GRADIENT_ON DR_RIM_ON DR_SPECULAR_ON _FLAT_SHADOWS_ENABLED
|
||||
_FLAT_SPECULAR_ENABLED _UNITYSHADOWMODE_MULTIPLY
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 1
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses:
|
||||
- SRPDEFAULTUNLIT
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _BaseMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BumpMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _CelCurveTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _CelStepTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
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: 0}
|
||||
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}
|
||||
m_Floats:
|
||||
- _AlphaClip: 0
|
||||
- _Blend: 0
|
||||
- _BumpScale: 1
|
||||
- _CelExtraEnabled: 1
|
||||
- _CelNumSteps: 3
|
||||
- _CelPrimaryEnabled: 0
|
||||
- _CelPrimaryMode: 1
|
||||
- _Cull: 2
|
||||
- _Cutoff: 0.5
|
||||
- _DetailNormalMapScale: 1
|
||||
- _DstBlend: 0
|
||||
- _FlatRimAmount: 0.5
|
||||
- _FlatRimEdgeSmoothness: 0.696
|
||||
- _FlatRimEnabled: 1
|
||||
- _FlatRimLightAlign: 0
|
||||
- _FlatRimSize: 0.229
|
||||
- _FlatShadowsEnabled: 1
|
||||
- _FlatSmoothness: 0.362
|
||||
- _FlatSpecularEdgeSmoothness: 0.854
|
||||
- _FlatSpecularEnabled: 1
|
||||
- _FlatSpecularSize: 0.118
|
||||
- _FlatSpecularSmoothness: 0.5
|
||||
- _Flatness: 1
|
||||
- _FlatnessExtra: 1
|
||||
- _FlatnessSecondary: 1
|
||||
- _GlossMapScale: 1
|
||||
- _Glossiness: 0
|
||||
- _GlossyReflections: 1
|
||||
- _GradientAngle: 0
|
||||
- _GradientCenterX: 0
|
||||
- _GradientCenterY: 1.03
|
||||
- _GradientEnabled: 1
|
||||
- _GradientEnd: 0.55
|
||||
- _GradientSize: 10
|
||||
- _GradientStart: 1.17
|
||||
- _LightContribution: 0.5
|
||||
- _LightFalloffSize: 0.0001
|
||||
- _LightmapDirectionPitch: 0
|
||||
- _LightmapDirectionYaw: 0
|
||||
- _Metallic: 0
|
||||
- _Mode: 0
|
||||
- _OcclusionStrength: 1
|
||||
- _OverrideLightmapDir: 0
|
||||
- _OverrideShadows: 1
|
||||
- _OverrideShadowsEnabled: 1
|
||||
- _Parallax: 0.02
|
||||
- _QueueOffset: 0
|
||||
- _RimEnabled: 1
|
||||
- _SecondaryColor: 1
|
||||
- _SecondaryColorEnabled: 1
|
||||
- _SelfShadingSize: -0.93
|
||||
- _SelfShadingSizeExtra: 0.5
|
||||
- _ShadowEdgeSize: 0.05
|
||||
- _ShadowEdgeSizeExtra: 0.05
|
||||
- _ShadowEdgeSmoothness: 0.071
|
||||
- _ShadowFalloff: 0.01
|
||||
- _SmoothnessTextureChannel: 0
|
||||
- _SpecularEnabled: 1
|
||||
- _SpecularHighlights: 1
|
||||
- _SrcBlend: 1
|
||||
- _Surface: 0
|
||||
- _TextureBlendingMode: 0
|
||||
- _TextureImpact: 1
|
||||
- _UVSec: 0
|
||||
- _UnityShadowMode: 1
|
||||
- _UnityShadowPower: 0.2
|
||||
- _UnityShadowSharpness: 1
|
||||
- _VertexColorsEnabled: 0
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _BaseColor: {r: 0.8980392, g: 0, b: 0.42975146, a: 1}
|
||||
- _Color: {r: 0.8980392, g: 0, b: 0.4297515, a: 1}
|
||||
- _ColorCelShadow: {r: 0.49056602, g: 0.34478462, b: 0.4476891, a: 1}
|
||||
- _ColorDim: {r: 0.85, g: 0.85, b: 0.85, a: 0.85}
|
||||
- _ColorDimCurve: {r: 0.85, g: 0.85, b: 0.85, a: 0.85}
|
||||
- _ColorDimExtra: {r: 0.5566038, g: 0.3281862, b: 0.3344565, a: 0.85}
|
||||
- _ColorDimSteps: {r: 0.85, g: 0.85, b: 0.85, a: 0.85}
|
||||
- _ColorGradient: {r: 0, g: 0.53735757, b: 1, a: 1}
|
||||
- _ColorSecondary: {r: 1, g: 0.55879205, b: 0, a: 1}
|
||||
- _ColorShadow: {r: 0.5, g: 0.5, b: 0.5, a: 1}
|
||||
- _ColorShadows: {r: 0.5471698, g: 0.37346402, b: 0.26584196, a: 1}
|
||||
- _EmissionColor: {r: 4.9245777, g: 0, b: 0, a: 1}
|
||||
- _FlatRimColor: {r: 1, g: 0.91906786, b: 0.5518868, a: 1}
|
||||
- _FlatSpecularColor: {r: 1, g: 0.4323543, b: 0.39215684, a: 1}
|
||||
- _LightmapDirection: {r: 0, g: 1, b: 0, a: 0}
|
||||
- _UnityShadowColor: {r: 0.65, g: 0.65, b: 0.65, a: 1}
|
||||
m_BuildTextureStacks: []
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 29f5d3455b4d3479ab9f6799b2a9092e
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,188 @@
|
||||
%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: Car-Set1-Car2Chrome2
|
||||
m_Shader: {fileID: 4800000, guid: bee44b4a58655ee4cbff107302a3e131, type: 3}
|
||||
m_Parent: {fileID: 0}
|
||||
m_ModifiedSerializedProperties: 0
|
||||
m_ValidKeywords:
|
||||
- DR_SPECULAR_ON
|
||||
- _CELPRIMARYMODE_SINGLE
|
||||
- _DETAILMAPBLENDINGMODE_MULTIPLY
|
||||
- _GRADIENTSPACE_WORLD
|
||||
- _OUTLINESPACE_SCREEN
|
||||
- _TEXTUREBLENDINGMODE_MULTIPLY
|
||||
- _UNITYSHADOWMODE_MULTIPLY
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 1
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses:
|
||||
- SRPDEFAULTUNLIT
|
||||
m_LockedProperties:
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _BaseMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BumpMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _CelCurveTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _CelStepTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
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}
|
||||
- _DetailMap:
|
||||
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: 0}
|
||||
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}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _AlphaClip: 0
|
||||
- _BaseMapPremultiply: 0
|
||||
- _Blend: 0
|
||||
- _BumpScale: 1
|
||||
- _CameraDistanceImpact: 0
|
||||
- _CelExtraEnabled: 0
|
||||
- _CelNumSteps: 3
|
||||
- _CelPrimaryEnabled: 1
|
||||
- _CelPrimaryMode: 1
|
||||
- _Cull: 2
|
||||
- _Cutoff: 0.5
|
||||
- _DetailMapBlendingMode: 0
|
||||
- _DetailMapImpact: 0
|
||||
- _DetailNormalMapScale: 1
|
||||
- _DstBlend: 0
|
||||
- _FlatRimAmount: 0.5
|
||||
- _FlatRimEdgeSmoothness: 0.611
|
||||
- _FlatRimEnabled: 1
|
||||
- _FlatRimLightAlign: 0
|
||||
- _FlatRimSize: 0.156
|
||||
- _FlatShadowsEnabled: 1
|
||||
- _FlatSmoothness: 0.362
|
||||
- _FlatSpecularEdgeSmoothness: 0
|
||||
- _FlatSpecularEnabled: 1
|
||||
- _FlatSpecularSize: 0.775
|
||||
- _FlatSpecularSmoothness: 0.5
|
||||
- _Flatness: 1
|
||||
- _FlatnessExtra: 1
|
||||
- _FlatnessSecondary: 1
|
||||
- _GlossMapScale: 1
|
||||
- _Glossiness: 0
|
||||
- _GlossyReflections: 1
|
||||
- _GradientAngle: 0
|
||||
- _GradientCenterX: 0
|
||||
- _GradientCenterY: 0
|
||||
- _GradientEnabled: 0
|
||||
- _GradientEnd: 0.55
|
||||
- _GradientSize: 10
|
||||
- _GradientSpace: 0
|
||||
- _GradientStart: 1.17
|
||||
- _LightContribution: 0.5
|
||||
- _LightFalloffSize: 0.0001
|
||||
- _LightmapDirectionPitch: 0
|
||||
- _LightmapDirectionYaw: 0
|
||||
- _Metallic: 0
|
||||
- _Mode: 0
|
||||
- _OcclusionStrength: 1
|
||||
- _OutlineDepthOffset: 0
|
||||
- _OutlineEnabled: 0
|
||||
- _OutlineScale: 1
|
||||
- _OutlineSpace: 0
|
||||
- _OutlineWidth: 1
|
||||
- _OverrideLightmapDir: 0
|
||||
- _OverrideShadows: 1
|
||||
- _OverrideShadowsEnabled: 1
|
||||
- _Parallax: 0.02
|
||||
- _QueueOffset: 0
|
||||
- _RimEnabled: 0
|
||||
- _SecondaryColor: 1
|
||||
- _SecondaryColorEnabled: 1
|
||||
- _SelfShadingSize: 0.362
|
||||
- _SelfShadingSizeExtra: 0.381
|
||||
- _ShadowEdgeSize: 0.05
|
||||
- _ShadowEdgeSizeExtra: 0.023
|
||||
- _ShadowEdgeSmoothness: 0.071
|
||||
- _ShadowFalloff: 0.01
|
||||
- _SmoothnessTextureChannel: 0
|
||||
- _SpecularEnabled: 1
|
||||
- _SpecularHighlights: 1
|
||||
- _SrcBlend: 1
|
||||
- _Surface: 0
|
||||
- _TextureBlendingMode: 0
|
||||
- _TextureImpact: 1
|
||||
- _UVSec: 0
|
||||
- _UnityShadowMode: 1
|
||||
- _UnityShadowOcclusion: 0
|
||||
- _UnityShadowPower: 0.2
|
||||
- _UnityShadowSharpness: 1
|
||||
- _VertexColorsEnabled: 0
|
||||
- _VertexExtrusionSmoothNormals: 0
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _BaseColor: {r: 0.7264151, g: 0.5379584, b: 0.5379584, a: 1}
|
||||
- _Color: {r: 0.7264151, g: 0.5379584, b: 0.5379584, a: 1}
|
||||
- _ColorCelShadow: {r: 0.49056602, g: 0.34478462, b: 0.4476891, a: 1}
|
||||
- _ColorDim: {r: 0.49056602, g: 0.17817727, b: 0.22115539, a: 0.85}
|
||||
- _ColorDimCurve: {r: 0.85, g: 0.85, b: 0.85, a: 0.85}
|
||||
- _ColorDimExtra: {r: 0.044544328, g: 0.8584906, b: 0.84255034, a: 0.85}
|
||||
- _ColorDimSteps: {r: 0.85, g: 0.85, b: 0.85, a: 0.85}
|
||||
- _ColorGradient: {r: 0.19188322, g: 0.34794194, b: 0.5283019, a: 1}
|
||||
- _ColorSecondary: {r: 1, g: 0.55879205, b: 0, a: 1}
|
||||
- _ColorShadow: {r: 0.5, g: 0.5, b: 0.5, a: 1}
|
||||
- _ColorShadows: {r: 0.5471698, g: 0.37346402, b: 0.26584196, a: 1}
|
||||
- _DetailMapColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _EmissionColor: {r: 4.9245777, g: 0, b: 0, a: 1}
|
||||
- _FlatRimColor: {r: 0.06274509, g: 0.3764706, b: 0.36200908, a: 1}
|
||||
- _FlatSpecularColor: {r: 0.8867924, g: 0.8826094, b: 0.8826094, a: 1}
|
||||
- _LightmapDirection: {r: 0, g: 1, b: 0, a: 0}
|
||||
- _OutlineColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _UnityShadowColor: {r: 0.65, g: 0.65, b: 0.65, a: 1}
|
||||
m_BuildTextureStacks: []
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 216bc1afbd31e4ffc9900ed3ea656a65
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,190 @@
|
||||
%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: Car-Set1-Car3Body
|
||||
m_Shader: {fileID: 4800000, guid: bee44b4a58655ee4cbff107302a3e131, type: 3}
|
||||
m_Parent: {fileID: 0}
|
||||
m_ModifiedSerializedProperties: 0
|
||||
m_ValidKeywords:
|
||||
- DR_CEL_EXTRA_ON
|
||||
- DR_RIM_ON
|
||||
- DR_SPECULAR_ON
|
||||
- _CELPRIMARYMODE_SINGLE
|
||||
- _DETAILMAPBLENDINGMODE_MULTIPLY
|
||||
- _GRADIENTSPACE_WORLD
|
||||
- _OUTLINESPACE_SCREEN
|
||||
- _TEXTUREBLENDINGMODE_MULTIPLY
|
||||
- _UNITYSHADOWMODE_MULTIPLY
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 1
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses:
|
||||
- SRPDEFAULTUNLIT
|
||||
m_LockedProperties:
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _BaseMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BumpMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _CelCurveTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _CelStepTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
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}
|
||||
- _DetailMap:
|
||||
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: 0}
|
||||
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}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _AlphaClip: 0
|
||||
- _BaseMapPremultiply: 0
|
||||
- _Blend: 0
|
||||
- _BumpScale: 1
|
||||
- _CameraDistanceImpact: 0
|
||||
- _CelExtraEnabled: 1
|
||||
- _CelNumSteps: 3
|
||||
- _CelPrimaryEnabled: 0
|
||||
- _CelPrimaryMode: 1
|
||||
- _Cull: 2
|
||||
- _Cutoff: 0.5
|
||||
- _DetailMapBlendingMode: 0
|
||||
- _DetailMapImpact: 0
|
||||
- _DetailNormalMapScale: 1
|
||||
- _DstBlend: 0
|
||||
- _FlatRimAmount: 0.5
|
||||
- _FlatRimEdgeSmoothness: 0
|
||||
- _FlatRimEnabled: 1
|
||||
- _FlatRimLightAlign: 0
|
||||
- _FlatRimSize: 0.199
|
||||
- _FlatShadowsEnabled: 1
|
||||
- _FlatSmoothness: 0.362
|
||||
- _FlatSpecularEdgeSmoothness: 0.854
|
||||
- _FlatSpecularEnabled: 1
|
||||
- _FlatSpecularSize: 0.118
|
||||
- _FlatSpecularSmoothness: 0.5
|
||||
- _Flatness: 1
|
||||
- _FlatnessExtra: 1
|
||||
- _FlatnessSecondary: 1
|
||||
- _GlossMapScale: 1
|
||||
- _Glossiness: 0
|
||||
- _GlossyReflections: 1
|
||||
- _GradientAngle: 0
|
||||
- _GradientCenterX: 0
|
||||
- _GradientCenterY: 0
|
||||
- _GradientEnabled: 0
|
||||
- _GradientEnd: 0.55
|
||||
- _GradientSize: 10
|
||||
- _GradientSpace: 0
|
||||
- _GradientStart: 1.17
|
||||
- _LightContribution: 0.5
|
||||
- _LightFalloffSize: 0.0001
|
||||
- _LightmapDirectionPitch: 0
|
||||
- _LightmapDirectionYaw: 0
|
||||
- _Metallic: 0
|
||||
- _Mode: 0
|
||||
- _OcclusionStrength: 1
|
||||
- _OutlineDepthOffset: 0
|
||||
- _OutlineEnabled: 0
|
||||
- _OutlineScale: 1
|
||||
- _OutlineSpace: 0
|
||||
- _OutlineWidth: 1
|
||||
- _OverrideLightmapDir: 0
|
||||
- _OverrideShadows: 1
|
||||
- _OverrideShadowsEnabled: 1
|
||||
- _Parallax: 0.02
|
||||
- _QueueOffset: 0
|
||||
- _RimEnabled: 1
|
||||
- _SecondaryColor: 1
|
||||
- _SecondaryColorEnabled: 1
|
||||
- _SelfShadingSize: -0.93
|
||||
- _SelfShadingSizeExtra: 0.5
|
||||
- _ShadowEdgeSize: 0.05
|
||||
- _ShadowEdgeSizeExtra: 0.05
|
||||
- _ShadowEdgeSmoothness: 0.071
|
||||
- _ShadowFalloff: 0.01
|
||||
- _SmoothnessTextureChannel: 0
|
||||
- _SpecularEnabled: 1
|
||||
- _SpecularHighlights: 1
|
||||
- _SrcBlend: 1
|
||||
- _Surface: 0
|
||||
- _TextureBlendingMode: 0
|
||||
- _TextureImpact: 1
|
||||
- _UVSec: 0
|
||||
- _UnityShadowMode: 1
|
||||
- _UnityShadowOcclusion: 0
|
||||
- _UnityShadowPower: 0.2
|
||||
- _UnityShadowSharpness: 1
|
||||
- _VertexColorsEnabled: 0
|
||||
- _VertexExtrusionSmoothNormals: 0
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _BaseColor: {r: 0.33749866, g: 0.31078675, b: 0.6792453, a: 1}
|
||||
- _Color: {r: 0.3374987, g: 0.31078678, b: 0.6792453, a: 1}
|
||||
- _ColorCelShadow: {r: 0.49056602, g: 0.34478462, b: 0.4476891, a: 1}
|
||||
- _ColorDim: {r: 0.85, g: 0.85, b: 0.85, a: 0.85}
|
||||
- _ColorDimCurve: {r: 0.85, g: 0.85, b: 0.85, a: 0.85}
|
||||
- _ColorDimExtra: {r: 0.34043273, g: 0.2747419, b: 0.3962264, a: 0.85}
|
||||
- _ColorDimSteps: {r: 0.85, g: 0.85, b: 0.85, a: 0.85}
|
||||
- _ColorGradient: {r: 0.006747131, g: 0, b: 0.05660379, a: 1}
|
||||
- _ColorSecondary: {r: 1, g: 0.55879205, b: 0, a: 1}
|
||||
- _ColorShadow: {r: 0.5, g: 0.5, b: 0.5, a: 1}
|
||||
- _ColorShadows: {r: 0.5471698, g: 0.37346402, b: 0.26584196, a: 1}
|
||||
- _DetailMapColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _EmissionColor: {r: 4.9245777, g: 0, b: 0, a: 1}
|
||||
- _FlatRimColor: {r: 0.7169812, g: 0.64907444, b: 0.34834465, a: 1}
|
||||
- _FlatSpecularColor: {r: 0.5313279, g: 0.5660378, b: 0.5609782, a: 1}
|
||||
- _LightmapDirection: {r: 0, g: 1, b: 0, a: 0}
|
||||
- _OutlineColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _UnityShadowColor: {r: 0.65, g: 0.65, b: 0.65, a: 1}
|
||||
m_BuildTextureStacks: []
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 1a5602b1bb62540499324bab7b9de1a0
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,191 @@
|
||||
%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: Car-Set1-Car4Body
|
||||
m_Shader: {fileID: 4800000, guid: bee44b4a58655ee4cbff107302a3e131, type: 3}
|
||||
m_Parent: {fileID: 0}
|
||||
m_ModifiedSerializedProperties: 0
|
||||
m_ValidKeywords:
|
||||
- DR_CEL_EXTRA_ON
|
||||
- DR_GRADIENT_ON
|
||||
- DR_RIM_ON
|
||||
- DR_SPECULAR_ON
|
||||
- _CELPRIMARYMODE_SINGLE
|
||||
- _DETAILMAPBLENDINGMODE_MULTIPLY
|
||||
- _GRADIENTSPACE_WORLD
|
||||
- _OUTLINESPACE_SCREEN
|
||||
- _TEXTUREBLENDINGMODE_MULTIPLY
|
||||
- _UNITYSHADOWMODE_MULTIPLY
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 1
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses:
|
||||
- SRPDEFAULTUNLIT
|
||||
m_LockedProperties:
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _BaseMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BumpMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _CelCurveTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _CelStepTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
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}
|
||||
- _DetailMap:
|
||||
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: 0}
|
||||
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}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _AlphaClip: 0
|
||||
- _BaseMapPremultiply: 0
|
||||
- _Blend: 0
|
||||
- _BumpScale: 1
|
||||
- _CameraDistanceImpact: 0
|
||||
- _CelExtraEnabled: 1
|
||||
- _CelNumSteps: 3
|
||||
- _CelPrimaryEnabled: 0
|
||||
- _CelPrimaryMode: 1
|
||||
- _Cull: 2
|
||||
- _Cutoff: 0.5
|
||||
- _DetailMapBlendingMode: 0
|
||||
- _DetailMapImpact: 0
|
||||
- _DetailNormalMapScale: 1
|
||||
- _DstBlend: 0
|
||||
- _FlatRimAmount: 0.5
|
||||
- _FlatRimEdgeSmoothness: 0.696
|
||||
- _FlatRimEnabled: 1
|
||||
- _FlatRimLightAlign: 0
|
||||
- _FlatRimSize: 0.229
|
||||
- _FlatShadowsEnabled: 1
|
||||
- _FlatSmoothness: 0.362
|
||||
- _FlatSpecularEdgeSmoothness: 0.854
|
||||
- _FlatSpecularEnabled: 1
|
||||
- _FlatSpecularSize: 0.118
|
||||
- _FlatSpecularSmoothness: 0.5
|
||||
- _Flatness: 1
|
||||
- _FlatnessExtra: 1
|
||||
- _FlatnessSecondary: 1
|
||||
- _GlossMapScale: 1
|
||||
- _Glossiness: 0
|
||||
- _GlossyReflections: 1
|
||||
- _GradientAngle: 0
|
||||
- _GradientCenterX: 0
|
||||
- _GradientCenterY: 1.03
|
||||
- _GradientEnabled: 1
|
||||
- _GradientEnd: 0.55
|
||||
- _GradientSize: 10
|
||||
- _GradientSpace: 0
|
||||
- _GradientStart: 1.17
|
||||
- _LightContribution: 0.5
|
||||
- _LightFalloffSize: 0.0001
|
||||
- _LightmapDirectionPitch: 0
|
||||
- _LightmapDirectionYaw: 0
|
||||
- _Metallic: 0
|
||||
- _Mode: 0
|
||||
- _OcclusionStrength: 1
|
||||
- _OutlineDepthOffset: 0
|
||||
- _OutlineEnabled: 0
|
||||
- _OutlineScale: 1
|
||||
- _OutlineSpace: 0
|
||||
- _OutlineWidth: 1
|
||||
- _OverrideLightmapDir: 0
|
||||
- _OverrideShadows: 1
|
||||
- _OverrideShadowsEnabled: 1
|
||||
- _Parallax: 0.02
|
||||
- _QueueOffset: 0
|
||||
- _RimEnabled: 1
|
||||
- _SecondaryColor: 1
|
||||
- _SecondaryColorEnabled: 1
|
||||
- _SelfShadingSize: -0.93
|
||||
- _SelfShadingSizeExtra: 0.5
|
||||
- _ShadowEdgeSize: 0.05
|
||||
- _ShadowEdgeSizeExtra: 0.05
|
||||
- _ShadowEdgeSmoothness: 0.071
|
||||
- _ShadowFalloff: 0.01
|
||||
- _SmoothnessTextureChannel: 0
|
||||
- _SpecularEnabled: 1
|
||||
- _SpecularHighlights: 1
|
||||
- _SrcBlend: 1
|
||||
- _Surface: 0
|
||||
- _TextureBlendingMode: 0
|
||||
- _TextureImpact: 1
|
||||
- _UVSec: 0
|
||||
- _UnityShadowMode: 1
|
||||
- _UnityShadowOcclusion: 0
|
||||
- _UnityShadowPower: 0.2
|
||||
- _UnityShadowSharpness: 1
|
||||
- _VertexColorsEnabled: 0
|
||||
- _VertexExtrusionSmoothNormals: 0
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _BaseColor: {r: 0.8980392, g: 0, b: 0.42975146, a: 1}
|
||||
- _Color: {r: 0.8980392, g: 0, b: 0.4297515, a: 1}
|
||||
- _ColorCelShadow: {r: 0.49056602, g: 0.34478462, b: 0.4476891, a: 1}
|
||||
- _ColorDim: {r: 0.85, g: 0.85, b: 0.85, a: 0.85}
|
||||
- _ColorDimCurve: {r: 0.85, g: 0.85, b: 0.85, a: 0.85}
|
||||
- _ColorDimExtra: {r: 0.5566038, g: 0.3281862, b: 0.3344565, a: 0.85}
|
||||
- _ColorDimSteps: {r: 0.85, g: 0.85, b: 0.85, a: 0.85}
|
||||
- _ColorGradient: {r: 0.09545211, g: 0.12019662, b: 0.14150941, a: 1}
|
||||
- _ColorSecondary: {r: 1, g: 0.55879205, b: 0, a: 1}
|
||||
- _ColorShadow: {r: 0.5, g: 0.5, b: 0.5, a: 1}
|
||||
- _ColorShadows: {r: 0.5471698, g: 0.37346402, b: 0.26584196, a: 1}
|
||||
- _DetailMapColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _EmissionColor: {r: 4.9245777, g: 0, b: 0, a: 1}
|
||||
- _FlatRimColor: {r: 1, g: 0.91906786, b: 0.5518868, a: 1}
|
||||
- _FlatSpecularColor: {r: 1, g: 0.4323543, b: 0.39215684, a: 1}
|
||||
- _LightmapDirection: {r: 0, g: 1, b: 0, a: 0}
|
||||
- _OutlineColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _UnityShadowColor: {r: 0.65, g: 0.65, b: 0.65, a: 1}
|
||||
m_BuildTextureStacks: []
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: b4512ff0865814bd4b30cfb8abc628df
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,191 @@
|
||||
%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: Car-Set1-Plane
|
||||
m_Shader: {fileID: 4800000, guid: bee44b4a58655ee4cbff107302a3e131, type: 3}
|
||||
m_Parent: {fileID: 0}
|
||||
m_ModifiedSerializedProperties: 0
|
||||
m_ValidKeywords:
|
||||
- DR_CEL_EXTRA_ON
|
||||
- DR_GRADIENT_ON
|
||||
- DR_RIM_ON
|
||||
- _CELPRIMARYMODE_SINGLE
|
||||
- _DETAILMAPBLENDINGMODE_MULTIPLY
|
||||
- _GRADIENTSPACE_WORLD
|
||||
- _OUTLINESPACE_SCREEN
|
||||
- _TEXTUREBLENDINGMODE_MULTIPLY
|
||||
- _UNITYSHADOWMODE_MULTIPLY
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 1
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses:
|
||||
- SRPDEFAULTUNLIT
|
||||
m_LockedProperties:
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _BaseMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BumpMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _CelCurveTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _CelStepTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
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}
|
||||
- _DetailMap:
|
||||
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: 0}
|
||||
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}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _AlphaClip: 0
|
||||
- _BaseMapPremultiply: 0
|
||||
- _Blend: 0
|
||||
- _BumpScale: 1
|
||||
- _CameraDistanceImpact: 0
|
||||
- _CelExtraEnabled: 1
|
||||
- _CelNumSteps: 3
|
||||
- _CelPrimaryEnabled: 1
|
||||
- _CelPrimaryMode: 1
|
||||
- _Cull: 2
|
||||
- _Cutoff: 0.5
|
||||
- _DetailMapBlendingMode: 0
|
||||
- _DetailMapImpact: 0
|
||||
- _DetailNormalMapScale: 1
|
||||
- _DstBlend: 0
|
||||
- _FlatRimAmount: 0.5
|
||||
- _FlatRimEdgeSmoothness: 0.448
|
||||
- _FlatRimEnabled: 1
|
||||
- _FlatRimLightAlign: 0.279
|
||||
- _FlatRimSize: 0
|
||||
- _FlatShadowsEnabled: 1
|
||||
- _FlatSmoothness: 0.362
|
||||
- _FlatSpecularEdgeSmoothness: 0.897
|
||||
- _FlatSpecularEnabled: 1
|
||||
- _FlatSpecularSize: 0.1
|
||||
- _FlatSpecularSmoothness: 0.5
|
||||
- _Flatness: 1
|
||||
- _FlatnessExtra: 1
|
||||
- _FlatnessSecondary: 1
|
||||
- _GlossMapScale: 1
|
||||
- _Glossiness: 0
|
||||
- _GlossyReflections: 1
|
||||
- _GradientAngle: 31
|
||||
- _GradientCenterX: 0
|
||||
- _GradientCenterY: 0
|
||||
- _GradientEnabled: 1
|
||||
- _GradientEnd: 0.55
|
||||
- _GradientSize: 27.91
|
||||
- _GradientSpace: 0
|
||||
- _GradientStart: 1.17
|
||||
- _LightContribution: 0.5
|
||||
- _LightFalloffSize: 0.0001
|
||||
- _LightmapDirectionPitch: 0
|
||||
- _LightmapDirectionYaw: 0
|
||||
- _Metallic: 0
|
||||
- _Mode: 0
|
||||
- _OcclusionStrength: 1
|
||||
- _OutlineDepthOffset: 0
|
||||
- _OutlineEnabled: 0
|
||||
- _OutlineScale: 1
|
||||
- _OutlineSpace: 0
|
||||
- _OutlineWidth: 1
|
||||
- _OverrideLightmapDir: 0
|
||||
- _OverrideShadows: 1
|
||||
- _OverrideShadowsEnabled: 1
|
||||
- _Parallax: 0.02
|
||||
- _QueueOffset: 0
|
||||
- _ReceiveShadows: 1
|
||||
- _RimEnabled: 1
|
||||
- _SecondaryColor: 1
|
||||
- _SecondaryColorEnabled: 1
|
||||
- _SelfShadingSize: 0.308
|
||||
- _SelfShadingSizeExtra: 0.97
|
||||
- _ShadowEdgeSize: 0.418
|
||||
- _ShadowEdgeSizeExtra: 0.166
|
||||
- _ShadowEdgeSmoothness: 0.071
|
||||
- _ShadowFalloff: 0.01
|
||||
- _SmoothnessTextureChannel: 0
|
||||
- _SpecularEnabled: 0
|
||||
- _SpecularHighlights: 1
|
||||
- _SrcBlend: 1
|
||||
- _Surface: 0
|
||||
- _TextureBlendingMode: 0
|
||||
- _TextureImpact: 1
|
||||
- _UVSec: 0
|
||||
- _UnityShadowMode: 1
|
||||
- _UnityShadowOcclusion: 0
|
||||
- _UnityShadowPower: 0.332
|
||||
- _UnityShadowSharpness: 1
|
||||
- _VertexColorsEnabled: 0
|
||||
- _VertexExtrusionSmoothNormals: 0
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _BaseColor: {r: 0.51530796, g: 0.5660378, b: 0.5499659, a: 1}
|
||||
- _Color: {r: 0.51530796, g: 0.5660378, b: 0.549966, a: 1}
|
||||
- _ColorCelShadow: {r: 0.49056602, g: 0.34478462, b: 0.4476891, a: 1}
|
||||
- _ColorDim: {r: 0, g: 0, b: 0, a: 0.85}
|
||||
- _ColorDimCurve: {r: 0.85, g: 0.85, b: 0.85, a: 0.85}
|
||||
- _ColorDimExtra: {r: 0.46502313, g: 0.4716981, b: 0.46889985, a: 0.85}
|
||||
- _ColorDimSteps: {r: 0.85, g: 0.85, b: 0.85, a: 0.85}
|
||||
- _ColorGradient: {r: 0.6161, g: 0.6698113, b: 0.6584493, a: 1}
|
||||
- _ColorSecondary: {r: 1, g: 0.55879205, b: 0, a: 1}
|
||||
- _ColorShadow: {r: 0.5, g: 0.5, b: 0.5, a: 1}
|
||||
- _ColorShadows: {r: 0.5471698, g: 0.37346402, b: 0.26584196, a: 1}
|
||||
- _DetailMapColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _EmissionColor: {r: 4.9245777, g: 0, b: 0, a: 1}
|
||||
- _FlatRimColor: {r: 0.735849, g: 0.7299634, b: 0.60048056, a: 1}
|
||||
- _FlatSpecularColor: {r: 0.3474101, g: 0.3490566, b: 0.348743, a: 1}
|
||||
- _LightmapDirection: {r: 0, g: 1, b: 0, a: 0}
|
||||
- _OutlineColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _UnityShadowColor: {r: 0.65, g: 0.65, b: 0.65, a: 1}
|
||||
m_BuildTextureStacks: []
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 6af3ee3816dbf4e429aa2552d2bfd8f0
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,159 @@
|
||||
%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: Car-Set1-Plane2
|
||||
m_Shader: {fileID: 4800000, guid: bee44b4a58655ee4cbff107302a3e131, type: 3}
|
||||
m_ShaderKeywords: DR_CEL_EXTRA_ON DR_GRADIENT_ON DR_RIM_ON _FLAT_SHADOWS_ENABLED
|
||||
_FLAT_SPECULAR_ENABLED _UNITYSHADOWMODE_MULTIPLY
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 1
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses:
|
||||
- SRPDEFAULTUNLIT
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _BaseMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BumpMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _CelCurveTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _CelStepTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
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: 0}
|
||||
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}
|
||||
m_Floats:
|
||||
- _AlphaClip: 0
|
||||
- _Blend: 0
|
||||
- _BumpScale: 1
|
||||
- _CelExtraEnabled: 1
|
||||
- _CelNumSteps: 3
|
||||
- _CelPrimaryEnabled: 0
|
||||
- _CelPrimaryMode: 1
|
||||
- _Cull: 2
|
||||
- _Cutoff: 0.5
|
||||
- _DetailNormalMapScale: 1
|
||||
- _DstBlend: 0
|
||||
- _FlatRimAmount: 0.5
|
||||
- _FlatRimEdgeSmoothness: 0.279
|
||||
- _FlatRimEnabled: 1
|
||||
- _FlatRimLightAlign: 0
|
||||
- _FlatRimSize: 0.174
|
||||
- _FlatShadowsEnabled: 1
|
||||
- _FlatSmoothness: 0.362
|
||||
- _FlatSpecularEdgeSmoothness: 0.897
|
||||
- _FlatSpecularEnabled: 1
|
||||
- _FlatSpecularSize: 0.1
|
||||
- _FlatSpecularSmoothness: 0.5
|
||||
- _Flatness: 1
|
||||
- _FlatnessExtra: 0.775
|
||||
- _FlatnessSecondary: 1
|
||||
- _GlossMapScale: 1
|
||||
- _Glossiness: 0
|
||||
- _GlossyReflections: 1
|
||||
- _GradientAngle: 0
|
||||
- _GradientCenterX: 0
|
||||
- _GradientCenterY: 0
|
||||
- _GradientEnabled: 1
|
||||
- _GradientEnd: 0.55
|
||||
- _GradientSize: 10
|
||||
- _GradientStart: 1.17
|
||||
- _LightContribution: 0.5
|
||||
- _LightFalloffSize: 0.0001
|
||||
- _LightmapDirectionPitch: 0
|
||||
- _LightmapDirectionYaw: 0
|
||||
- _Metallic: 0
|
||||
- _Mode: 0
|
||||
- _OcclusionStrength: 1
|
||||
- _OverrideLightmapDir: 0
|
||||
- _OverrideShadows: 1
|
||||
- _OverrideShadowsEnabled: 1
|
||||
- _Parallax: 0.02
|
||||
- _QueueOffset: 0
|
||||
- _RimEnabled: 1
|
||||
- _SecondaryColor: 1
|
||||
- _SecondaryColorEnabled: 1
|
||||
- _SelfShadingSize: -0.93
|
||||
- _SelfShadingSizeExtra: 0.755
|
||||
- _ShadowEdgeSize: 0.05
|
||||
- _ShadowEdgeSizeExtra: 0.187
|
||||
- _ShadowEdgeSmoothness: 0.071
|
||||
- _ShadowFalloff: 0.01
|
||||
- _SmoothnessTextureChannel: 0
|
||||
- _SpecularEnabled: 0
|
||||
- _SpecularHighlights: 1
|
||||
- _SrcBlend: 1
|
||||
- _Surface: 0
|
||||
- _TextureBlendingMode: 0
|
||||
- _TextureImpact: 1
|
||||
- _UVSec: 0
|
||||
- _UnityShadowMode: 1
|
||||
- _UnityShadowPower: 0.2
|
||||
- _UnityShadowSharpness: 1
|
||||
- _VertexColorsEnabled: 0
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _BaseColor: {r: 0.764151, g: 0.764151, b: 0.764151, a: 1}
|
||||
- _Color: {r: 0.764151, g: 0.764151, b: 0.764151, a: 1}
|
||||
- _ColorCelShadow: {r: 0.49056602, g: 0.34478462, b: 0.4476891, a: 1}
|
||||
- _ColorDim: {r: 0.85, g: 0.85, b: 0.85, a: 0.85}
|
||||
- _ColorDimCurve: {r: 0.85, g: 0.85, b: 0.85, a: 0.85}
|
||||
- _ColorDimExtra: {r: 0.4056604, g: 0.26980242, b: 0.26980242, a: 0.85}
|
||||
- _ColorDimSteps: {r: 0.85, g: 0.85, b: 0.85, a: 0.85}
|
||||
- _ColorGradient: {r: 0.33962262, g: 0.33962262, b: 0.33962262, a: 1}
|
||||
- _ColorSecondary: {r: 1, g: 0.55879205, b: 0, a: 1}
|
||||
- _ColorShadow: {r: 0.5, g: 0.5, b: 0.5, a: 1}
|
||||
- _ColorShadows: {r: 0.5471698, g: 0.37346402, b: 0.26584196, a: 1}
|
||||
- _EmissionColor: {r: 4.9245777, g: 0, b: 0, a: 1}
|
||||
- _FlatRimColor: {r: 0.7830189, g: 0.71021837, b: 0.38781595, a: 1}
|
||||
- _FlatSpecularColor: {r: 1, g: 0.90740365, b: 0.3915094, a: 1}
|
||||
- _LightmapDirection: {r: 0, g: 1, b: 0, a: 0}
|
||||
- _UnityShadowColor: {r: 0.65, g: 0.65, b: 0.65, a: 1}
|
||||
m_BuildTextureStacks: []
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: b2da8ee576f344749807e82e99bf8239
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,189 @@
|
||||
%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: Car-Set1-Tyres
|
||||
m_Shader: {fileID: 4800000, guid: bee44b4a58655ee4cbff107302a3e131, type: 3}
|
||||
m_Parent: {fileID: 0}
|
||||
m_ModifiedSerializedProperties: 0
|
||||
m_ValidKeywords:
|
||||
- DR_CEL_EXTRA_ON
|
||||
- DR_GRADIENT_ON
|
||||
- _CELPRIMARYMODE_SINGLE
|
||||
- _DETAILMAPBLENDINGMODE_MULTIPLY
|
||||
- _GRADIENTSPACE_WORLD
|
||||
- _OUTLINESPACE_SCREEN
|
||||
- _TEXTUREBLENDINGMODE_MULTIPLY
|
||||
- _UNITYSHADOWMODE_MULTIPLY
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 1
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses:
|
||||
- SRPDEFAULTUNLIT
|
||||
m_LockedProperties:
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _BaseMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BumpMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _CelCurveTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _CelStepTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
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}
|
||||
- _DetailMap:
|
||||
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: 0}
|
||||
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}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _AlphaClip: 0
|
||||
- _BaseMapPremultiply: 0
|
||||
- _Blend: 0
|
||||
- _BumpScale: 1
|
||||
- _CameraDistanceImpact: 0
|
||||
- _CelExtraEnabled: 1
|
||||
- _CelNumSteps: 3
|
||||
- _CelPrimaryEnabled: 1
|
||||
- _CelPrimaryMode: 1
|
||||
- _Cull: 2
|
||||
- _Cutoff: 0.5
|
||||
- _DetailMapBlendingMode: 0
|
||||
- _DetailMapImpact: 0
|
||||
- _DetailNormalMapScale: 1
|
||||
- _DstBlend: 0
|
||||
- _FlatRimAmount: 0.5
|
||||
- _FlatRimEdgeSmoothness: 0.611
|
||||
- _FlatRimEnabled: 1
|
||||
- _FlatRimLightAlign: 0
|
||||
- _FlatRimSize: 0.156
|
||||
- _FlatShadowsEnabled: 1
|
||||
- _FlatSmoothness: 0.362
|
||||
- _FlatSpecularEdgeSmoothness: 0.897
|
||||
- _FlatSpecularEnabled: 1
|
||||
- _FlatSpecularSize: 0.1
|
||||
- _FlatSpecularSmoothness: 0.5
|
||||
- _Flatness: 1
|
||||
- _FlatnessExtra: 1
|
||||
- _FlatnessSecondary: 1
|
||||
- _GlossMapScale: 1
|
||||
- _Glossiness: 0
|
||||
- _GlossyReflections: 1
|
||||
- _GradientAngle: 0
|
||||
- _GradientCenterX: 0
|
||||
- _GradientCenterY: 0
|
||||
- _GradientEnabled: 1
|
||||
- _GradientEnd: 0.55
|
||||
- _GradientSize: 10
|
||||
- _GradientSpace: 0
|
||||
- _GradientStart: 1.17
|
||||
- _LightContribution: 0.5
|
||||
- _LightFalloffSize: 0.0001
|
||||
- _LightmapDirectionPitch: 0
|
||||
- _LightmapDirectionYaw: 0
|
||||
- _Metallic: 0
|
||||
- _Mode: 0
|
||||
- _OcclusionStrength: 1
|
||||
- _OutlineDepthOffset: 0
|
||||
- _OutlineEnabled: 0
|
||||
- _OutlineScale: 1
|
||||
- _OutlineSpace: 0
|
||||
- _OutlineWidth: 1
|
||||
- _OverrideLightmapDir: 0
|
||||
- _OverrideShadows: 1
|
||||
- _OverrideShadowsEnabled: 1
|
||||
- _Parallax: 0.02
|
||||
- _QueueOffset: 0
|
||||
- _RimEnabled: 0
|
||||
- _SecondaryColor: 1
|
||||
- _SecondaryColorEnabled: 1
|
||||
- _SelfShadingSize: -0.93
|
||||
- _SelfShadingSizeExtra: 0.5
|
||||
- _ShadowEdgeSize: 0.05
|
||||
- _ShadowEdgeSizeExtra: 0.05
|
||||
- _ShadowEdgeSmoothness: 0.071
|
||||
- _ShadowFalloff: 0.01
|
||||
- _SmoothnessTextureChannel: 0
|
||||
- _SpecularEnabled: 0
|
||||
- _SpecularHighlights: 1
|
||||
- _SrcBlend: 1
|
||||
- _Surface: 0
|
||||
- _TextureBlendingMode: 0
|
||||
- _TextureImpact: 1
|
||||
- _UVSec: 0
|
||||
- _UnityShadowMode: 1
|
||||
- _UnityShadowOcclusion: 0
|
||||
- _UnityShadowPower: 0.2
|
||||
- _UnityShadowSharpness: 1
|
||||
- _VertexColorsEnabled: 0
|
||||
- _VertexExtrusionSmoothNormals: 0
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _BaseColor: {r: 0.03773582, g: 0.03773582, b: 0.03773582, a: 1}
|
||||
- _Color: {r: 0.03773582, g: 0.03773582, b: 0.03773582, a: 1}
|
||||
- _ColorCelShadow: {r: 0.49056602, g: 0.34478462, b: 0.4476891, a: 1}
|
||||
- _ColorDim: {r: 0.3679245, g: 0.3679245, b: 0.3679245, a: 0.85}
|
||||
- _ColorDimCurve: {r: 0.85, g: 0.85, b: 0.85, a: 0.85}
|
||||
- _ColorDimExtra: {r: 0, g: 0, b: 0, a: 0.85}
|
||||
- _ColorDimSteps: {r: 0.85, g: 0.85, b: 0.85, a: 0.85}
|
||||
- _ColorGradient: {r: 0.0754717, g: 0.0754717, b: 0.07058824, a: 1}
|
||||
- _ColorSecondary: {r: 1, g: 0.55879205, b: 0, a: 1}
|
||||
- _ColorShadow: {r: 0.5, g: 0.5, b: 0.5, a: 1}
|
||||
- _ColorShadows: {r: 0.5471698, g: 0.37346402, b: 0.26584196, a: 1}
|
||||
- _DetailMapColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _EmissionColor: {r: 4.9245777, g: 0, b: 0, a: 1}
|
||||
- _FlatRimColor: {r: 0.06274509, g: 0.3764706, b: 0.36200908, a: 1}
|
||||
- _FlatSpecularColor: {r: 0.3474101, g: 0.3490566, b: 0.348743, a: 1}
|
||||
- _LightmapDirection: {r: 0, g: 1, b: 0, a: 0}
|
||||
- _OutlineColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _UnityShadowColor: {r: 0.65, g: 0.65, b: 0.65, a: 1}
|
||||
m_BuildTextureStacks: []
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 7a45e777780ca4486a568ecccba01d22
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,189 @@
|
||||
%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: Car-Set1-Windows
|
||||
m_Shader: {fileID: 4800000, guid: bee44b4a58655ee4cbff107302a3e131, type: 3}
|
||||
m_Parent: {fileID: 0}
|
||||
m_ModifiedSerializedProperties: 0
|
||||
m_ValidKeywords:
|
||||
- DR_GRADIENT_ON
|
||||
- DR_SPECULAR_ON
|
||||
- _CELPRIMARYMODE_SINGLE
|
||||
- _DETAILMAPBLENDINGMODE_MULTIPLY
|
||||
- _GRADIENTSPACE_WORLD
|
||||
- _OUTLINESPACE_SCREEN
|
||||
- _TEXTUREBLENDINGMODE_MULTIPLY
|
||||
- _UNITYSHADOWMODE_MULTIPLY
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 1
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses:
|
||||
- SRPDEFAULTUNLIT
|
||||
m_LockedProperties:
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _BaseMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BumpMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _CelCurveTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _CelStepTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
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}
|
||||
- _DetailMap:
|
||||
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: 0}
|
||||
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}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _AlphaClip: 0
|
||||
- _BaseMapPremultiply: 0
|
||||
- _Blend: 0
|
||||
- _BumpScale: 1
|
||||
- _CameraDistanceImpact: 0
|
||||
- _CelExtraEnabled: 0
|
||||
- _CelNumSteps: 3
|
||||
- _CelPrimaryEnabled: 1
|
||||
- _CelPrimaryMode: 1
|
||||
- _Cull: 2
|
||||
- _Cutoff: 0.5
|
||||
- _DetailMapBlendingMode: 0
|
||||
- _DetailMapImpact: 0
|
||||
- _DetailNormalMapScale: 1
|
||||
- _DstBlend: 0
|
||||
- _FlatRimAmount: 0.5
|
||||
- _FlatRimEdgeSmoothness: 0.611
|
||||
- _FlatRimEnabled: 1
|
||||
- _FlatRimLightAlign: 0
|
||||
- _FlatRimSize: 0.156
|
||||
- _FlatShadowsEnabled: 1
|
||||
- _FlatSmoothness: 0.362
|
||||
- _FlatSpecularEdgeSmoothness: 0.15
|
||||
- _FlatSpecularEnabled: 1
|
||||
- _FlatSpecularSize: 0.1
|
||||
- _FlatSpecularSmoothness: 0.5
|
||||
- _Flatness: 1
|
||||
- _FlatnessExtra: 1
|
||||
- _FlatnessSecondary: 1
|
||||
- _GlossMapScale: 1
|
||||
- _Glossiness: 0
|
||||
- _GlossyReflections: 1
|
||||
- _GradientAngle: 0
|
||||
- _GradientCenterX: 0
|
||||
- _GradientCenterY: 0
|
||||
- _GradientEnabled: 1
|
||||
- _GradientEnd: 0.55
|
||||
- _GradientSize: 10
|
||||
- _GradientSpace: 0
|
||||
- _GradientStart: 1.17
|
||||
- _LightContribution: 0.5
|
||||
- _LightFalloffSize: 0.0001
|
||||
- _LightmapDirectionPitch: 0
|
||||
- _LightmapDirectionYaw: 0
|
||||
- _Metallic: 0
|
||||
- _Mode: 0
|
||||
- _OcclusionStrength: 1
|
||||
- _OutlineDepthOffset: 0
|
||||
- _OutlineEnabled: 0
|
||||
- _OutlineScale: 1
|
||||
- _OutlineSpace: 0
|
||||
- _OutlineWidth: 1
|
||||
- _OverrideLightmapDir: 0
|
||||
- _OverrideShadows: 1
|
||||
- _OverrideShadowsEnabled: 1
|
||||
- _Parallax: 0.02
|
||||
- _QueueOffset: 0
|
||||
- _RimEnabled: 0
|
||||
- _SecondaryColor: 1
|
||||
- _SecondaryColorEnabled: 1
|
||||
- _SelfShadingSize: -0.93
|
||||
- _SelfShadingSizeExtra: 0.5
|
||||
- _ShadowEdgeSize: 0.05
|
||||
- _ShadowEdgeSizeExtra: 0.05
|
||||
- _ShadowEdgeSmoothness: 0.071
|
||||
- _ShadowFalloff: 0.01
|
||||
- _SmoothnessTextureChannel: 0
|
||||
- _SpecularEnabled: 1
|
||||
- _SpecularHighlights: 1
|
||||
- _SrcBlend: 1
|
||||
- _Surface: 0
|
||||
- _TextureBlendingMode: 0
|
||||
- _TextureImpact: 1
|
||||
- _UVSec: 0
|
||||
- _UnityShadowMode: 1
|
||||
- _UnityShadowOcclusion: 0
|
||||
- _UnityShadowPower: 0.2
|
||||
- _UnityShadowSharpness: 1
|
||||
- _VertexColorsEnabled: 0
|
||||
- _VertexExtrusionSmoothNormals: 0
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _BaseColor: {r: 0.27358484, g: 0.27358484, b: 0.27358484, a: 1}
|
||||
- _Color: {r: 0.2735849, g: 0.2735849, b: 0.2735849, a: 1}
|
||||
- _ColorCelShadow: {r: 0.49056602, g: 0.34478462, b: 0.4476891, a: 1}
|
||||
- _ColorDim: {r: 0.49056602, g: 0.49056602, b: 0.49056602, a: 0.85}
|
||||
- _ColorDimCurve: {r: 0.85, g: 0.85, b: 0.85, a: 0.85}
|
||||
- _ColorDimExtra: {r: 0.85, g: 0.85, b: 0.85, a: 0.85}
|
||||
- _ColorDimSteps: {r: 0.85, g: 0.85, b: 0.85, a: 0.85}
|
||||
- _ColorGradient: {r: 0.05660379, g: 0.05660379, b: 0.05660379, a: 1}
|
||||
- _ColorSecondary: {r: 1, g: 0.55879205, b: 0, a: 1}
|
||||
- _ColorShadow: {r: 0.5, g: 0.5, b: 0.5, a: 1}
|
||||
- _ColorShadows: {r: 0.5471698, g: 0.37346402, b: 0.26584196, a: 1}
|
||||
- _DetailMapColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _EmissionColor: {r: 4.9245777, g: 0, b: 0, a: 1}
|
||||
- _FlatRimColor: {r: 0.06274509, g: 0.3764706, b: 0.36200908, a: 1}
|
||||
- _FlatSpecularColor: {r: 0.3474101, g: 0.3490566, b: 0.348743, a: 1}
|
||||
- _LightmapDirection: {r: 0, g: 1, b: 0, a: 0}
|
||||
- _OutlineColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _UnityShadowColor: {r: 0.65, g: 0.65, b: 0.65, a: 1}
|
||||
m_BuildTextureStacks: []
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: ce73e3b0b1ff34be89316c372e7dd2d1
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 68923b2ab06f14285ba45f61e17b9d92
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,188 @@
|
||||
%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: Car-Set2-Car4Body-1
|
||||
m_Shader: {fileID: 4800000, guid: bee44b4a58655ee4cbff107302a3e131, type: 3}
|
||||
m_Parent: {fileID: 0}
|
||||
m_ModifiedSerializedProperties: 0
|
||||
m_ValidKeywords:
|
||||
- DR_SPECULAR_ON
|
||||
- _CELPRIMARYMODE_SINGLE
|
||||
- _DETAILMAPBLENDINGMODE_MULTIPLY
|
||||
- _GRADIENTSPACE_WORLD
|
||||
- _OUTLINESPACE_SCREEN
|
||||
- _TEXTUREBLENDINGMODE_MULTIPLY
|
||||
m_InvalidKeywords:
|
||||
- _UNITYSHADOWMODE_NONE
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses:
|
||||
- SRPDEFAULTUNLIT
|
||||
m_LockedProperties:
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _BaseMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BumpMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _CelCurveTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _CelStepTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
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}
|
||||
- _DetailMap:
|
||||
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: 0}
|
||||
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}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _AlphaClip: 0
|
||||
- _BaseMapPremultiply: 0
|
||||
- _Blend: 0
|
||||
- _BumpScale: 1
|
||||
- _CameraDistanceImpact: 0
|
||||
- _CelExtraEnabled: 0
|
||||
- _CelNumSteps: 3
|
||||
- _CelPrimaryEnabled: 0
|
||||
- _CelPrimaryMode: 1
|
||||
- _Cull: 2
|
||||
- _Cutoff: 0.5
|
||||
- _DetailMapBlendingMode: 0
|
||||
- _DetailMapImpact: 0
|
||||
- _DetailNormalMapScale: 1
|
||||
- _DstBlend: 0
|
||||
- _FlatRimAmount: 0.5
|
||||
- _FlatRimEdgeSmoothness: 0.279
|
||||
- _FlatRimEnabled: 1
|
||||
- _FlatRimLightAlign: 0
|
||||
- _FlatRimSize: 0.174
|
||||
- _FlatShadowsEnabled: 1
|
||||
- _FlatSmoothness: 0.362
|
||||
- _FlatSpecularEdgeSmoothness: 0.172
|
||||
- _FlatSpecularEnabled: 1
|
||||
- _FlatSpecularSize: 0.1
|
||||
- _FlatSpecularSmoothness: 0.5
|
||||
- _Flatness: 1
|
||||
- _FlatnessExtra: 1
|
||||
- _FlatnessSecondary: 1
|
||||
- _GlossMapScale: 1
|
||||
- _Glossiness: 0
|
||||
- _GlossyReflections: 1
|
||||
- _GradientAngle: 0
|
||||
- _GradientCenterX: 0
|
||||
- _GradientCenterY: 0
|
||||
- _GradientEnabled: 0
|
||||
- _GradientEnd: 0.55
|
||||
- _GradientSize: 10
|
||||
- _GradientSpace: 0
|
||||
- _GradientStart: 1.17
|
||||
- _LightContribution: 0.362
|
||||
- _LightFalloffSize: 0.0001
|
||||
- _LightmapDirectionPitch: 0
|
||||
- _LightmapDirectionYaw: 0
|
||||
- _Metallic: 0
|
||||
- _Mode: 0
|
||||
- _OcclusionStrength: 1
|
||||
- _OutlineDepthOffset: 0
|
||||
- _OutlineEnabled: 0
|
||||
- _OutlineScale: 1
|
||||
- _OutlineSpace: 0
|
||||
- _OutlineWidth: 1
|
||||
- _OverrideLightmapDir: 0
|
||||
- _OverrideShadows: 1
|
||||
- _OverrideShadowsEnabled: 1
|
||||
- _Parallax: 0.02
|
||||
- _QueueOffset: 0
|
||||
- _RimEnabled: 0
|
||||
- _SecondaryColor: 1
|
||||
- _SecondaryColorEnabled: 1
|
||||
- _SelfShadingSize: 0.5
|
||||
- _SelfShadingSizeExtra: 0.5
|
||||
- _ShadowEdgeSize: 0
|
||||
- _ShadowEdgeSizeExtra: 0.05
|
||||
- _ShadowEdgeSmoothness: 0.071
|
||||
- _ShadowFalloff: 0.01
|
||||
- _SmoothnessTextureChannel: 0
|
||||
- _SpecularEnabled: 1
|
||||
- _SpecularHighlights: 1
|
||||
- _SrcBlend: 1
|
||||
- _Surface: 0
|
||||
- _TextureBlendingMode: 0
|
||||
- _TextureImpact: 1
|
||||
- _UVSec: 0
|
||||
- _UnityShadowMode: 0
|
||||
- _UnityShadowOcclusion: 0
|
||||
- _UnityShadowPower: 0.2
|
||||
- _UnityShadowSharpness: 1
|
||||
- _VertexColorsEnabled: 0
|
||||
- _VertexExtrusionSmoothNormals: 0
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _BaseColor: {r: 0.9450981, g: 0.7686275, b: 0.36862743, a: 1}
|
||||
- _Color: {r: 0.9450981, g: 0.7686275, b: 0.36862746, a: 1}
|
||||
- _ColorCelShadow: {r: 0.49056602, g: 0.34478462, b: 0.4476891, a: 1}
|
||||
- _ColorDim: {r: 0.735849, g: 0.32974365, b: 0.35376063, a: 0.85}
|
||||
- _ColorDimCurve: {r: 0.85, g: 0.85, b: 0.85, a: 0.85}
|
||||
- _ColorDimExtra: {r: 1, g: 0.24056602, b: 0.26141328, a: 0.85}
|
||||
- _ColorDimSteps: {r: 0.85, g: 0.85, b: 0.85, a: 0.85}
|
||||
- _ColorGradient: {r: 1, g: 0.43189976, b: 0, a: 1}
|
||||
- _ColorSecondary: {r: 1, g: 0.55879205, b: 0, a: 1}
|
||||
- _ColorShadow: {r: 0.5, g: 0.5, b: 0.5, a: 1}
|
||||
- _ColorShadows: {r: 0.5471698, g: 0.37346402, b: 0.26584196, a: 1}
|
||||
- _DetailMapColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _EmissionColor: {r: 4.9245777, g: 0, b: 0, a: 1}
|
||||
- _FlatRimColor: {r: 1, g: 0.91906786, b: 0.5518868, a: 1}
|
||||
- _FlatSpecularColor: {r: 1, g: 0.90740365, b: 0.3915094, a: 1}
|
||||
- _LightmapDirection: {r: 0, g: 1, b: 0, a: 0}
|
||||
- _OutlineColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _UnityShadowColor: {r: 0.65, g: 0.65, b: 0.65, a: 1}
|
||||
m_BuildTextureStacks: []
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: bcbc887a401b3411fb6cca34e86d33a8
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,188 @@
|
||||
%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: Car-Set2-Car4Body-2
|
||||
m_Shader: {fileID: 4800000, guid: bee44b4a58655ee4cbff107302a3e131, type: 3}
|
||||
m_Parent: {fileID: 0}
|
||||
m_ModifiedSerializedProperties: 0
|
||||
m_ValidKeywords:
|
||||
- DR_SPECULAR_ON
|
||||
- _CELPRIMARYMODE_SINGLE
|
||||
- _DETAILMAPBLENDINGMODE_MULTIPLY
|
||||
- _GRADIENTSPACE_WORLD
|
||||
- _OUTLINESPACE_SCREEN
|
||||
- _TEXTUREBLENDINGMODE_MULTIPLY
|
||||
m_InvalidKeywords:
|
||||
- _UNITYSHADOWMODE_NONE
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses:
|
||||
- SRPDEFAULTUNLIT
|
||||
m_LockedProperties:
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _BaseMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BumpMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _CelCurveTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _CelStepTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
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}
|
||||
- _DetailMap:
|
||||
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: 0}
|
||||
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}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _AlphaClip: 0
|
||||
- _BaseMapPremultiply: 0
|
||||
- _Blend: 0
|
||||
- _BumpScale: 1
|
||||
- _CameraDistanceImpact: 0
|
||||
- _CelExtraEnabled: 0
|
||||
- _CelNumSteps: 3
|
||||
- _CelPrimaryEnabled: 0
|
||||
- _CelPrimaryMode: 1
|
||||
- _Cull: 2
|
||||
- _Cutoff: 0.5
|
||||
- _DetailMapBlendingMode: 0
|
||||
- _DetailMapImpact: 0
|
||||
- _DetailNormalMapScale: 1
|
||||
- _DstBlend: 0
|
||||
- _FlatRimAmount: 0.5
|
||||
- _FlatRimEdgeSmoothness: 0.279
|
||||
- _FlatRimEnabled: 1
|
||||
- _FlatRimLightAlign: 0
|
||||
- _FlatRimSize: 0.174
|
||||
- _FlatShadowsEnabled: 1
|
||||
- _FlatSmoothness: 0.362
|
||||
- _FlatSpecularEdgeSmoothness: 0.045
|
||||
- _FlatSpecularEnabled: 1
|
||||
- _FlatSpecularSize: 0.003
|
||||
- _FlatSpecularSmoothness: 0.5
|
||||
- _Flatness: 1
|
||||
- _FlatnessExtra: 1
|
||||
- _FlatnessSecondary: 1
|
||||
- _GlossMapScale: 1
|
||||
- _Glossiness: 0
|
||||
- _GlossyReflections: 1
|
||||
- _GradientAngle: 0
|
||||
- _GradientCenterX: 0
|
||||
- _GradientCenterY: 0
|
||||
- _GradientEnabled: 0
|
||||
- _GradientEnd: 0.55
|
||||
- _GradientSize: 10
|
||||
- _GradientSpace: 0
|
||||
- _GradientStart: 1.17
|
||||
- _LightContribution: 0.362
|
||||
- _LightFalloffSize: 0.0001
|
||||
- _LightmapDirectionPitch: 0
|
||||
- _LightmapDirectionYaw: 0
|
||||
- _Metallic: 0
|
||||
- _Mode: 0
|
||||
- _OcclusionStrength: 1
|
||||
- _OutlineDepthOffset: 0
|
||||
- _OutlineEnabled: 0
|
||||
- _OutlineScale: 1
|
||||
- _OutlineSpace: 0
|
||||
- _OutlineWidth: 1
|
||||
- _OverrideLightmapDir: 0
|
||||
- _OverrideShadows: 1
|
||||
- _OverrideShadowsEnabled: 1
|
||||
- _Parallax: 0.02
|
||||
- _QueueOffset: 0
|
||||
- _RimEnabled: 0
|
||||
- _SecondaryColor: 1
|
||||
- _SecondaryColorEnabled: 1
|
||||
- _SelfShadingSize: 0.5
|
||||
- _SelfShadingSizeExtra: 0.5
|
||||
- _ShadowEdgeSize: 0.011
|
||||
- _ShadowEdgeSizeExtra: 0.05
|
||||
- _ShadowEdgeSmoothness: 0.071
|
||||
- _ShadowFalloff: 0.01
|
||||
- _SmoothnessTextureChannel: 0
|
||||
- _SpecularEnabled: 1
|
||||
- _SpecularHighlights: 1
|
||||
- _SrcBlend: 1
|
||||
- _Surface: 0
|
||||
- _TextureBlendingMode: 0
|
||||
- _TextureImpact: 1
|
||||
- _UVSec: 0
|
||||
- _UnityShadowMode: 0
|
||||
- _UnityShadowOcclusion: 0
|
||||
- _UnityShadowPower: 0.2
|
||||
- _UnityShadowSharpness: 1
|
||||
- _VertexColorsEnabled: 0
|
||||
- _VertexExtrusionSmoothNormals: 0
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _BaseColor: {r: 1, g: 0.09803919, b: 0.33725488, a: 1}
|
||||
- _Color: {r: 1, g: 0.098039225, b: 0.3372549, a: 1}
|
||||
- _ColorCelShadow: {r: 0.49056602, g: 0.34478462, b: 0.4476891, a: 1}
|
||||
- _ColorDim: {r: 0.6509434, g: 0.2794144, b: 0.37745675, a: 1}
|
||||
- _ColorDimCurve: {r: 0.85, g: 0.85, b: 0.85, a: 0.85}
|
||||
- _ColorDimExtra: {r: 0.6792453, g: 0.253115, b: 0.2662944, a: 0.85}
|
||||
- _ColorDimSteps: {r: 0.85, g: 0.85, b: 0.85, a: 0.85}
|
||||
- _ColorGradient: {r: 1, g: 0.43189976, b: 0, a: 1}
|
||||
- _ColorSecondary: {r: 1, g: 0.55879205, b: 0, a: 1}
|
||||
- _ColorShadow: {r: 0.5, g: 0.5, b: 0.5, a: 1}
|
||||
- _ColorShadows: {r: 0.5471698, g: 0.37346402, b: 0.26584196, a: 1}
|
||||
- _DetailMapColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _EmissionColor: {r: 4.9245777, g: 0, b: 0, a: 1}
|
||||
- _FlatRimColor: {r: 1, g: 0.91906786, b: 0.5518868, a: 1}
|
||||
- _FlatSpecularColor: {r: 0.764151, g: 0.2198736, b: 0.30870092, a: 1}
|
||||
- _LightmapDirection: {r: 0, g: 1, b: 0, a: 0}
|
||||
- _OutlineColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _UnityShadowColor: {r: 0.65, g: 0.65, b: 0.65, a: 1}
|
||||
m_BuildTextureStacks: []
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 27ce3a584d6484f8fbe43fafe9ba00f5
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,190 @@
|
||||
%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: Car-Set2-CarChrome
|
||||
m_Shader: {fileID: 4800000, guid: bee44b4a58655ee4cbff107302a3e131, type: 3}
|
||||
m_Parent: {fileID: 0}
|
||||
m_ModifiedSerializedProperties: 0
|
||||
m_ValidKeywords:
|
||||
- DR_CEL_EXTRA_ON
|
||||
- DR_GRADIENT_ON
|
||||
- DR_SPECULAR_ON
|
||||
- _CELPRIMARYMODE_SINGLE
|
||||
- _DETAILMAPBLENDINGMODE_MULTIPLY
|
||||
- _GRADIENTSPACE_WORLD
|
||||
- _OUTLINESPACE_SCREEN
|
||||
- _TEXTUREBLENDINGMODE_MULTIPLY
|
||||
- _UNITYSHADOWMODE_MULTIPLY
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses:
|
||||
- SRPDEFAULTUNLIT
|
||||
m_LockedProperties:
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _BaseMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BumpMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _CelCurveTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _CelStepTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
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}
|
||||
- _DetailMap:
|
||||
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: 0}
|
||||
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}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _AlphaClip: 0
|
||||
- _BaseMapPremultiply: 0
|
||||
- _Blend: 0
|
||||
- _BumpScale: 1
|
||||
- _CameraDistanceImpact: 0
|
||||
- _CelExtraEnabled: 1
|
||||
- _CelNumSteps: 3
|
||||
- _CelPrimaryEnabled: 1
|
||||
- _CelPrimaryMode: 1
|
||||
- _Cull: 2
|
||||
- _Cutoff: 0.5
|
||||
- _DetailMapBlendingMode: 0
|
||||
- _DetailMapImpact: 0
|
||||
- _DetailNormalMapScale: 1
|
||||
- _DstBlend: 0
|
||||
- _FlatRimAmount: 0.5
|
||||
- _FlatRimEdgeSmoothness: 0.611
|
||||
- _FlatRimEnabled: 1
|
||||
- _FlatRimLightAlign: 0
|
||||
- _FlatRimSize: 0.156
|
||||
- _FlatShadowsEnabled: 1
|
||||
- _FlatSmoothness: 0.362
|
||||
- _FlatSpecularEdgeSmoothness: 0.897
|
||||
- _FlatSpecularEnabled: 1
|
||||
- _FlatSpecularSize: 0.1
|
||||
- _FlatSpecularSmoothness: 0.5
|
||||
- _Flatness: 1
|
||||
- _FlatnessExtra: 1
|
||||
- _FlatnessSecondary: 1
|
||||
- _GlossMapScale: 1
|
||||
- _Glossiness: 0
|
||||
- _GlossyReflections: 1
|
||||
- _GradientAngle: 0
|
||||
- _GradientCenterX: 0
|
||||
- _GradientCenterY: 0
|
||||
- _GradientEnabled: 1
|
||||
- _GradientEnd: 0.55
|
||||
- _GradientSize: 10
|
||||
- _GradientSpace: 0
|
||||
- _GradientStart: 1.17
|
||||
- _LightContribution: 0.5
|
||||
- _LightFalloffSize: 0.0001
|
||||
- _LightmapDirectionPitch: 0
|
||||
- _LightmapDirectionYaw: 0
|
||||
- _Metallic: 0
|
||||
- _Mode: 0
|
||||
- _OcclusionStrength: 1
|
||||
- _OutlineDepthOffset: 0
|
||||
- _OutlineEnabled: 0
|
||||
- _OutlineScale: 1
|
||||
- _OutlineSpace: 0
|
||||
- _OutlineWidth: 1
|
||||
- _OverrideLightmapDir: 0
|
||||
- _OverrideShadows: 1
|
||||
- _OverrideShadowsEnabled: 1
|
||||
- _Parallax: 0.02
|
||||
- _QueueOffset: 0
|
||||
- _RimEnabled: 0
|
||||
- _SecondaryColor: 1
|
||||
- _SecondaryColorEnabled: 1
|
||||
- _SelfShadingSize: -0.93
|
||||
- _SelfShadingSizeExtra: 0.5
|
||||
- _ShadowEdgeSize: 0.05
|
||||
- _ShadowEdgeSizeExtra: 0
|
||||
- _ShadowEdgeSmoothness: 0.071
|
||||
- _ShadowFalloff: 0.01
|
||||
- _SmoothnessTextureChannel: 0
|
||||
- _SpecularEnabled: 1
|
||||
- _SpecularHighlights: 1
|
||||
- _SrcBlend: 1
|
||||
- _Surface: 0
|
||||
- _TextureBlendingMode: 0
|
||||
- _TextureImpact: 1
|
||||
- _UVSec: 0
|
||||
- _UnityShadowMode: 1
|
||||
- _UnityShadowOcclusion: 0
|
||||
- _UnityShadowPower: 0.2
|
||||
- _UnityShadowSharpness: 1
|
||||
- _VertexColorsEnabled: 0
|
||||
- _VertexExtrusionSmoothNormals: 0
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _BaseColor: {r: 0.8113207, g: 0.8113207, b: 0.8113207, a: 1}
|
||||
- _Color: {r: 0.8113208, g: 0.8113208, b: 0.8113208, a: 1}
|
||||
- _ColorCelShadow: {r: 0.49056602, g: 0.34478462, b: 0.4476891, a: 1}
|
||||
- _ColorDim: {r: 0.85, g: 0.85, b: 0.85, a: 0.85}
|
||||
- _ColorDimCurve: {r: 0.85, g: 0.85, b: 0.85, a: 0.85}
|
||||
- _ColorDimExtra: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _ColorDimSteps: {r: 0.85, g: 0.85, b: 0.85, a: 0.85}
|
||||
- _ColorGradient: {r: 0.65, g: 0.65, b: 0.65, a: 1}
|
||||
- _ColorSecondary: {r: 1, g: 0.55879205, b: 0, a: 1}
|
||||
- _ColorShadow: {r: 0.5, g: 0.5, b: 0.5, a: 1}
|
||||
- _ColorShadows: {r: 0.5471698, g: 0.37346402, b: 0.26584196, a: 1}
|
||||
- _DetailMapColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _EmissionColor: {r: 4.9245777, g: 0, b: 0, a: 1}
|
||||
- _FlatRimColor: {r: 0.06274509, g: 0.3764706, b: 0.36200908, a: 1}
|
||||
- _FlatSpecularColor: {r: 0.8584906, g: 0.8584906, b: 0.8584906, a: 1}
|
||||
- _LightmapDirection: {r: 0, g: 1, b: 0, a: 0}
|
||||
- _OutlineColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _UnityShadowColor: {r: 0.65, g: 0.65, b: 0.65, a: 1}
|
||||
m_BuildTextureStacks: []
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 98ace95fdea3d47099b06b6cdd5fd630
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||