generowanie lasów
This commit is contained in:
parent
cb2a6b16f3
commit
d0f6e8239a
File diff suppressed because one or more lines are too long
45
Assets/Scripts/AnnotationPass/ForestPass.cs
Normal file
45
Assets/Scripts/AnnotationPass/ForestPass.cs
Normal file
@ -0,0 +1,45 @@
|
||||
using System;
|
||||
using System.Linq;
|
||||
using Assets.Common;
|
||||
using Assets.PointDistribution;
|
||||
|
||||
namespace Assets.AnnotationPass
|
||||
{
|
||||
public class ForestPass : IAnnotationPass
|
||||
{
|
||||
public const string TreesProperty = "Trees";
|
||||
|
||||
public double TreeRadius { get; set; } = 2;
|
||||
public double ForestRatio { get; set; } = .4;
|
||||
public double Scale { get; set; } = .01;
|
||||
public double Lacunarity { get; set; } = 1.7;
|
||||
public double Dampening { get; set; } = .7;
|
||||
|
||||
public void Annotate(Map map)
|
||||
{
|
||||
var random = new Random(map.Seed + 2137);
|
||||
var sampler = new PoissonDiskSampler(TreeRadius) { Generator = random };
|
||||
var perlin = new PerlinNoiseGenerator
|
||||
{
|
||||
Iterations = 4,
|
||||
Scale = (float)Scale,
|
||||
Lacunarity = (float)Lacunarity,
|
||||
Decay = (float)Dampening,
|
||||
Offset = new Point(random.NextDouble() * 150, random.NextDouble() * 150)
|
||||
};
|
||||
|
||||
var points = sampler
|
||||
.Generate(map.Size.Width, map.Size.Height)
|
||||
.Where(p => perlin.GetValue(p) < ForestRatio)
|
||||
.Select(p => new Tree {
|
||||
Placement = p,
|
||||
Site = map.Sites.Vertices.FirstOrDefault(site => PointUtils.IsPointInside(p, site.Boundary.Select(n => map.Boundaries[n])))
|
||||
})
|
||||
.Where(t => t.Site != null)
|
||||
.Where(t => t.Site.Tags.Contains(CommonTags.Land) && t.Site.Tags.Contains(CommonTags.Empty))
|
||||
;
|
||||
|
||||
map.SetProperty(TreesProperty, points.ToList());
|
||||
}
|
||||
}
|
||||
}
|
3
Assets/Scripts/AnnotationPass/ForestPass.cs.meta
Normal file
3
Assets/Scripts/AnnotationPass/ForestPass.cs.meta
Normal file
@ -0,0 +1,3 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 3bc88eb4f68145eba2e5626cd699b5dc
|
||||
timeCreated: 1574011972
|
@ -51,6 +51,9 @@ namespace Assets.AnnotationPass
|
||||
private void SetLocation(MapSite site, Location location)
|
||||
{
|
||||
location.AddSite(site);
|
||||
|
||||
if (location != _locations[0])
|
||||
site.Tags.Add(CommonTags.Land);
|
||||
|
||||
site.Metadata.SetProperty(SiteLocationProperty, location);
|
||||
}
|
||||
|
@ -31,19 +31,26 @@ namespace Assets.AnnotationPass
|
||||
|
||||
var site = _basicGraph.Vertices[vertex];
|
||||
var sites = new List<MapSite> { site };
|
||||
var location = site.Metadata.GetProperty<Location>(LandmassPass.SiteLocationProperty);
|
||||
|
||||
var location = site.GetProperty<Location>(LandmassPass.SiteLocationProperty);
|
||||
|
||||
for (int i = 0; i < size - 1; i++)
|
||||
{
|
||||
var neighbours = _basicGraph.Neighbours(site.Index).Select(j => _basicGraph.Vertices[j]).Where(s => s.Metadata.GetProperty<Location>(LandmassPass.SiteLocationProperty) == location).ToList();
|
||||
site = neighbours[_random.Next(neighbours.Count)];
|
||||
var neighbours = _basicGraph.Neighbours(site.Index)
|
||||
.Select(j => _basicGraph.Vertices[j])
|
||||
.Where(s => s.GetProperty<Location>(LandmassPass.SiteLocationProperty) == location && s.Tags.Contains(CommonTags.Empty))
|
||||
.ToArray();
|
||||
|
||||
if (neighbours.Length == 0) break;
|
||||
|
||||
site = neighbours[_random.Next(neighbours.Length - 1)];
|
||||
sites.Add(site);
|
||||
}
|
||||
|
||||
foreach (var s in sites.Distinct())
|
||||
{
|
||||
newCity.AddSite(s);
|
||||
s.Metadata.SetProperty(CityProperty, newCity);
|
||||
s.SetProperty(CityProperty, newCity);
|
||||
s.Tags.Remove(CommonTags.Empty);
|
||||
}
|
||||
|
||||
return newCity;
|
||||
|
@ -10,6 +10,7 @@ namespace Assets.Common
|
||||
private Graph<MapSite> _sites = new Graph<MapSite>();
|
||||
|
||||
public int Seed { get; }
|
||||
public Size Size { get; }
|
||||
|
||||
public Graph<MapSite> Sites
|
||||
{
|
||||
@ -30,9 +31,10 @@ namespace Assets.Common
|
||||
|
||||
public Metadata Metadata { get; } = new Metadata();
|
||||
|
||||
public Map(int seed)
|
||||
public Map(int seed, Size size)
|
||||
{
|
||||
Seed = seed;
|
||||
Size = size;
|
||||
}
|
||||
}
|
||||
}
|
36
Assets/Scripts/Common/PerlinNoiseGenerator.cs
Normal file
36
Assets/Scripts/Common/PerlinNoiseGenerator.cs
Normal file
@ -0,0 +1,36 @@
|
||||
using UnityEngine;
|
||||
|
||||
namespace Assets.Common
|
||||
{
|
||||
public class PerlinNoiseGenerator
|
||||
{
|
||||
public float Scale { get; set; } = 0.001f;
|
||||
public Point Offset { get; set; } = new Point(0, 0);
|
||||
public int Iterations { get; set; } = 8;
|
||||
public float Decay { get; set; } = .7f;
|
||||
public float Lacunarity { get; set; } = 1.71f;
|
||||
|
||||
public double GetValue(Point position)
|
||||
{
|
||||
var amplitude = 1.0;
|
||||
var scale = Scale;
|
||||
var result = 0.0;
|
||||
|
||||
for (int i = 0; i < Iterations; i++) {
|
||||
result += amplitude * Calculate(position, scale);
|
||||
|
||||
amplitude *= Decay;
|
||||
scale *= Lacunarity;
|
||||
}
|
||||
|
||||
return Mathf.InverseLerp(0.38f, 0.48f, (float)(result / ((1 - System.Math.Pow(Decay, Iterations)) / (1 - Decay))));
|
||||
}
|
||||
|
||||
private double Calculate(Point position, float scale)
|
||||
{
|
||||
var final = (position + Offset) * scale;
|
||||
|
||||
return Mathf.PerlinNoise((float)final.x, (float)final.y);
|
||||
}
|
||||
}
|
||||
}
|
3
Assets/Scripts/Common/PerlinNoiseGenerator.cs.meta
Normal file
3
Assets/Scripts/Common/PerlinNoiseGenerator.cs.meta
Normal file
@ -0,0 +1,3 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 0790333cb5994af3ad5c3cd60ef0667e
|
||||
timeCreated: 1574012818
|
@ -65,8 +65,10 @@ namespace Assets.Common
|
||||
return points.Zip(points.RotateRight(), (a, b) => (b.x - a.x) * (b.y + a.y)).Aggregate((a, b) => a + b) < 0;
|
||||
}
|
||||
|
||||
public static bool IsPointInside(Point point, Point[] polygon)
|
||||
public static bool IsPointInside(Point point, IEnumerable<Point> points)
|
||||
{
|
||||
var polygon = points.ToArray();
|
||||
|
||||
var j = polygon.Length - 1;
|
||||
var inside = false;
|
||||
|
||||
|
14
Assets/Scripts/Common/Size.cs
Normal file
14
Assets/Scripts/Common/Size.cs
Normal file
@ -0,0 +1,14 @@
|
||||
namespace Assets.Common
|
||||
{
|
||||
public class Size
|
||||
{
|
||||
public double Width { get; }
|
||||
public double Height { get; }
|
||||
|
||||
public Size(double width, double height)
|
||||
{
|
||||
Width = width;
|
||||
Height = height;
|
||||
}
|
||||
}
|
||||
}
|
3
Assets/Scripts/Common/Size.cs.meta
Normal file
3
Assets/Scripts/Common/Size.cs.meta
Normal file
@ -0,0 +1,3 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 522d3783f50941f5b2d0d12e7f9fd2eb
|
||||
timeCreated: 1574012133
|
8
Assets/Scripts/Common/Tree.cs
Normal file
8
Assets/Scripts/Common/Tree.cs
Normal file
@ -0,0 +1,8 @@
|
||||
namespace Assets.Common
|
||||
{
|
||||
public class Tree
|
||||
{
|
||||
public Point Placement { get; set; }
|
||||
public MapSite Site { get; set; }
|
||||
}
|
||||
}
|
3
Assets/Scripts/Common/Tree.cs.meta
Normal file
3
Assets/Scripts/Common/Tree.cs.meta
Normal file
@ -0,0 +1,3 @@
|
||||
fileFormatVersion: 2
|
||||
guid: fb09668818dd4739acf022483b609253
|
||||
timeCreated: 1574018474
|
@ -21,7 +21,7 @@ namespace Assets.GridGenerator
|
||||
|
||||
public Map CreateGrid(double width, double height)
|
||||
{
|
||||
Map result = new Map(_seed);
|
||||
Map result = new Map(_seed, new Size(width, height));
|
||||
|
||||
var points = GeneratePoints(width, height);
|
||||
var generator = new VoronoiGenerator(points);
|
||||
|
@ -13,6 +13,7 @@ using Assets.Utils;
|
||||
using UnityEngine;
|
||||
using UnityEngine.Serialization;
|
||||
using Random = System.Random;
|
||||
using Tree = Assets.Common.Tree;
|
||||
|
||||
namespace Assets
|
||||
{
|
||||
@ -35,6 +36,7 @@ namespace Assets
|
||||
public bool displayFieldBoundaries = true;
|
||||
public bool displayCityRoads = true;
|
||||
public bool displayCityFields = true;
|
||||
public bool displayTrees = true;
|
||||
|
||||
[NonSerialized] public float generationTime = 0.0f;
|
||||
}
|
||||
@ -67,6 +69,9 @@ namespace Assets
|
||||
public float maximumNudgeDistance = 1f;
|
||||
[Range(0f, 4f)]
|
||||
public float minimumRoadLength = 1f;
|
||||
|
||||
public float treeRadius = 2f;
|
||||
public float forestRatio = .4f;
|
||||
|
||||
[Range(2.0f, 64.0f)]
|
||||
public float radius = 8;
|
||||
@ -117,6 +122,11 @@ namespace Assets
|
||||
MinNudgeDistance = minimumNudgeDistance,
|
||||
MinimumRoadLength = minimumRoadLength
|
||||
});
|
||||
generator.AddAnnotationPass(new ForestPass
|
||||
{
|
||||
TreeRadius = treeRadius,
|
||||
ForestRatio = forestRatio
|
||||
});
|
||||
|
||||
return generator;
|
||||
}
|
||||
@ -124,6 +134,7 @@ namespace Assets
|
||||
public void Reset()
|
||||
{
|
||||
GenerationThread?.Abort();
|
||||
Map = null;
|
||||
}
|
||||
|
||||
private void DisplayGraphCities(IEnumerable<City> cities)
|
||||
@ -277,6 +288,18 @@ namespace Assets
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (debug.displayTrees)
|
||||
{
|
||||
Gizmos.color = Color.cyan;
|
||||
var trees = Map.GetProperty<IEnumerable<Tree>>(ForestPass.TreesProperty);
|
||||
|
||||
foreach (var tree in trees)
|
||||
Gizmos.DrawCube(
|
||||
tree.Placement.ToVector3() + tree.Site.GetProperty<Location>(LandmassPass.SiteLocationProperty).Type.height * Vector3.up,
|
||||
new Vector3(1, 1, 1)
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -15,11 +15,13 @@ namespace Assets
|
||||
public class MapRenderer : MonoBehaviour
|
||||
{
|
||||
private bool _rerender = false;
|
||||
|
||||
public GameObject citiesGameObject;
|
||||
|
||||
private IList<IRenderer> _renderers = new List<IRenderer>
|
||||
private IList<IRenderer> Renderers => new List<IRenderer>
|
||||
{
|
||||
new LandmassRenderer(),
|
||||
new CityRenderer(),
|
||||
new CityRenderer(citiesGameObject),
|
||||
};
|
||||
|
||||
public void GenerateRandom()
|
||||
@ -49,7 +51,7 @@ namespace Assets
|
||||
if (map == null)
|
||||
return;
|
||||
|
||||
foreach (var current in _renderers)
|
||||
foreach (var current in Renderers)
|
||||
current.Render(map, this);
|
||||
}
|
||||
|
||||
@ -60,7 +62,7 @@ namespace Assets
|
||||
if (map == null)
|
||||
return;
|
||||
|
||||
foreach (var current in _renderers)
|
||||
foreach (var current in Renderers)
|
||||
current.DrawGizmos(map, this);
|
||||
}
|
||||
}
|
||||
|
@ -11,14 +11,14 @@ namespace Assets.PointDistribution
|
||||
public System.Random Generator { get; set; } = new System.Random();
|
||||
|
||||
private int k;
|
||||
private float r;
|
||||
private double r;
|
||||
|
||||
private double Random(double max, double min = 0)
|
||||
{
|
||||
return Generator.NextDouble() * (max - min) + min;
|
||||
}
|
||||
|
||||
public PoissonDiskSampler(float r, int k = 30)
|
||||
public PoissonDiskSampler(double r, int k = 30)
|
||||
{
|
||||
this.k = k;
|
||||
this.r = r;
|
||||
|
@ -9,19 +9,22 @@ namespace Assets.RenderPass
|
||||
{
|
||||
public class CityRenderer : IRenderer
|
||||
{
|
||||
private GameObject _cities;
|
||||
|
||||
public CityRenderer(GameObject cities)
|
||||
{
|
||||
_cities = cities;
|
||||
}
|
||||
|
||||
public void Render(Map map, Component component)
|
||||
{
|
||||
var go = new GameObject();
|
||||
go.AddComponent<MeshFilter>();
|
||||
go.AddComponent<MeshRenderer>();
|
||||
|
||||
var cities = map.GetProperty<IEnumerable<City>>(LocateCitiesPass.CitiesProperty);
|
||||
var meshes = cities.Select(city => new CombineInstance { mesh = CreateCityMesh(city), transform = component.transform.localToWorldMatrix });
|
||||
|
||||
var mesh = new Mesh();
|
||||
mesh.CombineMeshes(meshes.ToArray());
|
||||
|
||||
go.GetComponent<MeshFilter>().sharedMesh = mesh;
|
||||
_cities.GetComponent<MeshFilter>().sharedMesh = mesh;
|
||||
}
|
||||
|
||||
private Mesh CreateCityMesh(City city)
|
||||
@ -36,16 +39,16 @@ namespace Assets.RenderPass
|
||||
start = vertices.Count;
|
||||
n = field.Boundary.Count;
|
||||
|
||||
vertices.AddRange(field.Boundary.Select(p => p.ToVector3() + Vector3.up * 5));
|
||||
vertices.AddRange(field.Boundary.Select(p => p.ToVector3()));
|
||||
normals.AddRange(field.Boundary.Select(v => Vector3.up));
|
||||
triangles.AddRange(Triangulate(field).Select(x => x + start));
|
||||
|
||||
start = vertices.Count;
|
||||
|
||||
vertices.AddRange(field.Boundary.Select(p => p.ToVector3() + Vector3.up * 5));
|
||||
normals.AddRange(PointUtils.CalculateNormals(field.Boundary).Select(p => p.ToVector3()));
|
||||
vertices.AddRange(field.Boundary.Select(p => p.ToVector3()));
|
||||
normals.AddRange(PointUtils.CalculateNormals(field.Boundary).Select(p => p.ToVector3()));
|
||||
vertices.AddRange(field.Boundary.Select(p => p.ToVector3() + Vector3.down * 25));
|
||||
normals.AddRange(PointUtils.CalculateNormals(field.Boundary).Select(p => p.ToVector3()));
|
||||
|
||||
for (int i = 0; i < n; i++)
|
||||
{
|
||||
|
@ -80,7 +80,7 @@ Material:
|
||||
- _ReflDistort: 0.44
|
||||
- _RefrDistort: 0.4
|
||||
- _Shininess: 1
|
||||
- _WaveScale: 0.07028302
|
||||
- _WaveScale: 0.02
|
||||
- _bScale: 0.07
|
||||
- _bTwirl: 0.05
|
||||
- _distort: 0.1
|
||||
|
@ -0,0 +1,77 @@
|
||||
%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: WaterBasicNormals
|
||||
m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0}
|
||||
m_ShaderKeywords:
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses: []
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _BumpMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailAlbedoMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailMask:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailNormalMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _EmissionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MainTex:
|
||||
m_Texture: {fileID: 2800000, guid: a53cf5449d11a15d1100a04b44295342, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MetallicGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _OcclusionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ParallaxMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Floats:
|
||||
- _BumpScale: 1
|
||||
- _Cutoff: 0.5
|
||||
- _DetailNormalMapScale: 1
|
||||
- _DstBlend: 0
|
||||
- _GlossMapScale: 1
|
||||
- _Glossiness: 0.5
|
||||
- _GlossyReflections: 1
|
||||
- _Metallic: 0
|
||||
- _Mode: 0
|
||||
- _OcclusionStrength: 1
|
||||
- _Parallax: 0.02
|
||||
- _SmoothnessTextureChannel: 0
|
||||
- _SpecularHighlights: 1
|
||||
- _SrcBlend: 1
|
||||
- _UVSec: 0
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _Color: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
|
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 825fa0bf9a5ae5276843b70e4180266a
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
@ -2,120 +2,66 @@
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 3
|
||||
serializedVersion: 6
|
||||
m_ObjectHideFlags: 0
|
||||
m_PrefabParentObject: {fileID: 0}
|
||||
m_PrefabInternal: {fileID: 0}
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: WaterProDaytime
|
||||
m_Shader: {fileID: 4800000, guid: 1cac2e0bcc34e4b3cbb4bd85982eba83, type: 3}
|
||||
m_ShaderKeywords: []
|
||||
m_ShaderKeywords:
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses: []
|
||||
m_SavedProperties:
|
||||
serializedVersion: 2
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
data:
|
||||
first:
|
||||
name: _MainTex
|
||||
second:
|
||||
m_Texture: {fileID: 2800000, guid: e6f8288974c664a309d6c66de636978c, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
data:
|
||||
first:
|
||||
name: _BumpMap
|
||||
second:
|
||||
m_Texture: {fileID: 2800000, guid: 2dd3788f8589b40bf82a92d76ffc5091, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
data:
|
||||
first:
|
||||
name: _Fresnel
|
||||
second:
|
||||
m_Texture: {fileID: 2800000, guid: 5b5c5575fd4c74abd9f7b30862fb76a3, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
data:
|
||||
first:
|
||||
name: _ReflectiveColor
|
||||
second:
|
||||
m_Texture: {fileID: 2800000, guid: ab97f9ab7c2ce724ebc9446060a819a4, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
data:
|
||||
first:
|
||||
name: _ReflectionTex
|
||||
second:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
data:
|
||||
first:
|
||||
name: _RefractionTex
|
||||
second:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
data:
|
||||
first:
|
||||
name: _ReflectiveColorCube
|
||||
second:
|
||||
m_Texture: {fileID: 8900000, guid: 9cda328e4b6954d70841a8a66f42ec08, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BumpMap:
|
||||
m_Texture: {fileID: 2800000, guid: 2dd3788f8589b40bf82a92d76ffc5091, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _Fresnel:
|
||||
m_Texture: {fileID: 2800000, guid: 5b5c5575fd4c74abd9f7b30862fb76a3, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MainTex:
|
||||
m_Texture: {fileID: 2800000, guid: e6f8288974c664a309d6c66de636978c, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ReflectionTex:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ReflectiveColor:
|
||||
m_Texture: {fileID: 2800000, guid: ab97f9ab7c2ce724ebc9446060a819a4, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ReflectiveColorCube:
|
||||
m_Texture: {fileID: 8900000, guid: 9cda328e4b6954d70841a8a66f42ec08, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _RefractionTex:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Floats:
|
||||
data:
|
||||
first:
|
||||
name: _WaveScale
|
||||
second: .118000001
|
||||
data:
|
||||
first:
|
||||
name: _ReflDistort
|
||||
second: .439999998
|
||||
data:
|
||||
first:
|
||||
name: _RefrDistort
|
||||
second: .400000006
|
||||
- _ReflDistort: 0.44
|
||||
- _RefrDistort: 0.4
|
||||
- _WaveScale: 0.118
|
||||
m_Colors:
|
||||
data:
|
||||
first:
|
||||
name: _RefrColor
|
||||
second: {r: .937254906, g: .937254906, b: .937254906, a: 1}
|
||||
data:
|
||||
first:
|
||||
name: _Fresnel_ST
|
||||
second: {r: 1, g: 1, b: 0, a: 0}
|
||||
data:
|
||||
first:
|
||||
name: _BumpMap_ST
|
||||
second: {r: 1, g: 1, b: 0, a: 0}
|
||||
data:
|
||||
first:
|
||||
name: WaveSpeed
|
||||
second: {r: 9, g: 4.5, b: -8, a: -3.5}
|
||||
data:
|
||||
first:
|
||||
name: _ReflectiveColor_ST
|
||||
second: {r: 1, g: 1, b: 0, a: 0}
|
||||
data:
|
||||
first:
|
||||
name: _HorizonColor
|
||||
second: {r: .135759518, g: .228107125, b: .381078809, a: 0}
|
||||
data:
|
||||
first:
|
||||
name: _ReflectionTex_ST
|
||||
second: {r: 1, g: 1, b: 0, a: 0}
|
||||
data:
|
||||
first:
|
||||
name: _RefractionTex_ST
|
||||
second: {r: 1, g: 1, b: 0, a: 0}
|
||||
data:
|
||||
first:
|
||||
name: _MainTex_ST
|
||||
second: {r: 1, g: 1, b: 0, a: 0}
|
||||
data:
|
||||
first:
|
||||
name: _ReflectiveColorCube_ST
|
||||
second: {r: 1, g: 1, b: 0, a: 0}
|
||||
- WaveSpeed: {r: 9, g: 4.5, b: -8, a: -3.5}
|
||||
- _BumpMap_ST: {r: 1, g: 1, b: 0, a: 0}
|
||||
- _Fresnel_ST: {r: 1, g: 1, b: 0, a: 0}
|
||||
- _HorizonColor: {r: 0.13575952, g: 0.22810712, b: 0.3810788, a: 0}
|
||||
- _MainTex_ST: {r: 1, g: 1, b: 0, a: 0}
|
||||
- _ReflectionTex_ST: {r: 1, g: 1, b: 0, a: 0}
|
||||
- _ReflectiveColorCube_ST: {r: 1, g: 1, b: 0, a: 0}
|
||||
- _ReflectiveColor_ST: {r: 1, g: 1, b: 0, a: 0}
|
||||
- _RefrColor: {r: 0.9372549, g: 0.9372549, b: 0.9372549, a: 1}
|
||||
- _RefractionTex_ST: {r: 1, g: 1, b: 0, a: 0}
|
||||
--- !u!1002 &2100001
|
||||
EditorExtensionImpl:
|
||||
serializedVersion: 6
|
||||
|
@ -2,124 +2,67 @@
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 3
|
||||
serializedVersion: 6
|
||||
m_ObjectHideFlags: 0
|
||||
m_PrefabParentObject: {fileID: 0}
|
||||
m_PrefabInternal: {fileID: 0}
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: WaterProNighttime
|
||||
m_Shader: {fileID: 4800000, guid: 1cac2e0bcc34e4b3cbb4bd85982eba83, type: 3}
|
||||
m_ShaderKeywords: []
|
||||
m_ShaderKeywords:
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses: []
|
||||
m_SavedProperties:
|
||||
serializedVersion: 2
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
data:
|
||||
first:
|
||||
name: _MainTex
|
||||
second:
|
||||
m_Texture: {fileID: 2800000, guid: e6f8288974c664a309d6c66de636978c, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
data:
|
||||
first:
|
||||
name: _BumpMap
|
||||
second:
|
||||
m_Texture: {fileID: 2800000, guid: 2dd3788f8589b40bf82a92d76ffc5091, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
data:
|
||||
first:
|
||||
name: _Fresnel
|
||||
second:
|
||||
m_Texture: {fileID: 2800000, guid: 5b5c5575fd4c74abd9f7b30862fb76a3, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
data:
|
||||
first:
|
||||
name: _ReflectiveColor
|
||||
second:
|
||||
m_Texture: {fileID: 2800000, guid: b725b62cfc9d04e4886735ab2a8107d1, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
data:
|
||||
first:
|
||||
name: _ReflectionTex
|
||||
second:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
data:
|
||||
first:
|
||||
name: _RefractionTex
|
||||
second:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
data:
|
||||
first:
|
||||
name: _ReflectiveColorCube
|
||||
second:
|
||||
m_Texture: {fileID: 8900000, guid: 15c6acc4f11254a04b03849245d80574, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BumpMap:
|
||||
m_Texture: {fileID: 2800000, guid: 2dd3788f8589b40bf82a92d76ffc5091, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _Fresnel:
|
||||
m_Texture: {fileID: 2800000, guid: 5b5c5575fd4c74abd9f7b30862fb76a3, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MainTex:
|
||||
m_Texture: {fileID: 2800000, guid: e6f8288974c664a309d6c66de636978c, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ReflectionTex:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ReflectiveColor:
|
||||
m_Texture: {fileID: 2800000, guid: b725b62cfc9d04e4886735ab2a8107d1, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ReflectiveColorCube:
|
||||
m_Texture: {fileID: 8900000, guid: 15c6acc4f11254a04b03849245d80574, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _RefractionTex:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Floats:
|
||||
data:
|
||||
first:
|
||||
name: _WaveScale
|
||||
second: .063000001
|
||||
data:
|
||||
first:
|
||||
name: _ReflDistort
|
||||
second: .439999998
|
||||
data:
|
||||
first:
|
||||
name: _RefrDistort
|
||||
second: .400000006
|
||||
- _ReflDistort: 0.44
|
||||
- _RefrDistort: 0.4
|
||||
- _WaveScale: 0.063
|
||||
m_Colors:
|
||||
data:
|
||||
first:
|
||||
name: _Color
|
||||
second: {r: 1, g: 1, b: 1, a: 1}
|
||||
data:
|
||||
first:
|
||||
name: _RefrColor
|
||||
second: {r: 1, g: 1, b: 1, a: 1}
|
||||
data:
|
||||
first:
|
||||
name: _Fresnel_ST
|
||||
second: {r: 1, g: 1, b: 0, a: 0}
|
||||
data:
|
||||
first:
|
||||
name: _BumpMap_ST
|
||||
second: {r: 1, g: 1, b: 0, a: 0}
|
||||
data:
|
||||
first:
|
||||
name: WaveSpeed
|
||||
second: {r: 9, g: 4.5, b: -8, a: -3.5}
|
||||
data:
|
||||
first:
|
||||
name: _ReflectiveColor_ST
|
||||
second: {r: 1, g: 1, b: 0, a: 0}
|
||||
data:
|
||||
first:
|
||||
name: _HorizonColor
|
||||
second: {r: .149019614, g: .282352954, b: .380392164, a: 0}
|
||||
data:
|
||||
first:
|
||||
name: _ReflectionTex_ST
|
||||
second: {r: 1, g: 1, b: 0, a: 0}
|
||||
data:
|
||||
first:
|
||||
name: _RefractionTex_ST
|
||||
second: {r: 1, g: 1, b: 0, a: 0}
|
||||
data:
|
||||
first:
|
||||
name: _MainTex_ST
|
||||
second: {r: 1, g: 1, b: 0, a: 0}
|
||||
data:
|
||||
first:
|
||||
name: _ReflectiveColorCube_ST
|
||||
second: {r: 1, g: 1, b: 0, a: 0}
|
||||
- WaveSpeed: {r: 9, g: 4.5, b: -8, a: -3.5}
|
||||
- _BumpMap_ST: {r: 1, g: 1, b: 0, a: 0}
|
||||
- _Color: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _Fresnel_ST: {r: 1, g: 1, b: 0, a: 0}
|
||||
- _HorizonColor: {r: 0.14901961, g: 0.28235295, b: 0.38039216, a: 0}
|
||||
- _MainTex_ST: {r: 1, g: 1, b: 0, a: 0}
|
||||
- _ReflectionTex_ST: {r: 1, g: 1, b: 0, a: 0}
|
||||
- _ReflectiveColorCube_ST: {r: 1, g: 1, b: 0, a: 0}
|
||||
- _ReflectiveColor_ST: {r: 1, g: 1, b: 0, a: 0}
|
||||
- _RefrColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _RefractionTex_ST: {r: 1, g: 1, b: 0, a: 0}
|
||||
--- !u!1002 &2100001
|
||||
EditorExtensionImpl:
|
||||
serializedVersion: 6
|
||||
|
@ -2,415 +2,169 @@
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 3
|
||||
serializedVersion: 6
|
||||
m_ObjectHideFlags: 0
|
||||
m_PrefabParentObject: {fileID: 0}
|
||||
m_PrefabInternal: {fileID: 0}
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: Water4Advanced
|
||||
m_Shader: {fileID: 4800000, guid: 475c4a4e617a8401b84ca7b32c7cc460, type: 3}
|
||||
m_ShaderKeywords: []
|
||||
m_ShaderKeywords:
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses: []
|
||||
m_SavedProperties:
|
||||
serializedVersion: 2
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
data:
|
||||
first:
|
||||
name: _MainTex
|
||||
second:
|
||||
m_Texture: {fileID: 2800000, guid: e6f8288974c664a309d6c66de636978c, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 1, y: 1}
|
||||
data:
|
||||
first:
|
||||
name: _BumpMap
|
||||
second:
|
||||
m_Texture: {fileID: 2800000, guid: fb6566c21f717904f83743a5a76dd0b0, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
data:
|
||||
first:
|
||||
name: _DecalTex
|
||||
second:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
data:
|
||||
first:
|
||||
name: _Fresnel
|
||||
second:
|
||||
m_Texture: {fileID: 2800000, guid: 5b5c5575fd4c74abd9f7b30862fb76a3, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
data:
|
||||
first:
|
||||
name: _ReflectiveColor
|
||||
second:
|
||||
m_Texture: {fileID: 2800000, guid: 17680dc3bf8f74b498b01cf1481e2593, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
data:
|
||||
first:
|
||||
name: _ReflectionTex
|
||||
second:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
data:
|
||||
first:
|
||||
name: _RefractionTex
|
||||
second:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
data:
|
||||
first:
|
||||
name: _ShoreTex
|
||||
second:
|
||||
m_Texture: {fileID: 2800000, guid: 36dd0b22da8874ed38075789055ca664, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 1, y: 1}
|
||||
data:
|
||||
first:
|
||||
name: _ReflectiveColorCube
|
||||
second:
|
||||
m_Texture: {fileID: 8900000, guid: 0620bdf0302d84423be4aa15b82a0e11, type: 2}
|
||||
m_Scale: {x: .150000006, y: .100000001}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
data:
|
||||
first:
|
||||
name: _WavesTex
|
||||
second:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
data:
|
||||
first:
|
||||
name: _DisplacementHeightMap
|
||||
second:
|
||||
m_Texture: {fileID: 2800000, guid: a782b26d6436b48d9882906b9f8ca31a, type: 2}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
data:
|
||||
first:
|
||||
name: _SecondDisplacementHeightMap
|
||||
second:
|
||||
m_Texture: {fileID: 2800000, guid: 4facc21e08e3a43ed97c930f7dae6e7b, type: 2}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
data:
|
||||
first:
|
||||
name: _ThirdDisplacementHeightMap
|
||||
second:
|
||||
m_Texture: {fileID: 2800000, guid: dc30b984e8e3c4cdfb38d5fceb411602, type: 2}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
data:
|
||||
first:
|
||||
name: _SpecialWavesTex
|
||||
second:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
data:
|
||||
first:
|
||||
name: _DepthMap
|
||||
second:
|
||||
m_Texture: {fileID: 2800000, guid: ff6e0fbcfc24e4f95a2711ea0e73dd6a, type: 3}
|
||||
m_Scale: {x: .0140000004, y: .0140000004}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
data:
|
||||
first:
|
||||
name: _WaterHolesTex
|
||||
second:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
data:
|
||||
first:
|
||||
name: _Caustics
|
||||
second:
|
||||
m_Texture: {fileID: 2800000, guid: eb9e91ee4c264b942a46baeec92ca0a4, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
data:
|
||||
first:
|
||||
name: m_DisplacementHeightMap
|
||||
second:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
data:
|
||||
first:
|
||||
name: m_SecondDisplacementHeightMap
|
||||
second:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
data:
|
||||
first:
|
||||
name: _HeightMask
|
||||
second:
|
||||
m_Texture: {fileID: 2800000, guid: cff6f2c02e93742c095cd0c69d3d92ce, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BumpMap:
|
||||
m_Texture: {fileID: 2800000, guid: fb6566c21f717904f83743a5a76dd0b0, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _Caustics:
|
||||
m_Texture: {fileID: 2800000, guid: eb9e91ee4c264b942a46baeec92ca0a4, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DecalTex:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DepthMap:
|
||||
m_Texture: {fileID: 2800000, guid: ff6e0fbcfc24e4f95a2711ea0e73dd6a, type: 3}
|
||||
m_Scale: {x: 0.014, y: 0.014}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DisplacementHeightMap:
|
||||
m_Texture: {fileID: 2800000, guid: a782b26d6436b48d9882906b9f8ca31a, type: 2}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _Fresnel:
|
||||
m_Texture: {fileID: 2800000, guid: 5b5c5575fd4c74abd9f7b30862fb76a3, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _HeightMask:
|
||||
m_Texture: {fileID: 2800000, guid: cff6f2c02e93742c095cd0c69d3d92ce, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MainTex:
|
||||
m_Texture: {fileID: 2800000, guid: e6f8288974c664a309d6c66de636978c, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 1, y: 1}
|
||||
- _ReflectionTex:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ReflectiveColor:
|
||||
m_Texture: {fileID: 2800000, guid: 17680dc3bf8f74b498b01cf1481e2593, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ReflectiveColorCube:
|
||||
m_Texture: {fileID: 8900000, guid: 0620bdf0302d84423be4aa15b82a0e11, type: 2}
|
||||
m_Scale: {x: 0.15, y: 0.1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _RefractionTex:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SecondDisplacementHeightMap:
|
||||
m_Texture: {fileID: 2800000, guid: 4facc21e08e3a43ed97c930f7dae6e7b, type: 2}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ShoreTex:
|
||||
m_Texture: {fileID: 2800000, guid: 36dd0b22da8874ed38075789055ca664, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 1, y: 1}
|
||||
- _SpecialWavesTex:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ThirdDisplacementHeightMap:
|
||||
m_Texture: {fileID: 2800000, guid: dc30b984e8e3c4cdfb38d5fceb411602, type: 2}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _WaterHolesTex:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _WavesTex:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- m_DisplacementHeightMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- m_SecondDisplacementHeightMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Floats:
|
||||
data:
|
||||
first:
|
||||
name: _Shininess
|
||||
second: 313.218384
|
||||
data:
|
||||
first:
|
||||
name: _WaveScale
|
||||
second: .0462896563
|
||||
data:
|
||||
first:
|
||||
name: _ReflDistort
|
||||
second: .926769614
|
||||
data:
|
||||
first:
|
||||
name: _RefrDistort
|
||||
second: 1.43932855
|
||||
data:
|
||||
first:
|
||||
name: _FresnelScale
|
||||
second: .657142818
|
||||
data:
|
||||
first:
|
||||
name: _GerstnerIntensity
|
||||
second: 1.67142856
|
||||
data:
|
||||
first:
|
||||
name: _InvFade
|
||||
second: .628782988
|
||||
data:
|
||||
first:
|
||||
name: _HeightDisplacement
|
||||
second: 3.27225137
|
||||
data:
|
||||
first:
|
||||
name: _NormalsDisplacement
|
||||
second: 0
|
||||
data:
|
||||
first:
|
||||
name: _Displacement
|
||||
second: .278633773
|
||||
data:
|
||||
first:
|
||||
name: _ShoreTiling
|
||||
second: 56.8627434
|
||||
data:
|
||||
first:
|
||||
name: _FresnelPower
|
||||
second: 1.79310346
|
||||
data:
|
||||
first:
|
||||
name: _FadeExp
|
||||
second: .915032744
|
||||
data:
|
||||
first:
|
||||
name: _InvFadeFoam
|
||||
second: .121699996
|
||||
data:
|
||||
first:
|
||||
name: _WaveFoamDistort
|
||||
second: .279310346
|
||||
data:
|
||||
first:
|
||||
name: _InvFadeDepthFade
|
||||
second: .0719775632
|
||||
data:
|
||||
first:
|
||||
name: _FoamWaveDependency
|
||||
second: .10205479
|
||||
data:
|
||||
first:
|
||||
name: _WaveCapsAmount
|
||||
second: .182758614
|
||||
data:
|
||||
first:
|
||||
name: _Speed
|
||||
second: .413793087
|
||||
data:
|
||||
first:
|
||||
name: _DisplacementTiling
|
||||
second: 18.5868073
|
||||
data:
|
||||
first:
|
||||
name: _Ambient
|
||||
second: 1
|
||||
data:
|
||||
first:
|
||||
name: _WaterDepth
|
||||
second: 40.9807701
|
||||
- _Ambient: 1
|
||||
- _Displacement: 0.27863377
|
||||
- _DisplacementTiling: 18.586807
|
||||
- _FadeExp: 0.91503274
|
||||
- _FoamWaveDependency: 0.10205479
|
||||
- _FresnelPower: 1.7931035
|
||||
- _FresnelScale: 0.6571428
|
||||
- _GerstnerIntensity: 1.6714286
|
||||
- _HeightDisplacement: 3.2722514
|
||||
- _InvFade: 0.628783
|
||||
- _InvFadeDepthFade: 0.07197756
|
||||
- _InvFadeFoam: 0.1217
|
||||
- _NormalsDisplacement: 0
|
||||
- _ReflDistort: 0.9267696
|
||||
- _RefrDistort: 1.4393286
|
||||
- _Shininess: 313.21838
|
||||
- _ShoreTiling: 56.862743
|
||||
- _Speed: 0.4137931
|
||||
- _WaterDepth: 40.98077
|
||||
- _WaveCapsAmount: 0.18275861
|
||||
- _WaveFoamDistort: 0.27931035
|
||||
- _WaveScale: 0.046289656
|
||||
m_Colors:
|
||||
data:
|
||||
first:
|
||||
name: _Color
|
||||
second: {r: 1, g: 1, b: 1, a: 1}
|
||||
data:
|
||||
first:
|
||||
name: _RefrColor
|
||||
second: {r: .523390472, g: .947761178, b: .912149608, a: 1}
|
||||
data:
|
||||
first:
|
||||
name: _Fresnel_ST
|
||||
second: {r: 1, g: 1, b: 0, a: 0}
|
||||
data:
|
||||
first:
|
||||
name: _BumpMap_ST
|
||||
second: {r: 1, g: 1, b: 0, a: 0}
|
||||
data:
|
||||
first:
|
||||
name: WaveSpeed
|
||||
second: {r: 1.08616495, g: 4.44057512, b: 12.1051464, a: -3.02064466}
|
||||
data:
|
||||
first:
|
||||
name: _ReflectiveColor_ST
|
||||
second: {r: 1, g: 1, b: 0, a: 0}
|
||||
data:
|
||||
first:
|
||||
name: _HorizonColor
|
||||
second: {r: .052907113, g: .244867355, b: .283582091, a: 1}
|
||||
data:
|
||||
first:
|
||||
name: _ReflectionTex_ST
|
||||
second: {r: 1, g: 1, b: 0, a: 0}
|
||||
data:
|
||||
first:
|
||||
name: _RefractionTex_ST
|
||||
second: {r: 1, g: 1, b: 0, a: 0}
|
||||
data:
|
||||
first:
|
||||
name: _MainTex_ST
|
||||
second: {r: 1, g: 1, b: 0, a: 0}
|
||||
data:
|
||||
first:
|
||||
name: _DistortParams
|
||||
second: {r: 1.43999994, g: .242857143, b: 1.85306406, a: -.531428456}
|
||||
data:
|
||||
first:
|
||||
name: _InvFadeParemeter
|
||||
second: {r: .218965515, g: .159448281, b: .043103449, a: 0}
|
||||
data:
|
||||
first:
|
||||
name: _AnimationTiling
|
||||
second: {r: .0458255298, g: .0182000007, b: .0457144678, a: .0271296911}
|
||||
data:
|
||||
first:
|
||||
name: _AnimationDirection
|
||||
second: {r: 2, g: 4, b: 2, a: -1}
|
||||
data:
|
||||
first:
|
||||
name: _BumpTiling
|
||||
second: {r: .119999997, g: .0700000003, b: .0799999982, a: .0599999987}
|
||||
data:
|
||||
first:
|
||||
name: _BumpDirection
|
||||
second: {r: 40, g: 40, b: 40, a: -40}
|
||||
data:
|
||||
first:
|
||||
name: _BaseColor
|
||||
second: {r: .153709054, g: .268130153, b: .298507452, a: .819999993}
|
||||
data:
|
||||
first:
|
||||
name: _ReflectionColor
|
||||
second: {r: .579416394, g: .684923828, b: .76119405, a: .431372553}
|
||||
data:
|
||||
first:
|
||||
name: _SpecularColor
|
||||
second: {r: .917910457, g: .917910457, b: .917910457, a: 1}
|
||||
data:
|
||||
first:
|
||||
name: _WorldLightDir
|
||||
second: {r: -.0303751379, g: -.201390833, b: -.979039967, a: 0}
|
||||
data:
|
||||
first:
|
||||
name: _Foam
|
||||
second: {r: .426666677, g: .486666679, b: 0, a: 0}
|
||||
data:
|
||||
first:
|
||||
name: _GAmplitude
|
||||
second: {r: .140000001, g: .75999999, b: .174999997, a: .224999994}
|
||||
data:
|
||||
first:
|
||||
name: _GFrequency
|
||||
second: {r: .5, g: .379999995, b: .589999974, a: .600000024}
|
||||
data:
|
||||
first:
|
||||
name: _GSteepness
|
||||
second: {r: 7, g: 2, b: 6, a: 2}
|
||||
data:
|
||||
first:
|
||||
name: _GSpeed
|
||||
second: {r: -3, g: 2, b: 1, a: 3}
|
||||
data:
|
||||
first:
|
||||
name: _GDirectionAB
|
||||
second: {r: .469143569, g: .354051262, b: -.200000003, a: .100000001}
|
||||
data:
|
||||
first:
|
||||
name: _GDirectionCD
|
||||
second: {r: .70338881, g: -.679999888, b: .717573524, a: -.200000003}
|
||||
data:
|
||||
first:
|
||||
name: _ReflectiveColorCube_ST
|
||||
second: {r: 1, g: 1, b: 0, a: 0}
|
||||
data:
|
||||
first:
|
||||
name: _WaveScale4
|
||||
second: {r: .100000001, g: .100000001, b: .00999999978, a: .00999999978}
|
||||
data:
|
||||
first:
|
||||
name: _WaveOffset
|
||||
second: {r: 1, g: 1, b: -.00999999978, a: -.00999999978}
|
||||
data:
|
||||
first:
|
||||
name: _DepthColor
|
||||
second: {r: .0275116973, g: .141791046, b: .132267773, a: .4627451}
|
||||
data:
|
||||
first:
|
||||
name: _RefractionFog
|
||||
second: {r: .505434752, g: .505434752, b: .505434752, a: .5}
|
||||
data:
|
||||
first:
|
||||
name: _Displacement
|
||||
second: {r: 6.6371665, g: 20.3539829, b: -1, a: -.681415975}
|
||||
data:
|
||||
first:
|
||||
name: _ShoreTiling
|
||||
second: {r: 1, g: 1, b: .100000001, a: .100000001}
|
||||
data:
|
||||
first:
|
||||
name: _DisplacementXz
|
||||
second: {r: .649999917, g: -2.92037153, b: 1.65999985, a: -3.93630457}
|
||||
data:
|
||||
first:
|
||||
name: _RefrColorDepth
|
||||
second: {r: .050066825, g: .231343269, b: .170495242, a: 1}
|
||||
data:
|
||||
first:
|
||||
name: _UnderwaterColor
|
||||
second: {r: .695032299, g: .895522356, b: .75023967, a: 1}
|
||||
data:
|
||||
first:
|
||||
name: _FoamWaveParams
|
||||
second: {r: 0, g: .24918434, b: 3.33957815, a: 1}
|
||||
data:
|
||||
first:
|
||||
name: _ShoreColor
|
||||
second: {r: 1, g: 1, b: 1, a: 1}
|
||||
data:
|
||||
first:
|
||||
name: _ShorePerturbation
|
||||
second: {r: 0, g: 0, b: 0, a: 0}
|
||||
data:
|
||||
first:
|
||||
name: _DepthColorFade
|
||||
second: {r: .888059676, g: .278347045, b: .444632441, a: .223529413}
|
||||
data:
|
||||
first:
|
||||
name: _Extinction
|
||||
second: {r: 4.5, g: 75, b: 300, a: 1}
|
||||
- WaveSpeed: {r: 1.086165, g: 4.440575, b: 12.105146, a: -3.0206447}
|
||||
- _AnimationDirection: {r: 2, g: 4, b: 2, a: -1}
|
||||
- _AnimationTiling: {r: 0.04582553, g: 0.0182, b: 0.045714468, a: 0.027129691}
|
||||
- _BaseColor: {r: 0.15370905, g: 0.26813015, b: 0.29850745, a: 0.82}
|
||||
- _BumpDirection: {r: 40, g: 40, b: 40, a: -40}
|
||||
- _BumpMap_ST: {r: 1, g: 1, b: 0, a: 0}
|
||||
- _BumpTiling: {r: 0.12, g: 0.07, b: 0.08, a: 0.06}
|
||||
- _Color: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _DepthColor: {r: 0.027511697, g: 0.14179105, b: 0.13226777, a: 0.4627451}
|
||||
- _DepthColorFade: {r: 0.8880597, g: 0.27834705, b: 0.44463244, a: 0.22352941}
|
||||
- _Displacement: {r: 6.6371665, g: 20.353983, b: -1, a: -0.681416}
|
||||
- _DisplacementXz: {r: 0.6499999, g: -2.9203715, b: 1.6599998, a: -3.9363046}
|
||||
- _DistortParams: {r: 1.4399999, g: 0.24285714, b: 1.8530641, a: -0.53142846}
|
||||
- _Extinction: {r: 4.5, g: 75, b: 300, a: 1}
|
||||
- _Foam: {r: 0.42666668, g: 0.48666668, b: 0, a: 0}
|
||||
- _FoamWaveParams: {r: 0, g: 0.24918434, b: 3.3395782, a: 1}
|
||||
- _Fresnel_ST: {r: 1, g: 1, b: 0, a: 0}
|
||||
- _GAmplitude: {r: 0.14, g: 0.76, b: 0.175, a: 0.225}
|
||||
- _GDirectionAB: {r: 0.46914357, g: 0.35405126, b: -0.2, a: 0.1}
|
||||
- _GDirectionCD: {r: 0.7033888, g: -0.6799999, b: 0.7175735, a: -0.2}
|
||||
- _GFrequency: {r: 0.5, g: 0.38, b: 0.59, a: 0.6}
|
||||
- _GSpeed: {r: -3, g: 2, b: 1, a: 3}
|
||||
- _GSteepness: {r: 7, g: 2, b: 6, a: 2}
|
||||
- _HorizonColor: {r: 0.052907113, g: 0.24486735, b: 0.2835821, a: 1}
|
||||
- _InvFadeParemeter: {r: 0.21896552, g: 0.15944828, b: 0.04310345, a: 0}
|
||||
- _MainTex_ST: {r: 1, g: 1, b: 0, a: 0}
|
||||
- _ReflectionColor: {r: 0.5794164, g: 0.6849238, b: 0.76119405, a: 0.43137255}
|
||||
- _ReflectionTex_ST: {r: 1, g: 1, b: 0, a: 0}
|
||||
- _ReflectiveColorCube_ST: {r: 1, g: 1, b: 0, a: 0}
|
||||
- _ReflectiveColor_ST: {r: 1, g: 1, b: 0, a: 0}
|
||||
- _RefrColor: {r: 0.5233905, g: 0.9477612, b: 0.9121496, a: 1}
|
||||
- _RefrColorDepth: {r: 0.050066825, g: 0.23134327, b: 0.17049524, a: 1}
|
||||
- _RefractionFog: {r: 0.50543475, g: 0.50543475, b: 0.50543475, a: 0.5}
|
||||
- _RefractionTex_ST: {r: 1, g: 1, b: 0, a: 0}
|
||||
- _ShoreColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _ShorePerturbation: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _ShoreTiling: {r: 1, g: 1, b: 0.1, a: 0.1}
|
||||
- _SpecularColor: {r: 0.91791046, g: 0.91791046, b: 0.91791046, a: 1}
|
||||
- _UnderwaterColor: {r: 0.6950323, g: 0.89552236, b: 0.7502397, a: 1}
|
||||
- _WaveOffset: {r: 1, g: 1, b: -0.01, a: -0.01}
|
||||
- _WaveScale4: {r: 0.1, g: 0.1, b: 0.01, a: 0.01}
|
||||
- _WorldLightDir: {r: -0.030375138, g: -0.20139083, b: -0.97903997, a: 0}
|
||||
--- !u!1002 &2100001
|
||||
EditorExtensionImpl:
|
||||
serializedVersion: 6
|
||||
|
@ -2,189 +2,90 @@
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 3
|
||||
serializedVersion: 6
|
||||
m_ObjectHideFlags: 0
|
||||
m_PrefabParentObject: {fileID: 0}
|
||||
m_PrefabInternal: {fileID: 0}
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: Water4Simple
|
||||
m_Shader: {fileID: 4800000, guid: 8aaff0751054e4a9cb4642d01eaf5be9, type: 3}
|
||||
m_ShaderKeywords: []
|
||||
m_ShaderKeywords:
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses: []
|
||||
m_SavedProperties:
|
||||
serializedVersion: 2
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
data:
|
||||
first:
|
||||
name: _MainTex
|
||||
second:
|
||||
m_Texture: {fileID: 2800000, guid: e6f8288974c664a309d6c66de636978c, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
data:
|
||||
first:
|
||||
name: _BumpMap
|
||||
second:
|
||||
m_Texture: {fileID: 2800000, guid: fb6566c21f717904f83743a5a76dd0b0, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
data:
|
||||
first:
|
||||
name: _ReflectionTex
|
||||
second:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
data:
|
||||
first:
|
||||
name: _RefractionTex
|
||||
second:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
data:
|
||||
first:
|
||||
name: _ShoreTex
|
||||
second:
|
||||
m_Texture: {fileID: 2800000, guid: 36dd0b22da8874ed38075789055ca664, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
data:
|
||||
first:
|
||||
name: _WavesTex
|
||||
second:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
data:
|
||||
first:
|
||||
name: _DisplacementHeightMap
|
||||
second:
|
||||
m_Texture: {fileID: 2800000, guid: a782b26d6436b48d9882906b9f8ca31a, type: 2}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
data:
|
||||
first:
|
||||
name: _SecondDisplacementHeightMap
|
||||
second:
|
||||
m_Texture: {fileID: 2800000, guid: 4facc21e08e3a43ed97c930f7dae6e7b, type: 2}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
data:
|
||||
first:
|
||||
name: _ThirdDisplacementHeightMap
|
||||
second:
|
||||
m_Texture: {fileID: 2800000, guid: dc30b984e8e3c4cdfb38d5fceb411602, type: 2}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
data:
|
||||
first:
|
||||
name: _CubeTex
|
||||
second:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BumpMap:
|
||||
m_Texture: {fileID: 2800000, guid: fb6566c21f717904f83743a5a76dd0b0, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _CubeTex:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DisplacementHeightMap:
|
||||
m_Texture: {fileID: 2800000, guid: a782b26d6436b48d9882906b9f8ca31a, type: 2}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MainTex:
|
||||
m_Texture: {fileID: 2800000, guid: e6f8288974c664a309d6c66de636978c, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ReflectionTex:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _RefractionTex:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SecondDisplacementHeightMap:
|
||||
m_Texture: {fileID: 2800000, guid: 4facc21e08e3a43ed97c930f7dae6e7b, type: 2}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ShoreTex:
|
||||
m_Texture: {fileID: 2800000, guid: 36dd0b22da8874ed38075789055ca664, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ThirdDisplacementHeightMap:
|
||||
m_Texture: {fileID: 2800000, guid: dc30b984e8e3c4cdfb38d5fceb411602, type: 2}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _WavesTex:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Floats:
|
||||
data:
|
||||
first:
|
||||
name: _Shininess
|
||||
second: 349.137939
|
||||
data:
|
||||
first:
|
||||
name: _FresnelScale
|
||||
second: .389714301
|
||||
data:
|
||||
first:
|
||||
name: _GerstnerIntensity
|
||||
second: 1
|
||||
data:
|
||||
first:
|
||||
name: _HeightDisplacement
|
||||
second: 2.33703184
|
||||
data:
|
||||
first:
|
||||
name: _NormalsDisplacement
|
||||
second: 72.7272797
|
||||
- _FresnelScale: 0.3897143
|
||||
- _GerstnerIntensity: 1
|
||||
- _HeightDisplacement: 2.3370318
|
||||
- _NormalsDisplacement: 72.72728
|
||||
- _Shininess: 349.13794
|
||||
m_Colors:
|
||||
data:
|
||||
first:
|
||||
name: _Color
|
||||
second: {r: 1, g: 1, b: 1, a: 1}
|
||||
data:
|
||||
first:
|
||||
name: _DistortParams
|
||||
second: {r: 1.02857149, g: .201872215, b: 2.76662493, a: -.417142838}
|
||||
data:
|
||||
first:
|
||||
name: _InvFadeParemeter
|
||||
second: {r: .275081277, g: .0856210217, b: .0941423923, a: .480310023}
|
||||
data:
|
||||
first:
|
||||
name: _AnimationTiling
|
||||
second: {r: .400000006, g: .390999973, b: .560000002, a: .699999988}
|
||||
data:
|
||||
first:
|
||||
name: _AnimationDirection
|
||||
second: {r: 2, g: 1, b: -1, a: 1}
|
||||
data:
|
||||
first:
|
||||
name: _BumpTiling
|
||||
second: {r: .0399999991, g: .0399999991, b: .0399999991, a: .0799999982}
|
||||
data:
|
||||
first:
|
||||
name: _BumpDirection
|
||||
second: {r: 1, g: 30, b: 20, a: -20}
|
||||
data:
|
||||
first:
|
||||
name: _BaseColor
|
||||
second: {r: .172755614, g: .224076003, b: .24626863, a: .505882382}
|
||||
data:
|
||||
first:
|
||||
name: _ReflectionColor
|
||||
second: {r: .47582978, g: .606486499, b: .664179087, a: .470588237}
|
||||
data:
|
||||
first:
|
||||
name: _SpecularColor
|
||||
second: {r: .820895553, g: .805815935, b: .771886885, a: 1}
|
||||
data:
|
||||
first:
|
||||
name: _WorldLightDir
|
||||
second: {r: .0139923692, g: -.173590809, b: -.984718621, a: 0}
|
||||
data:
|
||||
first:
|
||||
name: _Foam
|
||||
second: {r: .327586204, g: .7471264, b: 0, a: 0}
|
||||
data:
|
||||
first:
|
||||
name: _GAmplitude
|
||||
second: {r: .300000012, g: .200000003, b: .25, a: .25}
|
||||
data:
|
||||
first:
|
||||
name: _GFrequency
|
||||
second: {r: .5, g: .25, b: .600000024, a: .245000005}
|
||||
data:
|
||||
first:
|
||||
name: _GSteepness
|
||||
second: {r: 3.03013062, g: 1, b: 1, a: 1}
|
||||
data:
|
||||
first:
|
||||
name: _GSpeed
|
||||
second: {r: 4, g: 2, b: 1, a: 1}
|
||||
data:
|
||||
first:
|
||||
name: _GDirectionAB
|
||||
second: {r: .850000024, g: .300000012, b: .25, a: .25}
|
||||
data:
|
||||
first:
|
||||
name: _GDirectionCD
|
||||
second: {r: -.300000012, g: -.899999976, b: .5, a: .5}
|
||||
data:
|
||||
first:
|
||||
name: _DepthColor
|
||||
second: {r: .298117638, g: .366117179, b: .395522416, a: .345098048}
|
||||
data:
|
||||
first:
|
||||
name: _RefractionFog
|
||||
second: {r: .868177772, g: .879717588, b: .888059676, a: 1}
|
||||
- _AnimationDirection: {r: 2, g: 1, b: -1, a: 1}
|
||||
- _AnimationTiling: {r: 0.4, g: 0.39099997, b: 0.56, a: 0.7}
|
||||
- _BaseColor: {r: 0.17275561, g: 0.224076, b: 0.24626863, a: 0.5058824}
|
||||
- _BumpDirection: {r: 1, g: 30, b: 20, a: -20}
|
||||
- _BumpTiling: {r: 0.04, g: 0.04, b: 0.04, a: 0.04}
|
||||
- _Color: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _DepthColor: {r: 0.29811764, g: 0.36611718, b: 0.39552242, a: 0.34509805}
|
||||
- _DistortParams: {r: 1.0285715, g: 0.20187221, b: 2.766625, a: -0.41714284}
|
||||
- _Foam: {r: 0.3275862, g: 0.7471264, b: 0, a: 0}
|
||||
- _GAmplitude: {r: 0.3, g: 0.2, b: 0.25, a: 0.25}
|
||||
- _GDirectionAB: {r: 0.85, g: 0.3, b: 0.25, a: 0.25}
|
||||
- _GDirectionCD: {r: -0.3, g: -0.9, b: 0.5, a: 0.5}
|
||||
- _GFrequency: {r: 0.5, g: 0.25, b: 0.6, a: 0.245}
|
||||
- _GSpeed: {r: 4, g: 2, b: 1, a: 1}
|
||||
- _GSteepness: {r: 3.0301306, g: 1, b: 1, a: 1}
|
||||
- _InvFadeParemeter: {r: 0.27508128, g: 0.08562102, b: 0.09414239, a: 0.48031002}
|
||||
- _ReflectionColor: {r: 0.47582978, g: 0.6064865, b: 0.6641791, a: 0.47058824}
|
||||
- _RefractionFog: {r: 0.8681778, g: 0.8797176, b: 0.8880597, a: 1}
|
||||
- _SpecularColor: {r: 0.82089555, g: 0.80581594, b: 0.7718869, a: 1}
|
||||
- _WorldLightDir: {r: 0.013992369, g: -0.17359081, b: -0.9847186, a: 0}
|
||||
--- !u!1002 &2100001
|
||||
EditorExtensionImpl:
|
||||
serializedVersion: 6
|
||||
|
Loading…
Reference in New Issue
Block a user