FOG
This commit is contained in:
parent
9310d7166d
commit
e2f6da9586
8
Assets/FXVille_BloodPack.meta
Normal file
8
Assets/FXVille_BloodPack.meta
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 5ec06f8ad27397d4fa97f49c0243a8c2
|
||||||
|
folderAsset: yes
|
||||||
|
DefaultImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
9
Assets/FXVille_BloodPack/Editor.meta
Normal file
9
Assets/FXVille_BloodPack/Editor.meta
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 79582625674b7534a8de39ccc603a2f3
|
||||||
|
folderAsset: yes
|
||||||
|
timeCreated: 1513808132
|
||||||
|
licenseType: Store
|
||||||
|
DefaultImporter:
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
148
Assets/FXVille_BloodPack/Editor/CustomMaterialEditor.cs
Normal file
148
Assets/FXVille_BloodPack/Editor/CustomMaterialEditor.cs
Normal file
@ -0,0 +1,148 @@
|
|||||||
|
//based off of a guide by Martin Palko http://www.martinpalko.com/muli-compile-unity/
|
||||||
|
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using UnityEngine;
|
||||||
|
using UnityEditor;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text.RegularExpressions;
|
||||||
|
|
||||||
|
public abstract class CustomMaterialEditor : MaterialEditor
|
||||||
|
{
|
||||||
|
public class FeatureToggle
|
||||||
|
{
|
||||||
|
// The name the toggle will have in the inspector
|
||||||
|
public string InspectorName;
|
||||||
|
// We will look for properties that contain this word, and hide them if we're not enabled.
|
||||||
|
public string InspectorPropertyHideTag;
|
||||||
|
// The keyword that the shader uses when this feature is enabled or disabled.
|
||||||
|
public string ShaderKeywordEnabled;
|
||||||
|
public string ShaderKeywordDisabled;
|
||||||
|
// The current state of this feature.
|
||||||
|
public bool Enabled;
|
||||||
|
|
||||||
|
public FeatureToggle(string InspectorName, string InspectorPropertyHideTag, string ShaderKeywordEnabled, string ShaderKeywordDisabled)
|
||||||
|
{
|
||||||
|
this.InspectorName = InspectorName;
|
||||||
|
this.InspectorPropertyHideTag = InspectorPropertyHideTag;
|
||||||
|
this.ShaderKeywordEnabled = ShaderKeywordEnabled;
|
||||||
|
this.ShaderKeywordDisabled = ShaderKeywordDisabled;
|
||||||
|
this.Enabled = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// A list of all the toggles that we have in this material editor.
|
||||||
|
protected List<FeatureToggle> Toggles = new List<FeatureToggle>();
|
||||||
|
// This function will be implemented in derived classes, and used to populate the list of toggles.
|
||||||
|
protected abstract void CreateToggleList();
|
||||||
|
|
||||||
|
public override void OnInspectorGUI ()
|
||||||
|
{
|
||||||
|
// if we are not visible... return
|
||||||
|
if (!isVisible)
|
||||||
|
return;
|
||||||
|
|
||||||
|
// Get the current keywords from the material
|
||||||
|
Material targetMat = target as Material;
|
||||||
|
Object[] matObjArray = new Object[1];
|
||||||
|
matObjArray[0] = (Object)targetMat;
|
||||||
|
string[] oldKeyWords = targetMat.shaderKeywords;
|
||||||
|
|
||||||
|
// Populate our list of toggles
|
||||||
|
|
||||||
|
//Toggles.Clear();
|
||||||
|
Toggles = new List<FeatureToggle>();
|
||||||
|
CreateToggleList();
|
||||||
|
|
||||||
|
// Update each toggle to enabled if it's enabled keyword is present. If it's enabled keyword is missing, we assume it's disabled.
|
||||||
|
for(int i = 0; i < Toggles.Count; i++)
|
||||||
|
{
|
||||||
|
Toggles[i].Enabled = oldKeyWords.Contains (Toggles[i].ShaderKeywordEnabled);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Begin listening for changes in GUI, so we don't waste time re-applying settings that haven't changed.
|
||||||
|
EditorGUI.BeginChangeCheck();
|
||||||
|
|
||||||
|
serializedObject.Update ();
|
||||||
|
var theShader = serializedObject.FindProperty ("m_Shader");
|
||||||
|
if (isVisible && !theShader.hasMultipleDifferentValues && theShader.objectReferenceValue != null)
|
||||||
|
{
|
||||||
|
float controlSize = 64;
|
||||||
|
EditorGUIUtility.labelWidth = Screen.width - controlSize - 60;
|
||||||
|
EditorGUIUtility.fieldWidth = controlSize;
|
||||||
|
|
||||||
|
Shader shader = theShader.objectReferenceValue as Shader;
|
||||||
|
|
||||||
|
EditorGUI.BeginChangeCheck();
|
||||||
|
|
||||||
|
// Draw Non-toggleable values
|
||||||
|
for (int i = 0; i < ShaderUtil.GetPropertyCount(shader); i++)
|
||||||
|
{
|
||||||
|
MaterialPropertyImpl(matObjArray, i, null);
|
||||||
|
}
|
||||||
|
// Draw toggles, then their values.
|
||||||
|
for (int s = 0; s < Toggles.Count; s++)
|
||||||
|
{
|
||||||
|
EditorGUILayout.Separator();
|
||||||
|
Toggles[s].Enabled = EditorGUILayout.BeginToggleGroup(Toggles[s].InspectorName, Toggles[s].Enabled);
|
||||||
|
|
||||||
|
if (Toggles[s].Enabled)
|
||||||
|
{
|
||||||
|
for (int i = 0; i < ShaderUtil.GetPropertyCount(shader); i++)
|
||||||
|
{
|
||||||
|
MaterialPropertyImpl(matObjArray, i, Toggles[s]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
EditorGUILayout.EndToggleGroup();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (EditorGUI.EndChangeCheck())
|
||||||
|
PropertiesChanged ();
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
// If changes have been made, then apply them.
|
||||||
|
if (EditorGUI.EndChangeCheck())
|
||||||
|
{
|
||||||
|
// New list of key words.
|
||||||
|
List<string> newKeyWords = new List<string>();
|
||||||
|
|
||||||
|
// If true, add the enabled keyword (ending with _ON), if false, add the disabled keyword(ending with _OFF).
|
||||||
|
for(int i = 0; i < Toggles.Count; i++)
|
||||||
|
{
|
||||||
|
newKeyWords.Add(Toggles[i].Enabled ? Toggles[i].ShaderKeywordEnabled : Toggles[i].ShaderKeywordDisabled);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Send the new list of keywords to the material, this will define what version of the shader to use.
|
||||||
|
targetMat.shaderKeywords = newKeyWords.ToArray ();
|
||||||
|
EditorUtility.SetDirty (targetMat);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Alt version of shader property implementation that takes material. Runs once for every property in our shader.
|
||||||
|
private void MaterialPropertyImpl(Object[] matObjArray, int propertyIndex, FeatureToggle currentToggle)
|
||||||
|
{
|
||||||
|
Material mat = (Material)matObjArray[0];
|
||||||
|
string propertyDescription = ShaderUtil.GetPropertyDescription(mat.shader, propertyIndex);
|
||||||
|
|
||||||
|
// If current toggle is null, we only want to show properties that aren't already "owned" by a toggle,
|
||||||
|
// so if it is owned by another toggle, then return.
|
||||||
|
if (currentToggle == null)
|
||||||
|
{
|
||||||
|
for (int i = 0; i < Toggles.Count; i++)
|
||||||
|
{
|
||||||
|
if (Regex.IsMatch(propertyDescription, Toggles[i].InspectorPropertyHideTag, RegexOptions.IgnoreCase))
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// Only draw if we the current property is owned by the current toggle.
|
||||||
|
else if (!Regex.IsMatch(propertyDescription, currentToggle.InspectorPropertyHideTag, RegexOptions.IgnoreCase))
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
// If we've gotten to this point, draw the shader property regularly.
|
||||||
|
MaterialProperty matProp = GetMaterialProperty(matObjArray, propertyIndex);
|
||||||
|
ShaderProperty(matProp, matProp.displayName);
|
||||||
|
}
|
||||||
|
}
|
12
Assets/FXVille_BloodPack/Editor/CustomMaterialEditor.cs.meta
Normal file
12
Assets/FXVille_BloodPack/Editor/CustomMaterialEditor.cs.meta
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 4f4e326c442b58b42a2c0f91982df67a
|
||||||
|
timeCreated: 1513899359
|
||||||
|
licenseType: Store
|
||||||
|
MonoImporter:
|
||||||
|
serializedVersion: 2
|
||||||
|
defaultReferences: []
|
||||||
|
executionOrder: 0
|
||||||
|
icon: {instanceID: 0}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
40
Assets/FXVille_BloodPack/Editor/SpecularToggleEditor.cs
Normal file
40
Assets/FXVille_BloodPack/Editor/SpecularToggleEditor.cs
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
using System.Collections;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using UnityEngine;
|
||||||
|
using UnityEditor;
|
||||||
|
using System.Linq;
|
||||||
|
|
||||||
|
public class SpecularToggleEditor : CustomMaterialEditor
|
||||||
|
{
|
||||||
|
// public override void OnInspectorGUI ()
|
||||||
|
// {
|
||||||
|
// base.OnInspectorGUI ();
|
||||||
|
//
|
||||||
|
// if (!isVisible)
|
||||||
|
// {
|
||||||
|
// Debug.Log("not visible");
|
||||||
|
// return;
|
||||||
|
// }
|
||||||
|
//
|
||||||
|
// Material targetMat = target as Material;
|
||||||
|
// string[] keyWords = targetMat.shaderKeywords;
|
||||||
|
//
|
||||||
|
// bool specularReflectionEnabled = keyWords.Contains ("SPECULAR_REFLECTION_ON");
|
||||||
|
// EditorGUI.BeginChangeCheck();
|
||||||
|
//
|
||||||
|
// specularReflectionEnabled = EditorGUILayout.Toggle ("Specular Reflection Enabled", specularReflectionEnabled);
|
||||||
|
//
|
||||||
|
// if (EditorGUI.EndChangeCheck())
|
||||||
|
// {
|
||||||
|
// //If enabled, add keyword SPECULAR_REFLECTION_ON, otherwise add SPECULAR_REFLECTION_OFF
|
||||||
|
// List<string> keywords = new List<string> { specularReflectionEnabled? "SPECULAR_REFLECTION_ON" : "SPECULAR_REFLECTION_OFF"};
|
||||||
|
// targetMat.shaderKeywords = keywords.ToArray();
|
||||||
|
// EditorUtility.SetDirty (targetMat);
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
protected override void CreateToggleList()
|
||||||
|
{
|
||||||
|
Toggles.Add(new FeatureToggle("Specular Reflection Enabled", "reflection", "SPECULAR_REFLECTION_ON", "SPECULAR_REFLECTION_OFF"));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
12
Assets/FXVille_BloodPack/Editor/SpecularToggleEditor.cs.meta
Normal file
12
Assets/FXVille_BloodPack/Editor/SpecularToggleEditor.cs.meta
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 9e1c8c657f6a5414f8ebf54e8b1c3b3d
|
||||||
|
timeCreated: 1513807519
|
||||||
|
licenseType: Store
|
||||||
|
MonoImporter:
|
||||||
|
serializedVersion: 2
|
||||||
|
defaultReferences: []
|
||||||
|
executionOrder: 0
|
||||||
|
icon: {instanceID: 0}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
9
Assets/FXVille_BloodPack/Effect Prefabs.meta
Normal file
9
Assets/FXVille_BloodPack/Effect Prefabs.meta
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: abffc5c7d65543247bd7fd1544d7722d
|
||||||
|
folderAsset: yes
|
||||||
|
timeCreated: 1507573677
|
||||||
|
licenseType: Store
|
||||||
|
DefaultImporter:
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
12881
Assets/FXVille_BloodPack/Effect Prefabs/Blood_Burst_Directional_L.prefab
Normal file
12881
Assets/FXVille_BloodPack/Effect Prefabs/Blood_Burst_Directional_L.prefab
Normal file
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,9 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 17bd62b7ccd885f41a16399ebc879026
|
||||||
|
timeCreated: 1524263294
|
||||||
|
licenseType: Store
|
||||||
|
NativeFormatImporter:
|
||||||
|
mainObjectFileID: 100100000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
12876
Assets/FXVille_BloodPack/Effect Prefabs/Blood_Burst_Directional_M.prefab
Normal file
12876
Assets/FXVille_BloodPack/Effect Prefabs/Blood_Burst_Directional_M.prefab
Normal file
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,9 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: df1b3895adcc43e4eb1c0156f282610c
|
||||||
|
timeCreated: 1524263291
|
||||||
|
licenseType: Store
|
||||||
|
NativeFormatImporter:
|
||||||
|
mainObjectFileID: 100100000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
12881
Assets/FXVille_BloodPack/Effect Prefabs/Blood_Burst_Directional_S.prefab
Normal file
12881
Assets/FXVille_BloodPack/Effect Prefabs/Blood_Burst_Directional_S.prefab
Normal file
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,9 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: e3c8281037d1aac4ea819afd2b3bd8d7
|
||||||
|
timeCreated: 1524263288
|
||||||
|
licenseType: Store
|
||||||
|
NativeFormatImporter:
|
||||||
|
mainObjectFileID: 100100000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
16099
Assets/FXVille_BloodPack/Effect Prefabs/Blood_Burst_Omni_L.prefab
Normal file
16099
Assets/FXVille_BloodPack/Effect Prefabs/Blood_Burst_Omni_L.prefab
Normal file
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,9 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 177675180edb289479dd6999acf35179
|
||||||
|
timeCreated: 1524263324
|
||||||
|
licenseType: Store
|
||||||
|
NativeFormatImporter:
|
||||||
|
mainObjectFileID: 100100000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
16089
Assets/FXVille_BloodPack/Effect Prefabs/Blood_Burst_Omni_M.prefab
Normal file
16089
Assets/FXVille_BloodPack/Effect Prefabs/Blood_Burst_Omni_M.prefab
Normal file
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,9 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: ec8d3f2d1e540084399da023f13f87d7
|
||||||
|
timeCreated: 1524263326
|
||||||
|
licenseType: Store
|
||||||
|
NativeFormatImporter:
|
||||||
|
mainObjectFileID: 100100000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
9663
Assets/FXVille_BloodPack/Effect Prefabs/Blood_Burst_Omni_S.prefab
Normal file
9663
Assets/FXVille_BloodPack/Effect Prefabs/Blood_Burst_Omni_S.prefab
Normal file
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,9 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 6f5c1fefc5a1904479713463a42c8402
|
||||||
|
timeCreated: 1524263328
|
||||||
|
licenseType: Store
|
||||||
|
NativeFormatImporter:
|
||||||
|
mainObjectFileID: 100100000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
16107
Assets/FXVille_BloodPack/Effect Prefabs/Blood_Flow_Splash_L.prefab
Normal file
16107
Assets/FXVille_BloodPack/Effect Prefabs/Blood_Flow_Splash_L.prefab
Normal file
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,9 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 02b21c74bd4492f459b8f1f88ef6f442
|
||||||
|
timeCreated: 1524263334
|
||||||
|
licenseType: Store
|
||||||
|
NativeFormatImporter:
|
||||||
|
mainObjectFileID: 100100000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
12882
Assets/FXVille_BloodPack/Effect Prefabs/Blood_Flow_Splash_M.prefab
Normal file
12882
Assets/FXVille_BloodPack/Effect Prefabs/Blood_Flow_Splash_M.prefab
Normal file
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,9 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: ef39c4875be27ee4c88d83d522b8a855
|
||||||
|
timeCreated: 1524263336
|
||||||
|
licenseType: Store
|
||||||
|
NativeFormatImporter:
|
||||||
|
mainObjectFileID: 100100000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
9669
Assets/FXVille_BloodPack/Effect Prefabs/Blood_Flow_Splash_S.prefab
Normal file
9669
Assets/FXVille_BloodPack/Effect Prefabs/Blood_Flow_Splash_S.prefab
Normal file
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,9 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: f3b79f95d7b472c4099393619f231989
|
||||||
|
timeCreated: 1524263339
|
||||||
|
licenseType: Store
|
||||||
|
NativeFormatImporter:
|
||||||
|
mainObjectFileID: 100100000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
16173
Assets/FXVille_BloodPack/Effect Prefabs/Blood_Gush_Splash_L.prefab
Normal file
16173
Assets/FXVille_BloodPack/Effect Prefabs/Blood_Gush_Splash_L.prefab
Normal file
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,9 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: b5098f1bb64823a419c21728d28d3111
|
||||||
|
timeCreated: 1524263342
|
||||||
|
licenseType: Store
|
||||||
|
NativeFormatImporter:
|
||||||
|
mainObjectFileID: 100100000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
12930
Assets/FXVille_BloodPack/Effect Prefabs/Blood_Gush_Splash_M.prefab
Normal file
12930
Assets/FXVille_BloodPack/Effect Prefabs/Blood_Gush_Splash_M.prefab
Normal file
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,9 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 256cd0ba1273ce24e8723adc9e9be00e
|
||||||
|
timeCreated: 1524263344
|
||||||
|
licenseType: Store
|
||||||
|
NativeFormatImporter:
|
||||||
|
mainObjectFileID: 100100000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
12906
Assets/FXVille_BloodPack/Effect Prefabs/Blood_Gush_Splash_S.prefab
Normal file
12906
Assets/FXVille_BloodPack/Effect Prefabs/Blood_Gush_Splash_S.prefab
Normal file
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,9 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 05d6a824d9c118d46b3fc6c0bb78f28d
|
||||||
|
timeCreated: 1524263347
|
||||||
|
licenseType: Store
|
||||||
|
NativeFormatImporter:
|
||||||
|
mainObjectFileID: 100100000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
19312
Assets/FXVille_BloodPack/Effect Prefabs/Blood_Slice_Directional_L.prefab
Normal file
19312
Assets/FXVille_BloodPack/Effect Prefabs/Blood_Slice_Directional_L.prefab
Normal file
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,9 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 3389c6716d22f5e4c83f24a9b3c12336
|
||||||
|
timeCreated: 1524263373
|
||||||
|
licenseType: Store
|
||||||
|
NativeFormatImporter:
|
||||||
|
mainObjectFileID: 100100000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
19312
Assets/FXVille_BloodPack/Effect Prefabs/Blood_Slice_Directional_M.prefab
Normal file
19312
Assets/FXVille_BloodPack/Effect Prefabs/Blood_Slice_Directional_M.prefab
Normal file
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,9 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 53b69a6aacc504d4ca0a667f903d2852
|
||||||
|
timeCreated: 1524263368
|
||||||
|
licenseType: Store
|
||||||
|
NativeFormatImporter:
|
||||||
|
mainObjectFileID: 100100000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
19312
Assets/FXVille_BloodPack/Effect Prefabs/Blood_Slice_Omni_L.prefab
Normal file
19312
Assets/FXVille_BloodPack/Effect Prefabs/Blood_Slice_Omni_L.prefab
Normal file
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,9 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 946d0baa8e56e6a44834622301874478
|
||||||
|
timeCreated: 1524263382
|
||||||
|
licenseType: Store
|
||||||
|
NativeFormatImporter:
|
||||||
|
mainObjectFileID: 100100000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
19312
Assets/FXVille_BloodPack/Effect Prefabs/Blood_Slice_Omni_M.prefab
Normal file
19312
Assets/FXVille_BloodPack/Effect Prefabs/Blood_Slice_Omni_M.prefab
Normal file
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,9 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 4d7746559804f034daa8e1c8ee23a78a
|
||||||
|
timeCreated: 1524263377
|
||||||
|
licenseType: Store
|
||||||
|
NativeFormatImporter:
|
||||||
|
mainObjectFileID: 100100000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
16089
Assets/FXVille_BloodPack/Effect Prefabs/Blood_Spray_Directional_L.prefab
Normal file
16089
Assets/FXVille_BloodPack/Effect Prefabs/Blood_Spray_Directional_L.prefab
Normal file
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,9 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 013f40a2f9e6c294ebfb06cbf7780362
|
||||||
|
timeCreated: 1524263317
|
||||||
|
licenseType: Store
|
||||||
|
NativeFormatImporter:
|
||||||
|
mainObjectFileID: 100100000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
16089
Assets/FXVille_BloodPack/Effect Prefabs/Blood_Spray_Directional_M.prefab
Normal file
16089
Assets/FXVille_BloodPack/Effect Prefabs/Blood_Spray_Directional_M.prefab
Normal file
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,9 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 95f8e85235d81624e80a182d051cc130
|
||||||
|
timeCreated: 1524263314
|
||||||
|
licenseType: Store
|
||||||
|
NativeFormatImporter:
|
||||||
|
mainObjectFileID: 100100000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
12876
Assets/FXVille_BloodPack/Effect Prefabs/Blood_Spray_Directional_S.prefab
Normal file
12876
Assets/FXVille_BloodPack/Effect Prefabs/Blood_Spray_Directional_S.prefab
Normal file
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,9 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: e4f2457ff3c41d149a9be1a74258d7e6
|
||||||
|
timeCreated: 1524263312
|
||||||
|
licenseType: Store
|
||||||
|
NativeFormatImporter:
|
||||||
|
mainObjectFileID: 100100000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,9 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 5ff1cc7dc124b1a42b63892b475e721e
|
||||||
|
timeCreated: 1524263355
|
||||||
|
licenseType: Store
|
||||||
|
NativeFormatImporter:
|
||||||
|
mainObjectFileID: 100100000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
25760
Assets/FXVille_BloodPack/Effect Prefabs/Gore_Explosion_Omni.prefab
Normal file
25760
Assets/FXVille_BloodPack/Effect Prefabs/Gore_Explosion_Omni.prefab
Normal file
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,9 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 35f735ea8ab99424893b817d677b094d
|
||||||
|
timeCreated: 1524263360
|
||||||
|
licenseType: Store
|
||||||
|
NativeFormatImporter:
|
||||||
|
mainObjectFileID: 100100000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,9 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 612fc26611deac34ca2ace49e8db64d2
|
||||||
|
timeCreated: 1524266097
|
||||||
|
licenseType: Store
|
||||||
|
NativeFormatImporter:
|
||||||
|
mainObjectFileID: 100100000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,9 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 880829e573f3bd547a392a8121795fd2
|
||||||
|
timeCreated: 1524266100
|
||||||
|
licenseType: Store
|
||||||
|
NativeFormatImporter:
|
||||||
|
mainObjectFileID: 100100000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,9 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 31cd0829c887eb34ba419b2ab0982361
|
||||||
|
timeCreated: 1524266102
|
||||||
|
licenseType: Store
|
||||||
|
NativeFormatImporter:
|
||||||
|
mainObjectFileID: 100100000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
16099
Assets/FXVille_BloodPack/Effect Prefabs/StyleBlood_Burst_Omni_L.prefab
Normal file
16099
Assets/FXVille_BloodPack/Effect Prefabs/StyleBlood_Burst_Omni_L.prefab
Normal file
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,9 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: afd3a39611dffa04eb57d1791f8b313b
|
||||||
|
timeCreated: 1524266120
|
||||||
|
licenseType: Store
|
||||||
|
NativeFormatImporter:
|
||||||
|
mainObjectFileID: 100100000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
16089
Assets/FXVille_BloodPack/Effect Prefabs/StyleBlood_Burst_Omni_M.prefab
Normal file
16089
Assets/FXVille_BloodPack/Effect Prefabs/StyleBlood_Burst_Omni_M.prefab
Normal file
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,9 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 98ceda76bf806a14a80c20c9edfad7ae
|
||||||
|
timeCreated: 1524266121
|
||||||
|
licenseType: Store
|
||||||
|
NativeFormatImporter:
|
||||||
|
mainObjectFileID: 100100000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,9 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 79a0f0d3ed434c84c98487772d3203f8
|
||||||
|
timeCreated: 1524266123
|
||||||
|
licenseType: Store
|
||||||
|
NativeFormatImporter:
|
||||||
|
mainObjectFileID: 100100000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
16107
Assets/FXVille_BloodPack/Effect Prefabs/StyleBlood_Flow_Splash_L.prefab
Normal file
16107
Assets/FXVille_BloodPack/Effect Prefabs/StyleBlood_Flow_Splash_L.prefab
Normal file
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,9 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 7e75ca7398c6e3749a8c5fbd9690e1b8
|
||||||
|
timeCreated: 1524266125
|
||||||
|
licenseType: Store
|
||||||
|
NativeFormatImporter:
|
||||||
|
mainObjectFileID: 100100000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
12882
Assets/FXVille_BloodPack/Effect Prefabs/StyleBlood_Flow_Splash_M.prefab
Normal file
12882
Assets/FXVille_BloodPack/Effect Prefabs/StyleBlood_Flow_Splash_M.prefab
Normal file
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,9 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 8f7535fb11a960c47b6b45192fe1c670
|
||||||
|
timeCreated: 1524266126
|
||||||
|
licenseType: Store
|
||||||
|
NativeFormatImporter:
|
||||||
|
mainObjectFileID: 100100000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,9 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 52276292629dcc6429618fd2c6caacc7
|
||||||
|
timeCreated: 1524266128
|
||||||
|
licenseType: Store
|
||||||
|
NativeFormatImporter:
|
||||||
|
mainObjectFileID: 100100000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
16173
Assets/FXVille_BloodPack/Effect Prefabs/StyleBlood_Gush_Splash_L.prefab
Normal file
16173
Assets/FXVille_BloodPack/Effect Prefabs/StyleBlood_Gush_Splash_L.prefab
Normal file
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,9 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: f3f6aa0661b8cfd49b20673a293270eb
|
||||||
|
timeCreated: 1524266130
|
||||||
|
licenseType: Store
|
||||||
|
NativeFormatImporter:
|
||||||
|
mainObjectFileID: 100100000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
12930
Assets/FXVille_BloodPack/Effect Prefabs/StyleBlood_Gush_Splash_M.prefab
Normal file
12930
Assets/FXVille_BloodPack/Effect Prefabs/StyleBlood_Gush_Splash_M.prefab
Normal file
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,9 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 8a8fd82f64dcd05418a7489c573f4e88
|
||||||
|
timeCreated: 1524266131
|
||||||
|
licenseType: Store
|
||||||
|
NativeFormatImporter:
|
||||||
|
mainObjectFileID: 100100000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
12906
Assets/FXVille_BloodPack/Effect Prefabs/StyleBlood_Gush_Splash_S.prefab
Normal file
12906
Assets/FXVille_BloodPack/Effect Prefabs/StyleBlood_Gush_Splash_S.prefab
Normal file
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,9 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 8634d8f54a29e1948985c511a7aaf0ec
|
||||||
|
timeCreated: 1524266133
|
||||||
|
licenseType: Store
|
||||||
|
NativeFormatImporter:
|
||||||
|
mainObjectFileID: 100100000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,9 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 3c0fe87ffa23d30468f28f12ab4b41b4
|
||||||
|
timeCreated: 1524266140
|
||||||
|
licenseType: Store
|
||||||
|
NativeFormatImporter:
|
||||||
|
mainObjectFileID: 100100000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,9 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: fd53e430a9d80ba47b8861aa2a4a0622
|
||||||
|
timeCreated: 1524266139
|
||||||
|
licenseType: Store
|
||||||
|
NativeFormatImporter:
|
||||||
|
mainObjectFileID: 100100000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
19312
Assets/FXVille_BloodPack/Effect Prefabs/StyleBlood_Slice_Omni_L.prefab
Normal file
19312
Assets/FXVille_BloodPack/Effect Prefabs/StyleBlood_Slice_Omni_L.prefab
Normal file
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,9 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 3e59383a67cc678498de93fdeacb7779
|
||||||
|
timeCreated: 1524266144
|
||||||
|
licenseType: Store
|
||||||
|
NativeFormatImporter:
|
||||||
|
mainObjectFileID: 100100000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
16099
Assets/FXVille_BloodPack/Effect Prefabs/StyleBlood_Slice_Omni_M.prefab
Normal file
16099
Assets/FXVille_BloodPack/Effect Prefabs/StyleBlood_Slice_Omni_M.prefab
Normal file
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,9 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 2b491acaf5c3f174ebb0f7e6aea13910
|
||||||
|
timeCreated: 1524266142
|
||||||
|
licenseType: Store
|
||||||
|
NativeFormatImporter:
|
||||||
|
mainObjectFileID: 100100000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,9 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: db7712d7e28513b43b3436a2b1e52045
|
||||||
|
timeCreated: 1524266115
|
||||||
|
licenseType: Store
|
||||||
|
NativeFormatImporter:
|
||||||
|
mainObjectFileID: 100100000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,9 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 4a7b0b077aec9c84eb7fb8b9f716f372
|
||||||
|
timeCreated: 1524266116
|
||||||
|
licenseType: Store
|
||||||
|
NativeFormatImporter:
|
||||||
|
mainObjectFileID: 100100000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,9 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 598cf4312eb07a147b990aa475d2a710
|
||||||
|
timeCreated: 1524266118
|
||||||
|
licenseType: Store
|
||||||
|
NativeFormatImporter:
|
||||||
|
mainObjectFileID: 100100000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,9 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 1a5e49f8d5e62994e8bccb91b7d662c7
|
||||||
|
timeCreated: 1524266135
|
||||||
|
licenseType: Store
|
||||||
|
NativeFormatImporter:
|
||||||
|
mainObjectFileID: 100100000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
9
Assets/FXVille_BloodPack/Materials.meta
Normal file
9
Assets/FXVille_BloodPack/Materials.meta
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: cefa98d4343e0464386695b1de80180b
|
||||||
|
folderAsset: yes
|
||||||
|
timeCreated: 1507077513
|
||||||
|
licenseType: Store
|
||||||
|
DefaultImporter:
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
165
Assets/FXVille_BloodPack/Materials/M_Blood_Arc_01.mat
Normal file
165
Assets/FXVille_BloodPack/Materials/M_Blood_Arc_01.mat
Normal file
@ -0,0 +1,165 @@
|
|||||||
|
%YAML 1.1
|
||||||
|
%TAG !u! tag:unity3d.com,2011:
|
||||||
|
--- !u!21 &2100000
|
||||||
|
Material:
|
||||||
|
serializedVersion: 6
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_PrefabParentObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 0}
|
||||||
|
m_Name: M_Blood_Arc_01
|
||||||
|
m_Shader: {fileID: 4800000, guid: 28eccfbe919a6b945bd87550768e9dcf, type: 3}
|
||||||
|
m_ShaderKeywords: SPECULAR_REFLECTION_ON
|
||||||
|
m_LightmapFlags: 4
|
||||||
|
m_EnableInstancingVariants: 0
|
||||||
|
m_DoubleSidedGI: 0
|
||||||
|
m_CustomRenderQueue: -1
|
||||||
|
stringTagMap: {}
|
||||||
|
disabledShaderPasses: []
|
||||||
|
m_SavedProperties:
|
||||||
|
serializedVersion: 3
|
||||||
|
m_TexEnvs:
|
||||||
|
- NoiseTex:
|
||||||
|
m_Texture: {fileID: 0}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _BackTex:
|
||||||
|
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}
|
||||||
|
- _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}
|
||||||
|
- _DownTex:
|
||||||
|
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}
|
||||||
|
- _FrontTex:
|
||||||
|
m_Texture: {fileID: 0}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _LeftTex:
|
||||||
|
m_Texture: {fileID: 0}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _MainTex:
|
||||||
|
m_Texture: {fileID: 2800000, guid: 5d420af2ab78c6a46b88908c47d8e63c, type: 3}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _Mask:
|
||||||
|
m_Texture: {fileID: 2800000, guid: 472c208cb1bb4f248820a92b475b0e70, 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}
|
||||||
|
- _Noise:
|
||||||
|
m_Texture: {fileID: 2800000, guid: 11868e4144e4ed541a6ae3cd71db9121, type: 3}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _NoiseTex:
|
||||||
|
m_Texture: {fileID: 2800000, guid: 5f64bc4cb40b8f6448782810351fe988, type: 3}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0.08}
|
||||||
|
- _Normal:
|
||||||
|
m_Texture: {fileID: 2800000, guid: 3ffe60a1be7ea6845b59a52abcb50829, type: 3}
|
||||||
|
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}
|
||||||
|
- _ReflectionTex:
|
||||||
|
m_Texture: {fileID: 2800000, guid: 2d0d6c2f82b84c545b7ab2ec21d914e6, type: 3}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0.11, y: 0.09}
|
||||||
|
- _RightTex:
|
||||||
|
m_Texture: {fileID: 0}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _UpTex:
|
||||||
|
m_Texture: {fileID: 0}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _Warp:
|
||||||
|
m_Texture: {fileID: 2800000, guid: 676dc61850f55cb43b386278a31f41fb, type: 3}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _WarpTex:
|
||||||
|
m_Texture: {fileID: 2800000, guid: 9b0f874b7eab4584a8adfe210118664e, type: 3}
|
||||||
|
m_Scale: {x: 0.7, y: 0.5}
|
||||||
|
m_Offset: {x: -0.07, y: 0.03}
|
||||||
|
m_Floats:
|
||||||
|
- _AlphaClipMin: 1.53
|
||||||
|
- _AlphaClipSoft: 0.37
|
||||||
|
- _AlphaMin: 0.1
|
||||||
|
- _AlphaSoft: 0.022
|
||||||
|
- _BumpScale: 1
|
||||||
|
- _Columns: 1
|
||||||
|
- _Cutoff: 0.5
|
||||||
|
- _DetailNormalMapScale: 1
|
||||||
|
- _DstBlend: 0
|
||||||
|
- _EdgeDarken: 1
|
||||||
|
- _Fall: -1
|
||||||
|
- _FallOffset: -0.5
|
||||||
|
- _FallRandomness: 0.5
|
||||||
|
- _FlattenNormal: 2
|
||||||
|
- _FlipU: 0
|
||||||
|
- _FlipV: 1
|
||||||
|
- _FlipbookX: 1
|
||||||
|
- _FlipbookY: 1
|
||||||
|
- _GlossMapScale: 1
|
||||||
|
- _Glossiness: 0.5
|
||||||
|
- _GlossyReflections: 1
|
||||||
|
- _LightStr: 0.85
|
||||||
|
- _LightingStr: 3.31
|
||||||
|
- _MaskStr: 0.9
|
||||||
|
- _Metallic: 0
|
||||||
|
- _Mode: 0
|
||||||
|
- _NoiseAlphaStr: 0.55
|
||||||
|
- _NoiseColorStr: 0.01
|
||||||
|
- _NormalStr: 2.32
|
||||||
|
- _OcclusionStrength: 1
|
||||||
|
- _Parallax: 0.02
|
||||||
|
- _ParticleToggle: 1
|
||||||
|
- _ProcMask: 0.2
|
||||||
|
- _Randomize: 1
|
||||||
|
- _ReflectionSat: 0.5
|
||||||
|
- _Rows: 1
|
||||||
|
- _SmoothnessTextureChannel: 0
|
||||||
|
- _SpecularHighlights: 1
|
||||||
|
- _SrcBlend: 1
|
||||||
|
- _UVSec: 0
|
||||||
|
- _WarpStr: 0.25
|
||||||
|
- _ZWrite: 1
|
||||||
|
- __NormalStr: 1
|
||||||
|
m_Colors:
|
||||||
|
- _BaseColor: {r: 1, g: 1, b: 1, a: 1}
|
||||||
|
- _BloodSpecHighlightColor: {r: 1, g: 1, b: 1, a: 0}
|
||||||
|
- _ChannelMask: {r: 0, g: 1, b: 0, a: 0}
|
||||||
|
- _ChannelMask2: {r: 0.3, g: 0.5, b: 0.2, a: 0}
|
||||||
|
- _Color: {r: 1, g: 1, b: 1, a: 1}
|
||||||
|
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
|
||||||
|
- _HighlightColor: {r: 1, g: 1, b: 1, a: 1}
|
||||||
|
- _SpecularColor: {r: 0.78676474, g: 0.78676474, b: 0.78676474, a: 0.8}
|
@ -0,0 +1,9 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 7a5744e5a26b7b3469d5b0d8fc6bf385
|
||||||
|
timeCreated: 1507077530
|
||||||
|
licenseType: Store
|
||||||
|
NativeFormatImporter:
|
||||||
|
mainObjectFileID: 2100000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
165
Assets/FXVille_BloodPack/Materials/M_Blood_Arc_02.mat
Normal file
165
Assets/FXVille_BloodPack/Materials/M_Blood_Arc_02.mat
Normal file
@ -0,0 +1,165 @@
|
|||||||
|
%YAML 1.1
|
||||||
|
%TAG !u! tag:unity3d.com,2011:
|
||||||
|
--- !u!21 &2100000
|
||||||
|
Material:
|
||||||
|
serializedVersion: 6
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_PrefabParentObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 0}
|
||||||
|
m_Name: M_Blood_Arc_02
|
||||||
|
m_Shader: {fileID: 4800000, guid: 28eccfbe919a6b945bd87550768e9dcf, type: 3}
|
||||||
|
m_ShaderKeywords: SPECULAR_REFLECTION_ON
|
||||||
|
m_LightmapFlags: 4
|
||||||
|
m_EnableInstancingVariants: 0
|
||||||
|
m_DoubleSidedGI: 0
|
||||||
|
m_CustomRenderQueue: -1
|
||||||
|
stringTagMap: {}
|
||||||
|
disabledShaderPasses: []
|
||||||
|
m_SavedProperties:
|
||||||
|
serializedVersion: 3
|
||||||
|
m_TexEnvs:
|
||||||
|
- NoiseTex:
|
||||||
|
m_Texture: {fileID: 0}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _BackTex:
|
||||||
|
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}
|
||||||
|
- _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}
|
||||||
|
- _DownTex:
|
||||||
|
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}
|
||||||
|
- _FrontTex:
|
||||||
|
m_Texture: {fileID: 0}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _LeftTex:
|
||||||
|
m_Texture: {fileID: 0}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _MainTex:
|
||||||
|
m_Texture: {fileID: 2800000, guid: 5d420af2ab78c6a46b88908c47d8e63c, type: 3}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _Mask:
|
||||||
|
m_Texture: {fileID: 2800000, guid: 472c208cb1bb4f248820a92b475b0e70, 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}
|
||||||
|
- _Noise:
|
||||||
|
m_Texture: {fileID: 2800000, guid: 11868e4144e4ed541a6ae3cd71db9121, type: 3}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _NoiseTex:
|
||||||
|
m_Texture: {fileID: 2800000, guid: 5f64bc4cb40b8f6448782810351fe988, type: 3}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0.08}
|
||||||
|
- _Normal:
|
||||||
|
m_Texture: {fileID: 2800000, guid: 3ffe60a1be7ea6845b59a52abcb50829, type: 3}
|
||||||
|
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}
|
||||||
|
- _ReflectionTex:
|
||||||
|
m_Texture: {fileID: 2800000, guid: 2d0d6c2f82b84c545b7ab2ec21d914e6, type: 3}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0.11, y: 0.09}
|
||||||
|
- _RightTex:
|
||||||
|
m_Texture: {fileID: 0}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _UpTex:
|
||||||
|
m_Texture: {fileID: 0}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _Warp:
|
||||||
|
m_Texture: {fileID: 2800000, guid: 676dc61850f55cb43b386278a31f41fb, type: 3}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _WarpTex:
|
||||||
|
m_Texture: {fileID: 2800000, guid: 9b0f874b7eab4584a8adfe210118664e, type: 3}
|
||||||
|
m_Scale: {x: 0.7, y: 0.5}
|
||||||
|
m_Offset: {x: -0.07, y: 0.03}
|
||||||
|
m_Floats:
|
||||||
|
- _AlphaClipMin: 1.53
|
||||||
|
- _AlphaClipSoft: 0.37
|
||||||
|
- _AlphaMin: 0.1
|
||||||
|
- _AlphaSoft: 0.022
|
||||||
|
- _BumpScale: 1
|
||||||
|
- _Columns: 1
|
||||||
|
- _Cutoff: 0.5
|
||||||
|
- _DetailNormalMapScale: 1
|
||||||
|
- _DstBlend: 0
|
||||||
|
- _EdgeDarken: 1
|
||||||
|
- _Fall: -1
|
||||||
|
- _FallOffset: -0.5
|
||||||
|
- _FallRandomness: 0.5
|
||||||
|
- _FlattenNormal: 2
|
||||||
|
- _FlipU: 0
|
||||||
|
- _FlipV: 1
|
||||||
|
- _FlipbookX: 1
|
||||||
|
- _FlipbookY: 1
|
||||||
|
- _GlossMapScale: 1
|
||||||
|
- _Glossiness: 0.5
|
||||||
|
- _GlossyReflections: 1
|
||||||
|
- _LightStr: 0.85
|
||||||
|
- _LightingStr: 3.31
|
||||||
|
- _MaskStr: 0.9
|
||||||
|
- _Metallic: 0
|
||||||
|
- _Mode: 0
|
||||||
|
- _NoiseAlphaStr: 0.55
|
||||||
|
- _NoiseColorStr: 0.01
|
||||||
|
- _NormalStr: 2.32
|
||||||
|
- _OcclusionStrength: 1
|
||||||
|
- _Parallax: 0.02
|
||||||
|
- _ParticleToggle: 1
|
||||||
|
- _ProcMask: 0.2
|
||||||
|
- _Randomize: 1
|
||||||
|
- _ReflectionSat: 0.5
|
||||||
|
- _Rows: 1
|
||||||
|
- _SmoothnessTextureChannel: 0
|
||||||
|
- _SpecularHighlights: 1
|
||||||
|
- _SrcBlend: 1
|
||||||
|
- _UVSec: 0
|
||||||
|
- _WarpStr: 0.25
|
||||||
|
- _ZWrite: 1
|
||||||
|
- __NormalStr: 1
|
||||||
|
m_Colors:
|
||||||
|
- _BaseColor: {r: 1, g: 1, b: 1, a: 1}
|
||||||
|
- _BloodSpecHighlightColor: {r: 1, g: 1, b: 1, a: 0}
|
||||||
|
- _ChannelMask: {r: 0, g: 1, b: 0, a: 0}
|
||||||
|
- _ChannelMask2: {r: 0.3, g: 0.5, b: 0.2, a: 0}
|
||||||
|
- _Color: {r: 1, g: 1, b: 1, a: 1}
|
||||||
|
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
|
||||||
|
- _HighlightColor: {r: 1, g: 1, b: 1, a: 1}
|
||||||
|
- _SpecularColor: {r: 1.5, g: 1.5, b: 1.5, a: 0.8}
|
@ -0,0 +1,9 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 41d0cf4d05902224e8234ca4270488a3
|
||||||
|
timeCreated: 1507077530
|
||||||
|
licenseType: Store
|
||||||
|
NativeFormatImporter:
|
||||||
|
mainObjectFileID: 2100000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
165
Assets/FXVille_BloodPack/Materials/M_Blood_Burst_01.mat
Normal file
165
Assets/FXVille_BloodPack/Materials/M_Blood_Burst_01.mat
Normal file
@ -0,0 +1,165 @@
|
|||||||
|
%YAML 1.1
|
||||||
|
%TAG !u! tag:unity3d.com,2011:
|
||||||
|
--- !u!21 &2100000
|
||||||
|
Material:
|
||||||
|
serializedVersion: 6
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_PrefabParentObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 0}
|
||||||
|
m_Name: M_Blood_Burst_01
|
||||||
|
m_Shader: {fileID: 4800000, guid: 28eccfbe919a6b945bd87550768e9dcf, type: 3}
|
||||||
|
m_ShaderKeywords: SPECULAR_REFLECTION_ON
|
||||||
|
m_LightmapFlags: 4
|
||||||
|
m_EnableInstancingVariants: 0
|
||||||
|
m_DoubleSidedGI: 0
|
||||||
|
m_CustomRenderQueue: -1
|
||||||
|
stringTagMap: {}
|
||||||
|
disabledShaderPasses: []
|
||||||
|
m_SavedProperties:
|
||||||
|
serializedVersion: 3
|
||||||
|
m_TexEnvs:
|
||||||
|
- NoiseTex:
|
||||||
|
m_Texture: {fileID: 0}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _BackTex:
|
||||||
|
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}
|
||||||
|
- _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}
|
||||||
|
- _DownTex:
|
||||||
|
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}
|
||||||
|
- _FrontTex:
|
||||||
|
m_Texture: {fileID: 0}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _LeftTex:
|
||||||
|
m_Texture: {fileID: 0}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _MainTex:
|
||||||
|
m_Texture: {fileID: 2800000, guid: a426bfb9d7f32e141bc4520a369846bc, type: 3}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _Mask:
|
||||||
|
m_Texture: {fileID: 2800000, guid: 472c208cb1bb4f248820a92b475b0e70, 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}
|
||||||
|
- _Noise:
|
||||||
|
m_Texture: {fileID: 2800000, guid: 11868e4144e4ed541a6ae3cd71db9121, type: 3}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _NoiseTex:
|
||||||
|
m_Texture: {fileID: 2800000, guid: 3cf82dce4f35e324294123967e2087e1, type: 3}
|
||||||
|
m_Scale: {x: 2.5, y: 2.5}
|
||||||
|
m_Offset: {x: 0.01, y: 0.02}
|
||||||
|
- _Normal:
|
||||||
|
m_Texture: {fileID: 2800000, guid: ce7ba80f0cfc71d47963e5058a5fbcd0, type: 3}
|
||||||
|
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}
|
||||||
|
- _ReflectionTex:
|
||||||
|
m_Texture: {fileID: 2800000, guid: 2d0d6c2f82b84c545b7ab2ec21d914e6, type: 3}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0.11, y: 0.09}
|
||||||
|
- _RightTex:
|
||||||
|
m_Texture: {fileID: 0}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _UpTex:
|
||||||
|
m_Texture: {fileID: 0}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _Warp:
|
||||||
|
m_Texture: {fileID: 2800000, guid: 676dc61850f55cb43b386278a31f41fb, type: 3}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _WarpTex:
|
||||||
|
m_Texture: {fileID: 2800000, guid: 9b0f874b7eab4584a8adfe210118664e, type: 3}
|
||||||
|
m_Scale: {x: 0.7, y: 0.7}
|
||||||
|
m_Offset: {x: -0.02, y: 0.03}
|
||||||
|
m_Floats:
|
||||||
|
- _AlphaClipMin: 1.53
|
||||||
|
- _AlphaClipSoft: 0.37
|
||||||
|
- _AlphaMin: 0.1
|
||||||
|
- _AlphaSoft: 0.022
|
||||||
|
- _BumpScale: 1
|
||||||
|
- _Columns: 1
|
||||||
|
- _Cutoff: 0.5
|
||||||
|
- _DetailNormalMapScale: 1
|
||||||
|
- _DstBlend: 0
|
||||||
|
- _EdgeDarken: 1
|
||||||
|
- _Fall: 0
|
||||||
|
- _FallOffset: 0
|
||||||
|
- _FallRandomness: 0
|
||||||
|
- _FlattenNormal: 1
|
||||||
|
- _FlipU: 1
|
||||||
|
- _FlipV: 1
|
||||||
|
- _FlipbookX: 1
|
||||||
|
- _FlipbookY: 1
|
||||||
|
- _GlossMapScale: 1
|
||||||
|
- _Glossiness: 0.5
|
||||||
|
- _GlossyReflections: 1
|
||||||
|
- _LightStr: 0.85
|
||||||
|
- _LightingStr: 3.31
|
||||||
|
- _MaskStr: 1
|
||||||
|
- _Metallic: 0
|
||||||
|
- _Mode: 0
|
||||||
|
- _NoiseAlphaStr: 0.8
|
||||||
|
- _NoiseColorStr: 0.01
|
||||||
|
- _NormalStr: 2.32
|
||||||
|
- _OcclusionStrength: 1
|
||||||
|
- _Parallax: 0.02
|
||||||
|
- _ParticleToggle: 1
|
||||||
|
- _ProcMask: 1
|
||||||
|
- _Randomize: 0.9
|
||||||
|
- _ReflectionSat: 0.5
|
||||||
|
- _Rows: 1
|
||||||
|
- _SmoothnessTextureChannel: 0
|
||||||
|
- _SpecularHighlights: 1
|
||||||
|
- _SrcBlend: 1
|
||||||
|
- _UVSec: 0
|
||||||
|
- _WarpStr: 0.05
|
||||||
|
- _ZWrite: 1
|
||||||
|
- __NormalStr: 1
|
||||||
|
m_Colors:
|
||||||
|
- _BaseColor: {r: 1, g: 1, b: 1, a: 1}
|
||||||
|
- _BloodSpecHighlightColor: {r: 1, g: 1, b: 1, a: 0}
|
||||||
|
- _ChannelMask: {r: 1, g: 0, b: 0, a: 0}
|
||||||
|
- _ChannelMask2: {r: 1, g: 0, b: 0, a: 0}
|
||||||
|
- _Color: {r: 1, g: 1, b: 1, a: 1}
|
||||||
|
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
|
||||||
|
- _HighlightColor: {r: 1, g: 1, b: 1, a: 1}
|
||||||
|
- _SpecularColor: {r: 1.5, g: 1.5, b: 1.5, a: 0.8}
|
@ -0,0 +1,9 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: b5b84b4a03a66ea4b88aef3f82164b0a
|
||||||
|
timeCreated: 1507077530
|
||||||
|
licenseType: Store
|
||||||
|
NativeFormatImporter:
|
||||||
|
mainObjectFileID: 2100000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
165
Assets/FXVille_BloodPack/Materials/M_Blood_Burst_02.mat
Normal file
165
Assets/FXVille_BloodPack/Materials/M_Blood_Burst_02.mat
Normal file
@ -0,0 +1,165 @@
|
|||||||
|
%YAML 1.1
|
||||||
|
%TAG !u! tag:unity3d.com,2011:
|
||||||
|
--- !u!21 &2100000
|
||||||
|
Material:
|
||||||
|
serializedVersion: 6
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_PrefabParentObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 0}
|
||||||
|
m_Name: M_Blood_Burst_02
|
||||||
|
m_Shader: {fileID: 4800000, guid: 28eccfbe919a6b945bd87550768e9dcf, type: 3}
|
||||||
|
m_ShaderKeywords: SPECULAR_REFLECTION_ON
|
||||||
|
m_LightmapFlags: 4
|
||||||
|
m_EnableInstancingVariants: 0
|
||||||
|
m_DoubleSidedGI: 0
|
||||||
|
m_CustomRenderQueue: -1
|
||||||
|
stringTagMap: {}
|
||||||
|
disabledShaderPasses: []
|
||||||
|
m_SavedProperties:
|
||||||
|
serializedVersion: 3
|
||||||
|
m_TexEnvs:
|
||||||
|
- NoiseTex:
|
||||||
|
m_Texture: {fileID: 0}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _BackTex:
|
||||||
|
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}
|
||||||
|
- _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}
|
||||||
|
- _DownTex:
|
||||||
|
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}
|
||||||
|
- _FrontTex:
|
||||||
|
m_Texture: {fileID: 0}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _LeftTex:
|
||||||
|
m_Texture: {fileID: 0}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _MainTex:
|
||||||
|
m_Texture: {fileID: 2800000, guid: a426bfb9d7f32e141bc4520a369846bc, type: 3}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _Mask:
|
||||||
|
m_Texture: {fileID: 2800000, guid: 472c208cb1bb4f248820a92b475b0e70, 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}
|
||||||
|
- _Noise:
|
||||||
|
m_Texture: {fileID: 2800000, guid: 11868e4144e4ed541a6ae3cd71db9121, type: 3}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _NoiseTex:
|
||||||
|
m_Texture: {fileID: 2800000, guid: 5f64bc4cb40b8f6448782810351fe988, type: 3}
|
||||||
|
m_Scale: {x: 0.3, y: 0.3}
|
||||||
|
m_Offset: {x: 0.01, y: 0.02}
|
||||||
|
- _Normal:
|
||||||
|
m_Texture: {fileID: 2800000, guid: 3ffe60a1be7ea6845b59a52abcb50829, type: 3}
|
||||||
|
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}
|
||||||
|
- _ReflectionTex:
|
||||||
|
m_Texture: {fileID: 2800000, guid: 2d0d6c2f82b84c545b7ab2ec21d914e6, type: 3}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0.11, y: 0.09}
|
||||||
|
- _RightTex:
|
||||||
|
m_Texture: {fileID: 0}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _UpTex:
|
||||||
|
m_Texture: {fileID: 0}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _Warp:
|
||||||
|
m_Texture: {fileID: 2800000, guid: 676dc61850f55cb43b386278a31f41fb, type: 3}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _WarpTex:
|
||||||
|
m_Texture: {fileID: 2800000, guid: 9b0f874b7eab4584a8adfe210118664e, type: 3}
|
||||||
|
m_Scale: {x: 0.7, y: 0.7}
|
||||||
|
m_Offset: {x: -0.02, y: 0.03}
|
||||||
|
m_Floats:
|
||||||
|
- _AlphaClipMin: 1.53
|
||||||
|
- _AlphaClipSoft: 0.37
|
||||||
|
- _AlphaMin: 0.056
|
||||||
|
- _AlphaSoft: 0.022
|
||||||
|
- _BumpScale: 1
|
||||||
|
- _Columns: 1
|
||||||
|
- _Cutoff: 0.5
|
||||||
|
- _DetailNormalMapScale: 1
|
||||||
|
- _DstBlend: 0
|
||||||
|
- _EdgeDarken: 1
|
||||||
|
- _Fall: 0
|
||||||
|
- _FallOffset: 0
|
||||||
|
- _FallRandomness: 0
|
||||||
|
- _FlattenNormal: 1.5
|
||||||
|
- _FlipU: 1
|
||||||
|
- _FlipV: 1
|
||||||
|
- _FlipbookX: 1
|
||||||
|
- _FlipbookY: 1
|
||||||
|
- _GlossMapScale: 1
|
||||||
|
- _Glossiness: 0.5
|
||||||
|
- _GlossyReflections: 1
|
||||||
|
- _LightStr: 0.85
|
||||||
|
- _LightingStr: 3.31
|
||||||
|
- _MaskStr: 1
|
||||||
|
- _Metallic: 0
|
||||||
|
- _Mode: 0
|
||||||
|
- _NoiseAlphaStr: 1
|
||||||
|
- _NoiseColorStr: 0.01
|
||||||
|
- _NormalStr: 2.32
|
||||||
|
- _OcclusionStrength: 1
|
||||||
|
- _Parallax: 0.02
|
||||||
|
- _ParticleToggle: 1
|
||||||
|
- _ProcMask: 1
|
||||||
|
- _Randomize: 1
|
||||||
|
- _ReflectionSat: 0.5
|
||||||
|
- _Rows: 1
|
||||||
|
- _SmoothnessTextureChannel: 0
|
||||||
|
- _SpecularHighlights: 1
|
||||||
|
- _SrcBlend: 1
|
||||||
|
- _UVSec: 0
|
||||||
|
- _WarpStr: 0.05
|
||||||
|
- _ZWrite: 1
|
||||||
|
- __NormalStr: 1
|
||||||
|
m_Colors:
|
||||||
|
- _BaseColor: {r: 1, g: 1, b: 1, a: 1}
|
||||||
|
- _BloodSpecHighlightColor: {r: 1, g: 1, b: 1, a: 0}
|
||||||
|
- _ChannelMask: {r: 0, g: 1, b: 1, a: 0}
|
||||||
|
- _ChannelMask2: {r: 0.5, g: 0.5, b: 0, a: 0}
|
||||||
|
- _Color: {r: 1, g: 1, b: 1, a: 1}
|
||||||
|
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
|
||||||
|
- _HighlightColor: {r: 1, g: 1, b: 1, a: 1}
|
||||||
|
- _SpecularColor: {r: 1.5, g: 1.5, b: 1.5, a: 0.8}
|
@ -0,0 +1,9 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: ce118055c23f49946871a685127446e5
|
||||||
|
timeCreated: 1507077530
|
||||||
|
licenseType: Store
|
||||||
|
NativeFormatImporter:
|
||||||
|
mainObjectFileID: 2100000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
165
Assets/FXVille_BloodPack/Materials/M_Blood_Drop_01.mat
Normal file
165
Assets/FXVille_BloodPack/Materials/M_Blood_Drop_01.mat
Normal file
@ -0,0 +1,165 @@
|
|||||||
|
%YAML 1.1
|
||||||
|
%TAG !u! tag:unity3d.com,2011:
|
||||||
|
--- !u!21 &2100000
|
||||||
|
Material:
|
||||||
|
serializedVersion: 6
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_PrefabParentObject: {fileID: 0}
|
||||||
|
m_PrefabInternal: {fileID: 0}
|
||||||
|
m_Name: M_Blood_Drop_01
|
||||||
|
m_Shader: {fileID: 4800000, guid: 28eccfbe919a6b945bd87550768e9dcf, type: 3}
|
||||||
|
m_ShaderKeywords: SPECULAR_REFLECTION_ON
|
||||||
|
m_LightmapFlags: 4
|
||||||
|
m_EnableInstancingVariants: 0
|
||||||
|
m_DoubleSidedGI: 0
|
||||||
|
m_CustomRenderQueue: -1
|
||||||
|
stringTagMap: {}
|
||||||
|
disabledShaderPasses: []
|
||||||
|
m_SavedProperties:
|
||||||
|
serializedVersion: 3
|
||||||
|
m_TexEnvs:
|
||||||
|
- NoiseTex:
|
||||||
|
m_Texture: {fileID: 0}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _BackTex:
|
||||||
|
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}
|
||||||
|
- _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}
|
||||||
|
- _DownTex:
|
||||||
|
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}
|
||||||
|
- _FrontTex:
|
||||||
|
m_Texture: {fileID: 0}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _LeftTex:
|
||||||
|
m_Texture: {fileID: 0}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _MainTex:
|
||||||
|
m_Texture: {fileID: 10300, guid: 0000000000000000f000000000000000, type: 0}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _Mask:
|
||||||
|
m_Texture: {fileID: 2800000, guid: 472c208cb1bb4f248820a92b475b0e70, 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}
|
||||||
|
- _Noise:
|
||||||
|
m_Texture: {fileID: 2800000, guid: 11868e4144e4ed541a6ae3cd71db9121, type: 3}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _NoiseTex:
|
||||||
|
m_Texture: {fileID: 2800000, guid: 676dc61850f55cb43b386278a31f41fb, type: 3}
|
||||||
|
m_Scale: {x: 0.5, y: 0.5}
|
||||||
|
m_Offset: {x: -0.2, y: 0.08}
|
||||||
|
- _Normal:
|
||||||
|
m_Texture: {fileID: 2800000, guid: 3337b8a37d0a07441bc0291dee0c2142, type: 3}
|
||||||
|
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}
|
||||||
|
- _ReflectionTex:
|
||||||
|
m_Texture: {fileID: 2800000, guid: 2d0d6c2f82b84c545b7ab2ec21d914e6, type: 3}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0.11, y: 0.09}
|
||||||
|
- _RightTex:
|
||||||
|
m_Texture: {fileID: 0}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _UpTex:
|
||||||
|
m_Texture: {fileID: 0}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _Warp:
|
||||||
|
m_Texture: {fileID: 2800000, guid: 676dc61850f55cb43b386278a31f41fb, type: 3}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _WarpTex:
|
||||||
|
m_Texture: {fileID: 2800000, guid: 676dc61850f55cb43b386278a31f41fb, type: 3}
|
||||||
|
m_Scale: {x: 0.5, y: 0.5}
|
||||||
|
m_Offset: {x: -0.13, y: 0.23}
|
||||||
|
m_Floats:
|
||||||
|
- _AlphaClipMin: 1.53
|
||||||
|
- _AlphaClipSoft: 0.37
|
||||||
|
- _AlphaMin: 0.1
|
||||||
|
- _AlphaSoft: 0.022
|
||||||
|
- _BumpScale: 1
|
||||||
|
- _Columns: 1
|
||||||
|
- _Cutoff: 0.5
|
||||||
|
- _DetailNormalMapScale: 1
|
||||||
|
- _DstBlend: 0
|
||||||
|
- _EdgeDarken: 1
|
||||||
|
- _Fall: 0
|
||||||
|
- _FallOffset: -0.35
|
||||||
|
- _FallRandomness: 0.25
|
||||||
|
- _FlattenNormal: 0.5
|
||||||
|
- _FlipU: 1
|
||||||
|
- _FlipV: 1
|
||||||
|
- _FlipbookX: 1
|
||||||
|
- _FlipbookY: 1
|
||||||
|
- _GlossMapScale: 1
|
||||||
|
- _Glossiness: 0.5
|
||||||
|
- _GlossyReflections: 1
|
||||||
|
- _LightStr: 0.85
|
||||||
|
- _LightingStr: 3.31
|
||||||
|
- _MaskStr: 0.5
|
||||||
|
- _Metallic: 0
|
||||||
|
- _Mode: 0
|
||||||
|
- _NoiseAlphaStr: 1
|
||||||
|
- _NoiseColorStr: 0.01
|
||||||
|
- _NormalStr: 2.32
|
||||||
|
- _OcclusionStrength: 1
|
||||||
|
- _Parallax: 0.02
|
||||||
|
- _ParticleToggle: 1
|
||||||
|
- _ProcMask: 1
|
||||||
|
- _Randomize: 1
|
||||||
|
- _ReflectionSat: 0.5
|
||||||
|
- _Rows: 1
|
||||||
|
- _SmoothnessTextureChannel: 0
|
||||||
|
- _SpecularHighlights: 1
|
||||||
|
- _SrcBlend: 1
|
||||||
|
- _UVSec: 0
|
||||||
|
- _WarpStr: 0.25
|
||||||
|
- _ZWrite: 1
|
||||||
|
- __NormalStr: 1
|
||||||
|
m_Colors:
|
||||||
|
- _BaseColor: {r: 1, g: 1, b: 1, a: 1}
|
||||||
|
- _BloodSpecHighlightColor: {r: 1, g: 1, b: 1, a: 0}
|
||||||
|
- _ChannelMask: {r: 0.5, g: 0.5, b: 0, a: 0}
|
||||||
|
- _ChannelMask2: {r: 0, g: 1, b: 0, a: 0}
|
||||||
|
- _Color: {r: 1, g: 1, b: 1, a: 1}
|
||||||
|
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
|
||||||
|
- _HighlightColor: {r: 1, g: 1, b: 1, a: 1}
|
||||||
|
- _SpecularColor: {r: 1.7, g: 1.7, b: 1.7, a: 0.8}
|
@ -0,0 +1,9 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 1ed40ed0b07337b42aa2d81d94bea406
|
||||||
|
timeCreated: 1507077530
|
||||||
|
licenseType: Store
|
||||||
|
NativeFormatImporter:
|
||||||
|
mainObjectFileID: 2100000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user