diff --git a/Assets/01_Scenes/GameScene.unity b/Assets/01_Scenes/GameScene.unity index 76a982c..0143d43 100644 --- a/Assets/01_Scenes/GameScene.unity +++ b/Assets/01_Scenes/GameScene.unity @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b73c8276ee1e8dba6ed465dd554659e76080c10593a42fd2394b287f00a87595 -size 505540 +oid sha256:eaaa3eafbe3c3df6dc1f5c4c21365ae8a77e318de88f13bcf47dae7b278ea2a7 +size 505286 diff --git a/Assets/02_Scripts/Player/FSM/PlayerState.cs b/Assets/02_Scripts/Player/FSM/PlayerState.cs index aff4963..0849d01 100644 --- a/Assets/02_Scripts/Player/FSM/PlayerState.cs +++ b/Assets/02_Scripts/Player/FSM/PlayerState.cs @@ -1 +1 @@ -public enum PlayerState { Idle, Walk, Run, Dodge, Jump, Fall, Attack, Charge, Hit, Dead, Inertia, Action, Trans, None } \ No newline at end of file +public enum PlayerState { Idle, Walk, Run, Dodge, Jump, Fall, Attack, Charge, Cast, Channel, Hit, Dead, Inertia, Action, Trans, None } \ No newline at end of file diff --git a/Assets/02_Scripts/Player/FSM/PlayerStateMachine.cs b/Assets/02_Scripts/Player/FSM/PlayerStateMachine.cs index f4e7f12..085d913 100644 --- a/Assets/02_Scripts/Player/FSM/PlayerStateMachine.cs +++ b/Assets/02_Scripts/Player/FSM/PlayerStateMachine.cs @@ -57,7 +57,7 @@ public void SetMaxJumpCount(int maxCount) #region 상태확인용 헬퍼함수들 //지상 이동이 가능한가? - public bool CanMove() => IsGrounded && !IsMoveCut && (CurrentState == PlayerState.Idle || CurrentState == PlayerState.Walk || CurrentState == PlayerState.Run) && (CurrentState != PlayerState.Inertia && CurrentState != PlayerState.Action && CurrentState != PlayerState.Trans); + public bool CanMove() => IsGrounded && !IsMoveCut && (CurrentState == PlayerState.Idle || CurrentState == PlayerState.Walk || CurrentState == PlayerState.Run) && (CurrentState != PlayerState.Inertia && CurrentState != PlayerState.Action && CurrentState != PlayerState.Trans && CurrentState != PlayerState.Cast && CurrentState != PlayerState.Channel); //점프가 가능한 상태인가? public bool CanJump() { @@ -81,6 +81,7 @@ public bool CanDodge() if (CurrentState == PlayerState.Inertia) return false; if (CurrentState == PlayerState.Action) return false; if (CurrentState == PlayerState.Trans) return false; + if (CurrentState == PlayerState.Cast || CurrentState == PlayerState.Channel) return false; // 스태미나 시스템이 있다면 체크 // if (CurrentStamina < DodgeCost) return false; @@ -92,8 +93,9 @@ public bool CanDodge() //공격이 가능한 상태인가? public bool CanAttack() { - //이미 공격 중이거나 차징 중이면 공격 불가 (연속기가 있다면 바뀔수 있음) - if (CurrentState == PlayerState.Attack || CurrentState == PlayerState.Charge) + //이미 공격 중이거나 차징/캐스팅/채널링 중이면 공격 불가 + if (CurrentState == PlayerState.Attack || CurrentState == PlayerState.Charge + || CurrentState == PlayerState.Cast || CurrentState == PlayerState.Channel) return false; //피격(Hit) 중이거나 죽었다면(Dead) 공격 불가 diff --git a/Assets/02_Scripts/Player/Status/PlayerHealth.cs b/Assets/02_Scripts/Player/Status/PlayerHealth.cs index 6989fb1..3b165e0 100644 --- a/Assets/02_Scripts/Player/Status/PlayerHealth.cs +++ b/Assets/02_Scripts/Player/Status/PlayerHealth.cs @@ -1,7 +1,7 @@ using UnityEngine; using UnityEngine.UI; -public class PlayerHealth : Health +public class PlayerHealth : Health, IDamageable { [SerializeField] PlayerStat _pstat; @@ -33,6 +33,13 @@ private void Update() public void TakeDamage(int damage) { - ChangeHP(currentHp - Mathf.Clamp(damage,0,currentHp)); + ChangeHP(currentHp - Mathf.Clamp(damage, 0, currentHp)); } + + public void TakeDamage(int damage, Transform source) + { + TakeDamage(damage); + } + + public Transform GetTransform() => transform; } diff --git a/Assets/02_Scripts/Skill/Data/DebuffData.cs b/Assets/02_Scripts/Skill/Data/DebuffData.cs new file mode 100644 index 0000000..421d448 --- /dev/null +++ b/Assets/02_Scripts/Skill/Data/DebuffData.cs @@ -0,0 +1,30 @@ +using UnityEngine; + +public enum DebuffType +{ + DamageOverTime, + Slow, + StatReduction, + Stun +} + +[CreateAssetMenu(menuName = "Skill/DebuffData")] +public class DebuffData : ScriptableObject +{ + [Header("기본 정보")] + public string DebuffName; + public Sprite Icon; + + [Header("디버프 설정")] + public DebuffType DebuffType; + public float Duration; + public float TickInterval; + public float Value; + + [Header("스택")] + public bool Stackable; + public int MaxStacks; + + [Header("이펙트")] + public GameObject EffectPrefab; +} diff --git a/Assets/02_Scripts/Skill/Data/DebuffData.cs.meta b/Assets/02_Scripts/Skill/Data/DebuffData.cs.meta new file mode 100644 index 0000000..7c8254a --- /dev/null +++ b/Assets/02_Scripts/Skill/Data/DebuffData.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 71747801caf54d74cafaf0cabbc6bed7 \ No newline at end of file diff --git a/Assets/02_Scripts/Skill/Data/SkillData.cs b/Assets/02_Scripts/Skill/Data/SkillData.cs index 4a33402..c6f684f 100644 --- a/Assets/02_Scripts/Skill/Data/SkillData.cs +++ b/Assets/02_Scripts/Skill/Data/SkillData.cs @@ -2,11 +2,39 @@ /* 사용법: -Project에서 Create → Skill/SkillData로 스킬 에셋 생성, 레벨별 수치 입력 -Create → Skill/WeaponSkillSet로 무기별 스킬 묶음 생성 -플레이어에 SkillManager + Effect 컴포넌트들 부착 -무기 변경 시 LoadWeaponSkills(skillSet) 호출 -입력 시 SkillInput(slotIndex, inputState) 호출 +1. Project에서 Create → Skill/SkillData로 스킬 에셋 생성, 레벨별 수치 입력 +2. Create → Skill/WeaponSkillSet로 무기별 스킬 묶음 생성 +3. Create → Skill/DebuffData로 디버프 에셋 생성 (필요시) +4. 플레이어에 SkillModule + 필요한 Effect 컴포넌트들 부착 + (DamageEffect, AreaEffect, ZoneEffect, BuffEffect, ProjectileEffect) +5. 디버프 받는 대상에 StatusEffectReceiver + IDamageable 구현 부착 +6. 무기 변경 시 LoadWeaponSkills(skillSet) 호출 +7. 입력 시 SkillInput(slotIndex, inputState) 호출 +8. Remote 스킬 범위 확인 시 AreaConfirmInput(inputState) 호출 + +ActivationType (발동 방식): + Instant — 즉시 발동 + Charge — 누르고 있으면 차징, 놓으면 발동 + Cast — 시전 시간 후 자동 발동 (피격/회피 시 취소) + Channel — 시전 동안 지속적으로 효과 반복 (피격/회피 시 취소) + +CastMethod (발동 위치): + Self — 자기 중심 발동 (키 입력 즉시 ActivationType 흐름 시작) + Remote — 원격 발동 (마우스로 위치 선택 → 확인 후 ActivationType 흐름 시작) + +TargetType (효과 방식): + Single → DamageEffect + Area → AreaEffect + Self → BuffEffect + Projectile → ProjectileEffect + Zone → ZoneEffect (설치형) + +조합 예시: + Instant + Self → 즉시 자기 주변 발동 + Instant + Remote → 위치 선택 후 즉시 발동 + Cast + Remote → 위치 선택 → 캐스팅 → 완료 시 해당 위치에 발동 + Channel + Remote → 위치 선택 → 해당 위치에서 채널링 + Charge + Remote → 위치 선택 → 차징 → 릴리스 시 해당 위치에 발동 */ [CreateAssetMenu(menuName = "Skill/SkillData")] @@ -20,6 +48,7 @@ public class SkillData : ScriptableObject [Header("스킬 분류")] public SkillType SkillType; public ActivationType ActivationType; + public CastMethod CastMethod; public TargetType TargetType; [Header("애니메이션")] @@ -28,9 +57,15 @@ public class SkillData : ScriptableObject [Header("이펙트")] public GameObject EffectPrefab; - [Header("범위 지정 (AreaSelect용)")] + [Header("범위 지정 (Remote용)")] public GameObject AreaIndicatorPrefab; + [Header("설치형 (Zone)")] + public GameObject ZonePrefab; + + [Header("디버프")] + public DebuffData[] AppliedDebuffs; + [Header("레벨별 수치")] public SkillLevelData[] Levels; @@ -50,8 +85,13 @@ public class SkillLevelData public float ManaCost; public float Duration; public float ChargeTimeMax; + public float CastTime; + public float ChannelDuration; + public float TickInterval; + public float TickDamage; } public enum SkillType { Active, Passive } -public enum ActivationType { Instant, Charge, AreaSelect } -public enum TargetType { Self, Single, Area, Projectile } +public enum ActivationType { Instant, Charge, Cast, Channel } +public enum CastMethod { Self, Remote } +public enum TargetType { Self, Single, Area, Projectile, Zone } diff --git a/Assets/02_Scripts/Skill/Effects/AreaEffect.cs b/Assets/02_Scripts/Skill/Effects/AreaEffect.cs index c2a40e6..11ca061 100644 --- a/Assets/02_Scripts/Skill/Effects/AreaEffect.cs +++ b/Assets/02_Scripts/Skill/Effects/AreaEffect.cs @@ -4,10 +4,19 @@ public class AreaEffect : MonoBehaviour, ISkillEffect { public void Execute(SkillInstance skill, Transform caster, float chargeRatio) { - SkillLevelData levelData = skill.CurrentLevelData; - float finalDamage = levelData.Damage * chargeRatio; + Vector3 center = caster.position + caster.forward * skill.CurrentLevelData.Range; + ApplyArea(skill, caster, center, chargeRatio); + } - Vector3 center = caster.position + caster.forward * levelData.Range; + public void ExecuteAtPosition(SkillInstance skill, Transform caster, Vector3 targetPos, float chargeRatio) + { + ApplyArea(skill, caster, targetPos, chargeRatio); + } + + private void ApplyArea(SkillInstance skill, Transform caster, Vector3 center, float chargeRatio) + { + SkillLevelData levelData = skill.CurrentLevelData; + int damage = Mathf.RoundToInt(levelData.Damage * chargeRatio); if (skill.Data.EffectPrefab != null) { @@ -19,25 +28,21 @@ public void Execute(SkillInstance skill, Transform caster, float chargeRatio) { if (hit.transform == caster) continue; - Debug.Log($"[범위] {hit.name}에게 {finalDamage} 데미지"); - } - } + IDamageable target = hit.GetComponent(); + if (target != null) + { + target.TakeDamage(damage, caster); - public void ExecuteAtPosition(SkillInstance skill, Transform caster, Vector3 targetPos) - { - SkillLevelData levelData = skill.CurrentLevelData; - - if (skill.Data.EffectPrefab != null) - { - Instantiate(skill.Data.EffectPrefab, targetPos, Quaternion.identity); - } - - Collider[] hits = Physics.OverlapSphere(targetPos, levelData.Range); - foreach (Collider hit in hits) - { - if (hit.transform == caster) continue; - - Debug.Log($"[범위지정] {hit.name}에게 {levelData.Damage} 데미지"); + if (skill.Data.AppliedDebuffs != null) + { + StatusEffectReceiver receiver = hit.GetComponent(); + if (receiver != null) + { + foreach (var debuff in skill.Data.AppliedDebuffs) + receiver.ApplyDebuff(debuff); + } + } + } } } } diff --git a/Assets/02_Scripts/Skill/Effects/BuffEffect.cs b/Assets/02_Scripts/Skill/Effects/BuffEffect.cs index 411f145..25ff3bc 100644 --- a/Assets/02_Scripts/Skill/Effects/BuffEffect.cs +++ b/Assets/02_Scripts/Skill/Effects/BuffEffect.cs @@ -11,4 +11,10 @@ public void Execute(SkillInstance skill, Transform caster, float chargeRatio) Debug.Log($"버프 적용: {skill.Data.SkillName}, 지속시간 {levelData.Duration}초"); } + + public void ExecuteAtPosition(SkillInstance skill, Transform caster, Vector3 targetPos, float chargeRatio) + { + // 버프는 항상 시전자 대상이므로 Execute와 동일 + Execute(skill, caster, chargeRatio); + } } diff --git a/Assets/02_Scripts/Skill/Effects/DamageEffect.cs b/Assets/02_Scripts/Skill/Effects/DamageEffect.cs index 980b833..c1a013a 100644 --- a/Assets/02_Scripts/Skill/Effects/DamageEffect.cs +++ b/Assets/02_Scripts/Skill/Effects/DamageEffect.cs @@ -4,17 +4,40 @@ public class DamageEffect : MonoBehaviour, ISkillEffect { public void Execute(SkillInstance skill, Transform caster, float chargeRatio) { - SkillLevelData levelData = skill.CurrentLevelData; - float finalDamage = levelData.Damage * chargeRatio; - float range = levelData.Range; + Vector3 center = caster.position + caster.forward * skill.CurrentLevelData.Range * 0.5f; + ApplyDamage(skill, caster, center, chargeRatio); + } - Collider[] hits = Physics.OverlapSphere(caster.position + caster.forward * range * 0.5f, range); + public void ExecuteAtPosition(SkillInstance skill, Transform caster, Vector3 targetPos, float chargeRatio) + { + ApplyDamage(skill, caster, targetPos, chargeRatio); + } + + private void ApplyDamage(SkillInstance skill, Transform caster, Vector3 center, float chargeRatio) + { + SkillLevelData levelData = skill.CurrentLevelData; + int damage = Mathf.RoundToInt(levelData.Damage * chargeRatio); + + Collider[] hits = Physics.OverlapSphere(center, levelData.Range); foreach (Collider hit in hits) { if (hit.transform == caster) continue; - // IDamageable 등 인터페이스가 있으면 여기서 적용 - Debug.Log($"{hit.name}에게 {finalDamage} 데미지"); + IDamageable target = hit.GetComponent(); + if (target != null) + { + target.TakeDamage(damage, caster); + + if (skill.Data.AppliedDebuffs != null) + { + StatusEffectReceiver receiver = hit.GetComponent(); + if (receiver != null) + { + foreach (var debuff in skill.Data.AppliedDebuffs) + receiver.ApplyDebuff(debuff); + } + } + } } } } diff --git a/Assets/02_Scripts/Skill/Effects/ISkillEffect.cs b/Assets/02_Scripts/Skill/Effects/ISkillEffect.cs index 68cfb26..1736040 100644 --- a/Assets/02_Scripts/Skill/Effects/ISkillEffect.cs +++ b/Assets/02_Scripts/Skill/Effects/ISkillEffect.cs @@ -3,4 +3,5 @@ public interface ISkillEffect { void Execute(SkillInstance skill, Transform caster, float chargeRatio); + void ExecuteAtPosition(SkillInstance skill, Transform caster, Vector3 targetPos, float chargeRatio); } diff --git a/Assets/02_Scripts/Skill/Effects/ProjectileEffect.cs b/Assets/02_Scripts/Skill/Effects/ProjectileEffect.cs index 3da728e..d3941cd 100644 --- a/Assets/02_Scripts/Skill/Effects/ProjectileEffect.cs +++ b/Assets/02_Scripts/Skill/Effects/ProjectileEffect.cs @@ -12,4 +12,17 @@ public void Execute(SkillInstance skill, Transform caster, float chargeRatio) // 투사체에 데미지 정보 전달 // proj.GetComponent()?.Init(skill.CurrentLevelData.Damage * chargeRatio); } + + public void ExecuteAtPosition(SkillInstance skill, Transform caster, Vector3 targetPos, float chargeRatio) + { + if (skill.Data.EffectPrefab == null) return; + + Vector3 spawnPos = caster.position + Vector3.up; + Vector3 direction = (targetPos - spawnPos).normalized; + Quaternion rotation = Quaternion.LookRotation(direction); + GameObject proj = Instantiate(skill.Data.EffectPrefab, spawnPos, rotation); + + // 투사체에 데미지 정보 전달 + // proj.GetComponent()?.Init(skill.CurrentLevelData.Damage * chargeRatio); + } } diff --git a/Assets/02_Scripts/Skill/Effects/ZoneEffect.cs b/Assets/02_Scripts/Skill/Effects/ZoneEffect.cs new file mode 100644 index 0000000..42a66cb --- /dev/null +++ b/Assets/02_Scripts/Skill/Effects/ZoneEffect.cs @@ -0,0 +1,29 @@ +using UnityEngine; + +public class ZoneEffect : MonoBehaviour, ISkillEffect +{ + public void Execute(SkillInstance skill, Transform caster, float chargeRatio) + { + Vector3 center = caster.position + caster.forward * skill.CurrentLevelData.Range; + SpawnZone(skill, center); + } + + public void ExecuteAtPosition(SkillInstance skill, Transform caster, Vector3 targetPos, float chargeRatio) + { + SpawnZone(skill, targetPos); + } + + private void SpawnZone(SkillInstance skill, Vector3 position) + { + if (skill.Data.ZonePrefab == null) return; + + GameObject zoneObj = Instantiate(skill.Data.ZonePrefab, position, Quaternion.identity); + ZoneEntity entity = zoneObj.GetComponent(); + if (entity != null) + { + SkillLevelData data = skill.CurrentLevelData; + float tickDmg = data.TickDamage > 0 ? data.TickDamage : data.Damage; + entity.Init(tickDmg, data.Range, data.Duration, data.TickInterval, skill.Data.AppliedDebuffs); + } + } +} diff --git a/Assets/02_Scripts/Skill/Effects/ZoneEffect.cs.meta b/Assets/02_Scripts/Skill/Effects/ZoneEffect.cs.meta new file mode 100644 index 0000000..cf79f43 --- /dev/null +++ b/Assets/02_Scripts/Skill/Effects/ZoneEffect.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 681ba972155e69d4e903ca9f06ade300 \ No newline at end of file diff --git a/Assets/02_Scripts/Skill/Effects/ZoneEntity.cs b/Assets/02_Scripts/Skill/Effects/ZoneEntity.cs new file mode 100644 index 0000000..5190023 --- /dev/null +++ b/Assets/02_Scripts/Skill/Effects/ZoneEntity.cs @@ -0,0 +1,61 @@ +using UnityEngine; + +public class ZoneEntity : MonoBehaviour +{ + private float _damage; + private float _radius; + private float _duration; + private float _tickInterval; + private DebuffData[] _debuffs; + + private float _lifeTimer; + private float _tickAccumulator; + + public void Init(float damage, float radius, float duration, float tickInterval, DebuffData[] debuffs) + { + _damage = damage; + _radius = radius; + _duration = duration; + _tickInterval = tickInterval > 0 ? tickInterval : 1f; + _debuffs = debuffs; + } + + private void Update() + { + _lifeTimer += Time.deltaTime; + _tickAccumulator += Time.deltaTime; + + if (_tickAccumulator >= _tickInterval) + { + _tickAccumulator -= _tickInterval; + ApplyTickDamage(); + } + + if (_lifeTimer >= _duration) + { + Destroy(gameObject); + } + } + + private void ApplyTickDamage() + { + Collider[] hits = Physics.OverlapSphere(transform.position, _radius); + foreach (Collider col in hits) + { + IDamageable target = col.GetComponent(); + if (target == null) continue; + + target.TakeDamage(Mathf.RoundToInt(_damage), transform); + + if (_debuffs != null) + { + StatusEffectReceiver receiver = col.GetComponent(); + if (receiver != null) + { + foreach (var debuff in _debuffs) + receiver.ApplyDebuff(debuff); + } + } + } + } +} diff --git a/Assets/02_Scripts/Skill/Effects/ZoneEntity.cs.meta b/Assets/02_Scripts/Skill/Effects/ZoneEntity.cs.meta new file mode 100644 index 0000000..a0c05f2 --- /dev/null +++ b/Assets/02_Scripts/Skill/Effects/ZoneEntity.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: c474ebcf1164e1348b54f06b02241e08 \ No newline at end of file diff --git a/Assets/02_Scripts/Skill/SkillModule.cs b/Assets/02_Scripts/Skill/SkillModule.cs index e6f2048..63845bc 100644 --- a/Assets/02_Scripts/Skill/SkillModule.cs +++ b/Assets/02_Scripts/Skill/SkillModule.cs @@ -16,11 +16,26 @@ public class SkillModule : MonoBehaviour private int _chargingSlot = -1; private float _chargeTimer = 0f; - // 범위 지정 + // 캐스팅 + private int _castingSlot = -1; + private float _castTimer = 0f; + + // 채널링 + private int _channelingSlot = -1; + private float _channelTimer = 0f; + private float _channelTickAccumulator = 0f; + + // 범위 지정 (Remote) private int _areaSelectSlot = -1; private GameObject _areaIndicator; + // Remote 타겟 위치 + private Vector3 _remoteTargetPos; + private bool _hasRemoteTarget; + public bool IsAreaSelecting => _areaSelectSlot >= 0; + public bool IsCasting => _castingSlot >= 0; + public bool IsChanneling => _channelingSlot >= 0; private void Awake() { @@ -36,6 +51,8 @@ private void Update() { TickCooldowns(); TickCharge(); + TickCast(); + TickChannel(); TickAreaSelect(); } @@ -67,6 +84,7 @@ private ISkillEffect ResolveEffect(TargetType targetType) TargetType.Single => GetComponent(), TargetType.Area => GetComponent(), TargetType.Projectile => GetComponent(), + TargetType.Zone => GetComponent(), _ => null }; } @@ -92,18 +110,16 @@ public void SkillInput(int slotIndex, InputState inputState) if (!CanUseSkill(skill)) return; - if (skill.Data.ActivationType == ActivationType.Instant) - { - ExecuteSkill(slotIndex); - } - else if (skill.Data.ActivationType == ActivationType.Charge) - { - StartCharge(slotIndex); - } - else if (skill.Data.ActivationType == ActivationType.AreaSelect) + // Remote 스킬: 먼저 범위 지정 모드 진입 + if (skill.Data.CastMethod == CastMethod.Remote) { StartAreaSelect(slotIndex); } + else + { + // Self 스킬: 바로 ActivationType 흐름 + BeginActivation(slotIndex); + } } else if (inputState == InputState.Canceled) { @@ -111,6 +127,10 @@ public void SkillInput(int slotIndex, InputState inputState) { ReleaseCharge(); } + else if (_channelingSlot == slotIndex) + { + CancelChannel(); + } } } @@ -128,6 +148,32 @@ public void AreaConfirmInput(InputState inputState) } #endregion + #region 발동 분기 + /// + /// ActivationType에 따라 적절한 흐름을 시작 + /// + private void BeginActivation(int slotIndex) + { + SkillInstance skill = _equippedSkills[slotIndex]; + + switch (skill.Data.ActivationType) + { + case ActivationType.Instant: + ExecuteSkill(slotIndex); + break; + case ActivationType.Charge: + StartCharge(slotIndex); + break; + case ActivationType.Cast: + StartCast(slotIndex); + break; + case ActivationType.Channel: + StartChannel(slotIndex); + break; + } + } + #endregion + #region 실행 private bool CanUseSkill(SkillInstance skill) { @@ -136,7 +182,8 @@ private bool CanUseSkill(SkillInstance skill) PlayerState state = _stateMachine.CurrentState; if (state == PlayerState.Dead || state == PlayerState.Hit || state == PlayerState.Dodge || state == PlayerState.Trans - || state == PlayerState.Action) + || state == PlayerState.Action || state == PlayerState.Cast + || state == PlayerState.Channel) return false; return true; @@ -159,12 +206,26 @@ private void ExecuteSkill(int slotIndex) chargeRatio = maxCharge > 0 ? Mathf.Clamp01(_chargeTimer / maxCharge) : 1f; } - effect?.Execute(skill, _transform, chargeRatio); + // CastMethod에 따라 실행 방식 분기 + if (_hasRemoteTarget) + { + effect?.ExecuteAtPosition(skill, _transform, _remoteTargetPos, chargeRatio); + ClearRemoteTarget(); + } + else + { + effect?.Execute(skill, _transform, chargeRatio); + } skill.StartCooldown(); _chargeTimer = 0f; _chargingSlot = -1; } + + private void ClearRemoteTarget() + { + _hasRemoteTarget = false; + } #endregion #region 차지 @@ -200,7 +261,150 @@ private void TickCharge() } #endregion - #region 범위 지정 + #region 캐스팅 + private void StartCast(int slotIndex) + { + _castingSlot = slotIndex; + _castTimer = 0f; + + _stateMachine.ChangeState(PlayerState.Cast); + + SkillInstance skill = _equippedSkills[slotIndex]; + if (!string.IsNullOrEmpty(skill.Data.AnimTrigger)) + _anim.SetTrigger(skill.Data.AnimTrigger); + + _stateMachine.OnStateChanged += OnCastInterrupted; + } + + private void TickCast() + { + if (_castingSlot < 0) return; + + _castTimer += Time.deltaTime; + + SkillInstance skill = _equippedSkills[_castingSlot]; + if (_castTimer >= skill.CurrentLevelData.CastTime) + { + CompleteCast(); + } + } + + private void CompleteCast() + { + if (_castingSlot < 0) return; + + _stateMachine.OnStateChanged -= OnCastInterrupted; + ExecuteSkill(_castingSlot); + _castingSlot = -1; + _castTimer = 0f; + } + + private void CancelCast() + { + _stateMachine.OnStateChanged -= OnCastInterrupted; + _castingSlot = -1; + _castTimer = 0f; + ClearRemoteTarget(); + } + + private void OnCastInterrupted(PlayerState newState) + { + if (newState == PlayerState.Hit || newState == PlayerState.Dead + || newState == PlayerState.Dodge) + { + CancelCast(); + } + } + #endregion + + #region 채널링 + private void StartChannel(int slotIndex) + { + _channelingSlot = slotIndex; + _channelTimer = 0f; + _channelTickAccumulator = 0f; + + _stateMachine.ChangeState(PlayerState.Channel); + + SkillInstance skill = _equippedSkills[slotIndex]; + if (!string.IsNullOrEmpty(skill.Data.AnimTrigger)) + _anim.SetTrigger(skill.Data.AnimTrigger); + + // 첫 틱 즉시 실행 + ISkillEffect effect = _skillEffects[slotIndex]; + ExecuteChannelTick(skill, effect); + + // 쿨다운은 채널 시작 시점에 시작 + skill.StartCooldown(); + + _stateMachine.OnStateChanged += OnChannelInterrupted; + } + + private void TickChannel() + { + if (_channelingSlot < 0) return; + + SkillInstance skill = _equippedSkills[_channelingSlot]; + SkillLevelData data = skill.CurrentLevelData; + + _channelTimer += Time.deltaTime; + _channelTickAccumulator += Time.deltaTime; + + if (_channelTickAccumulator >= data.TickInterval) + { + _channelTickAccumulator -= data.TickInterval; + ISkillEffect effect = _skillEffects[_channelingSlot]; + ExecuteChannelTick(skill, effect); + } + + if (_channelTimer >= data.ChannelDuration) + { + EndChannel(); + } + } + + private void ExecuteChannelTick(SkillInstance skill, ISkillEffect effect) + { + if (_hasRemoteTarget) + { + effect?.ExecuteAtPosition(skill, _transform, _remoteTargetPos, 1f); + } + else + { + effect?.Execute(skill, _transform, 1f); + } + } + + private void EndChannel() + { + _stateMachine.OnStateChanged -= OnChannelInterrupted; + _stateMachine.ChangeState(PlayerState.Idle); + _channelingSlot = -1; + _channelTimer = 0f; + _channelTickAccumulator = 0f; + ClearRemoteTarget(); + } + + private void CancelChannel() + { + _stateMachine.OnStateChanged -= OnChannelInterrupted; + _channelingSlot = -1; + _channelTimer = 0f; + _channelTickAccumulator = 0f; + ClearRemoteTarget(); + } + + private void OnChannelInterrupted(PlayerState newState) + { + if (newState == PlayerState.Hit || newState == PlayerState.Dead + || newState == PlayerState.Dodge) + { + CancelChannel(); + } + } + #endregion + + #region 범위 지정 (Remote) private void StartAreaSelect(int slotIndex) { _areaSelectSlot = slotIndex; @@ -229,26 +433,19 @@ private void ConfirmAreaSelect() { if (_areaSelectSlot < 0) return; - SkillInstance skill = _equippedSkills[_areaSelectSlot]; - ISkillEffect effect = _skillEffects[_areaSelectSlot]; + int slotIndex = _areaSelectSlot; - _stateMachine.ChangeState(PlayerState.Attack); - - if (!string.IsNullOrEmpty(skill.Data.AnimTrigger)) - _anim.SetTrigger(skill.Data.AnimTrigger); - - Vector3 targetPos = _areaIndicator.transform.position; - - if (effect is AreaEffect areaEffect) - { - areaEffect.ExecuteAtPosition(skill, _transform, targetPos); - } - - skill.StartCooldown(); + // 타겟 위치 저장 + _remoteTargetPos = _areaIndicator.transform.position; + _hasRemoteTarget = true; + // 인디케이터 정리 Destroy(_areaIndicator); _areaIndicator = null; _areaSelectSlot = -1; + + // ActivationType에 따라 흐름 시작 + BeginActivation(slotIndex); } public void CancelAreaSelect() diff --git a/Assets/02_Scripts/_Shared/Status/DebuffInstance.cs b/Assets/02_Scripts/_Shared/Status/DebuffInstance.cs new file mode 100644 index 0000000..7deeba4 --- /dev/null +++ b/Assets/02_Scripts/_Shared/Status/DebuffInstance.cs @@ -0,0 +1,55 @@ +using UnityEngine; + +public class DebuffInstance +{ + public DebuffData Data { get; private set; } + public float RemainingTime { get; private set; } + public bool IsExpired => RemainingTime <= 0f; + + private StatusEffectReceiver _receiver; + private float _tickAccumulator; + private GameObject _visualInstance; + + public DebuffInstance(DebuffData data, StatusEffectReceiver receiver) + { + Data = data; + _receiver = receiver; + RemainingTime = data.Duration; + _tickAccumulator = 0f; + } + + public void OnApply() + { + if (Data.EffectPrefab != null) + { + _visualInstance = Object.Instantiate(Data.EffectPrefab, _receiver.transform); + } + } + + public void Tick(float deltaTime) + { + RemainingTime -= deltaTime; + + if (Data.DebuffType == DebuffType.DamageOverTime && Data.TickInterval > 0) + { + _tickAccumulator += deltaTime; + if (_tickAccumulator >= Data.TickInterval) + { + _tickAccumulator -= Data.TickInterval; + IDamageable damageable = _receiver.GetComponent(); + damageable?.TakeDamage(Mathf.RoundToInt(Data.Value), null); + } + } + } + + public void OnRemove() + { + if (_visualInstance != null) + Object.Destroy(_visualInstance); + } + + public void RefreshDuration() + { + RemainingTime = Data.Duration; + } +} diff --git a/Assets/02_Scripts/_Shared/Status/DebuffInstance.cs.meta b/Assets/02_Scripts/_Shared/Status/DebuffInstance.cs.meta new file mode 100644 index 0000000..aa0520a --- /dev/null +++ b/Assets/02_Scripts/_Shared/Status/DebuffInstance.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 17e97bf635cef364781fdf5cedc5dfee \ No newline at end of file diff --git a/Assets/02_Scripts/_Shared/Status/IDamageable.cs b/Assets/02_Scripts/_Shared/Status/IDamageable.cs new file mode 100644 index 0000000..71d2ddb --- /dev/null +++ b/Assets/02_Scripts/_Shared/Status/IDamageable.cs @@ -0,0 +1,7 @@ +using UnityEngine; + +public interface IDamageable +{ + void TakeDamage(int damage, Transform source); + Transform GetTransform(); +} diff --git a/Assets/02_Scripts/_Shared/Status/IDamageable.cs.meta b/Assets/02_Scripts/_Shared/Status/IDamageable.cs.meta new file mode 100644 index 0000000..ff60c32 --- /dev/null +++ b/Assets/02_Scripts/_Shared/Status/IDamageable.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: cd29cb0b94cdd2c4388ff287969a9b5e \ No newline at end of file diff --git a/Assets/02_Scripts/_Shared/Status/StatusEffectReceiver.cs b/Assets/02_Scripts/_Shared/Status/StatusEffectReceiver.cs new file mode 100644 index 0000000..ea97e68 --- /dev/null +++ b/Assets/02_Scripts/_Shared/Status/StatusEffectReceiver.cs @@ -0,0 +1,69 @@ +using System.Collections.Generic; +using UnityEngine; + +public class StatusEffectReceiver : MonoBehaviour +{ + private List _activeDebuffs = new List(); + + public void ApplyDebuff(DebuffData data) + { + if (data == null) return; + + if (!data.Stackable) + { + DebuffInstance existing = _activeDebuffs.Find(d => d.Data == data); + if (existing != null) + { + existing.RefreshDuration(); + return; + } + } + else + { + int count = 0; + foreach (var d in _activeDebuffs) + if (d.Data == data) count++; + + if (count >= data.MaxStacks) return; + } + + DebuffInstance instance = new DebuffInstance(data, this); + _activeDebuffs.Add(instance); + instance.OnApply(); + } + + private void Update() + { + for (int i = _activeDebuffs.Count - 1; i >= 0; i--) + { + _activeDebuffs[i].Tick(Time.deltaTime); + if (_activeDebuffs[i].IsExpired) + { + _activeDebuffs[i].OnRemove(); + _activeDebuffs.RemoveAt(i); + } + } + } + + public bool HasDebuff(DebuffType type) + { + foreach (var d in _activeDebuffs) + if (d.Data.DebuffType == type) return true; + return false; + } + + public float GetDebuffValue(DebuffType type) + { + float total = 0f; + foreach (var d in _activeDebuffs) + if (d.Data.DebuffType == type) total += d.Data.Value; + return total; + } + + public void ClearAllDebuffs() + { + for (int i = _activeDebuffs.Count - 1; i >= 0; i--) + _activeDebuffs[i].OnRemove(); + _activeDebuffs.Clear(); + } +} diff --git a/Assets/02_Scripts/_Shared/Status/StatusEffectReceiver.cs.meta b/Assets/02_Scripts/_Shared/Status/StatusEffectReceiver.cs.meta new file mode 100644 index 0000000..b7f9d1a --- /dev/null +++ b/Assets/02_Scripts/_Shared/Status/StatusEffectReceiver.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: dafab9c2111f5d640bf9eb470963b85d \ No newline at end of file diff --git a/Assets/06_Items/Data/Consumable/LowerPotion.asset b/Assets/06_Items/Data/Consumable/LowerPotion.asset deleted file mode 100644 index 60ff95c..0000000 --- a/Assets/06_Items/Data/Consumable/LowerPotion.asset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d24540498862e5b6514f9de92152f3dcedcf5c11de5a78acfe7d50e552ddb8ec -size 1321 diff --git a/Assets/06_Items/Data/Consumable/PoisonPotion.asset b/Assets/06_Items/Data/Consumable/PoisonPotion.asset deleted file mode 100644 index d69164a..0000000 --- a/Assets/06_Items/Data/Consumable/PoisonPotion.asset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:77e19fa2fab194abddc8077fce2a52229bce58dd7949e7b39961295bc4b7be6e -size 1296 diff --git a/Assets/06_Items/Data/Equipment/BeginnerSword.asset b/Assets/06_Items/Data/Equipment/BeginnerSword.asset deleted file mode 100644 index dcfb6d7..0000000 --- a/Assets/06_Items/Data/Equipment/BeginnerSword.asset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:73483577a6517a51dda37049ca36206ee2f9c70303a4c48172b7b7f074f62f72 -size 777 diff --git a/Assets/06_Items/Models/Consumable/JumpPowerLowerPotion/JumpPowerLowerPotion.fbx b/Assets/06_Items/Models/Consumable/JumpPowerLowerPotion/JumpPowerLowerPotion.fbx deleted file mode 100644 index 8ed3637..0000000 --- a/Assets/06_Items/Models/Consumable/JumpPowerLowerPotion/JumpPowerLowerPotion.fbx +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0a5eacf42adeb6ba560e33ecf0e65259019f9c8a27a980745f6c1f60891c95b0 -size 252712 diff --git a/Assets/06_Items/Models/Consumable/LowerPotion/Icon/LowerPotion_Icon.png b/Assets/06_Items/Models/Consumable/LowerPotion/Icon/LowerPotion_Icon.png deleted file mode 100644 index 7e0e281..0000000 --- a/Assets/06_Items/Models/Consumable/LowerPotion/Icon/LowerPotion_Icon.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a44e74814d5796c2cb3b0c36c993c1d502cfaa7c4db4404015dd2acfbe5b9349 -size 27466 diff --git a/Assets/06_Items/Models/Consumable/LowerPotion/LowerPotion.fbx b/Assets/06_Items/Models/Consumable/LowerPotion/LowerPotion.fbx deleted file mode 100644 index 8ed3637..0000000 --- a/Assets/06_Items/Models/Consumable/LowerPotion/LowerPotion.fbx +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0a5eacf42adeb6ba560e33ecf0e65259019f9c8a27a980745f6c1f60891c95b0 -size 252712 diff --git a/Assets/06_Items/Models/Consumable/LowerPotion/Prefabs/LowerPotion_Tuning.prefab b/Assets/06_Items/Models/Consumable/LowerPotion/Prefabs/LowerPotion_Tuning.prefab deleted file mode 100644 index 6d894e7..0000000 --- a/Assets/06_Items/Models/Consumable/LowerPotion/Prefabs/LowerPotion_Tuning.prefab +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a60798417958d4b1b5cf40a21a2bde1fc19dbd770a8e9f6b0c14fece43034d31 -size 3626 diff --git a/Assets/06_Items/Models/Consumable/LowerPotion/Prefabs/LowerPotion_Visible.prefab b/Assets/06_Items/Models/Consumable/LowerPotion/Prefabs/LowerPotion_Visible.prefab deleted file mode 100644 index 568d0d7..0000000 --- a/Assets/06_Items/Models/Consumable/LowerPotion/Prefabs/LowerPotion_Visible.prefab +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b49185b0fd5ba147307e538b30556778b89db1ff00eeffb9744a8ff0ddc44578 -size 11102 diff --git a/Assets/06_Items/Models/Consumable/LowerPotion/Prefabs/LowerPotion_Wild.prefab b/Assets/06_Items/Models/Consumable/LowerPotion/Prefabs/LowerPotion_Wild.prefab deleted file mode 100644 index ac4deb2..0000000 --- a/Assets/06_Items/Models/Consumable/LowerPotion/Prefabs/LowerPotion_Wild.prefab +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:02fe0c85fde3514e0b64882005cf9d9423134fa59336877cc0ebf8538fc25caf -size 2870 diff --git a/Assets/06_Items/Models/Consumable/LowerPotion/Prefabs/LowerPotion_World.prefab b/Assets/06_Items/Models/Consumable/LowerPotion/Prefabs/LowerPotion_World.prefab deleted file mode 100644 index ac16347..0000000 --- a/Assets/06_Items/Models/Consumable/LowerPotion/Prefabs/LowerPotion_World.prefab +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:54088cf8fee2216a009e36190ac698d8797c4f7cf9c1f6224ca6a0dc1d5832bb -size 4220 diff --git a/Assets/06_Items/Models/Consumable/ManaLowerPotion/ManaLowerPotion.fbx b/Assets/06_Items/Models/Consumable/ManaLowerPotion/ManaLowerPotion.fbx deleted file mode 100644 index 8ed3637..0000000 --- a/Assets/06_Items/Models/Consumable/ManaLowerPotion/ManaLowerPotion.fbx +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0a5eacf42adeb6ba560e33ecf0e65259019f9c8a27a980745f6c1f60891c95b0 -size 252712 diff --git a/Assets/06_Items/Models/Consumable/PoisonPotion/Icon/PoisonPotion_Icon.png b/Assets/06_Items/Models/Consumable/PoisonPotion/Icon/PoisonPotion_Icon.png deleted file mode 100644 index ec440cc..0000000 --- a/Assets/06_Items/Models/Consumable/PoisonPotion/Icon/PoisonPotion_Icon.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:48123ecb4b2191c4f9e19cd87506a2cb28d620933153b7059507e1976a04691d -size 25862 diff --git a/Assets/06_Items/Models/Consumable/PoisonPotion/PoisonPotion.fbx b/Assets/06_Items/Models/Consumable/PoisonPotion/PoisonPotion.fbx deleted file mode 100644 index 8ed3637..0000000 --- a/Assets/06_Items/Models/Consumable/PoisonPotion/PoisonPotion.fbx +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0a5eacf42adeb6ba560e33ecf0e65259019f9c8a27a980745f6c1f60891c95b0 -size 252712 diff --git a/Assets/06_Items/Models/Consumable/PoisonPotion/Prefabs/PoisonPotion_Tuning.prefab b/Assets/06_Items/Models/Consumable/PoisonPotion/Prefabs/PoisonPotion_Tuning.prefab deleted file mode 100644 index c3aa2c6..0000000 --- a/Assets/06_Items/Models/Consumable/PoisonPotion/Prefabs/PoisonPotion_Tuning.prefab +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:119c9f33c3da6c592047fde719392c0f3798517f9fbfbc188a36a5f00234e8cd -size 3629 diff --git a/Assets/06_Items/Models/Consumable/PoisonPotion/Prefabs/PoisonPotion_Visible.prefab b/Assets/06_Items/Models/Consumable/PoisonPotion/Prefabs/PoisonPotion_Visible.prefab deleted file mode 100644 index 00b6ed4..0000000 --- a/Assets/06_Items/Models/Consumable/PoisonPotion/Prefabs/PoisonPotion_Visible.prefab +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:158e9af93beb48939873c67f531dc52bf027c9a7a9b71d06e672a228f9e1b870 -size 11099 diff --git a/Assets/06_Items/Models/Consumable/PoisonPotion/Prefabs/PoisonPotion_Wild.prefab b/Assets/06_Items/Models/Consumable/PoisonPotion/Prefabs/PoisonPotion_Wild.prefab deleted file mode 100644 index 73fcc4e..0000000 --- a/Assets/06_Items/Models/Consumable/PoisonPotion/Prefabs/PoisonPotion_Wild.prefab +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2abc84d618ac08e47feea5f02d0755ede11ad92a7c3cf0a4e73a637708893e40 -size 2869 diff --git a/Assets/06_Items/Models/Consumable/PoisonPotion/Prefabs/PoisonPotion_World.prefab b/Assets/06_Items/Models/Consumable/PoisonPotion/Prefabs/PoisonPotion_World.prefab deleted file mode 100644 index 27fbf17..0000000 --- a/Assets/06_Items/Models/Consumable/PoisonPotion/Prefabs/PoisonPotion_World.prefab +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1cdba23d2501862f9ac0a66972bf45d0df35c76ca77d8eda621eff46ab10f3dc -size 4218 diff --git a/Assets/06_Items/Models/Consumable/_Shared/Textures/LUT_Gradients.png b/Assets/06_Items/Models/Consumable/_Shared/Textures/LUT_Gradients.png deleted file mode 100644 index cfaa075..0000000 --- a/Assets/06_Items/Models/Consumable/_Shared/Textures/LUT_Gradients.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4156063c0295121b4ae51464c605bf1900036094a2b85f289036a6e3c70cb524 -size 22870 diff --git a/Assets/06_Items/VFX/HighlightProfile/Highlight_FieldItem.asset b/Assets/06_Items/VFX/HighlightProfile/Highlight_FieldItem.asset deleted file mode 100644 index d565d63..0000000 --- a/Assets/06_Items/VFX/HighlightProfile/Highlight_FieldItem.asset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d04f0019e177d2a18ae430939db6d90c90dd43005183f318c7a759059bb16dae -size 6510 diff --git a/Assets/06_Skills/VFX.meta b/Assets/06_Skills/VFX.meta new file mode 100644 index 0000000..3789893 --- /dev/null +++ b/Assets/06_Skills/VFX.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 40612b926034315458eba38db0787f62 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/SelfMadeVFX.meta b/Assets/06_Skills/VFX/SelfMadeVFX.meta new file mode 100644 index 0000000..c8862cf --- /dev/null +++ b/Assets/06_Skills/VFX/SelfMadeVFX.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5e710993297443f4c8d7890d0ed4ead0 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/SelfMadeVFX/dumy.txt b/Assets/06_Skills/VFX/SelfMadeVFX/dumy.txt new file mode 100644 index 0000000..ce0b02a --- /dev/null +++ b/Assets/06_Skills/VFX/SelfMadeVFX/dumy.txt @@ -0,0 +1 @@ +dumy \ No newline at end of file diff --git a/Assets/06_Skills/VFX/SelfMadeVFX/dumy.txt.meta b/Assets/06_Skills/VFX/SelfMadeVFX/dumy.txt.meta new file mode 100644 index 0000000..aabbc48 --- /dev/null +++ b/Assets/06_Skills/VFX/SelfMadeVFX/dumy.txt.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 806fca355ae44fc4594198b3b11cbb7f +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack.meta new file mode 100644 index 0000000..29ffa5b --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a56f1a9e9db590a4b9af0dd1f8188562 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects.meta new file mode 100644 index 0000000..bf04ab6 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3ab879817acc49a45a17f2c3e96658e2 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased).meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased).meta new file mode 100644 index 0000000..dd2413c --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased).meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 83dd87227f362a34ab03155d35cbf27e +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects.meta new file mode 100644 index 0000000..7e747cc --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2e7f2c757d7b9e842ae3ce38fa7fdab6 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_01_StormTornado.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_01_StormTornado.meta new file mode 100644 index 0000000..64a4a75 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_01_StormTornado.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f554ea584ffd2164790a57d35d896ef3 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_01_StormTornado/Effect_01_LightningTornado.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_01_StormTornado/Effect_01_LightningTornado.meta new file mode 100644 index 0000000..a1c3fa3 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_01_StormTornado/Effect_01_LightningTornado.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 006108278f99e584394c13c81bfcb7f9 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_01_StormTornado/Effect_01_LightningTornado.prefab b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_01_StormTornado/Effect_01_LightningTornado.prefab new file mode 100644 index 0000000..64bd401 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_01_StormTornado/Effect_01_LightningTornado.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:370e279390a23fb6df42487dc38eeaf4b4219d9455ffdc42e5f2c750de31f63c +size 17537 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_01_StormTornado/Effect_01_LightningTornado.prefab.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_01_StormTornado/Effect_01_LightningTornado.prefab.meta new file mode 100644 index 0000000..1c61d65 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_01_StormTornado/Effect_01_LightningTornado.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 513a171cf5a52ed4a8ea91b31db367ff +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_01_StormTornado/Effect_01_LightningTornado.prefab + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_01_StormTornado/Effect_01_LightningTornado/Effect_01_LightningTornado(Base).prefab b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_01_StormTornado/Effect_01_LightningTornado/Effect_01_LightningTornado(Base).prefab new file mode 100644 index 0000000..57908c5 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_01_StormTornado/Effect_01_LightningTornado/Effect_01_LightningTornado(Base).prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a086823c970686d033cfef0f6b711c3258148efecfc4a17f66857cc7c0a68bd2 +size 575992 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_01_StormTornado/Effect_01_LightningTornado/Effect_01_LightningTornado(Base).prefab.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_01_StormTornado/Effect_01_LightningTornado/Effect_01_LightningTornado(Base).prefab.meta new file mode 100644 index 0000000..59e03f7 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_01_StormTornado/Effect_01_LightningTornado/Effect_01_LightningTornado(Base).prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 318ac0a9a9480c44c8ff11aec9fb3a43 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_01_StormTornado/Effect_01_LightningTornado/Effect_01_LightningTornado(Base).prefab + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_01_StormTornado/Effect_01_StormTornado.prefab b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_01_StormTornado/Effect_01_StormTornado.prefab new file mode 100644 index 0000000..e23dba8 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_01_StormTornado/Effect_01_StormTornado.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2236e0dae780709fa19ec7be82319bf95bc7da575121848bdb68f49a309053c2 +size 818834 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_01_StormTornado/Effect_01_StormTornado.prefab.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_01_StormTornado/Effect_01_StormTornado.prefab.meta new file mode 100644 index 0000000..39cc9e9 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_01_StormTornado/Effect_01_StormTornado.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: a66ac8cc7bfe6f7449bdb1d44b77fe3e +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_01_StormTornado/Effect_01_StormTornado.prefab + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_02_BlackHole.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_02_BlackHole.meta new file mode 100644 index 0000000..ff1a510 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_02_BlackHole.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b01d1b0ed91e6574fb7be480d5904f54 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_02_BlackHole/Effect_02_BlackHole.prefab b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_02_BlackHole/Effect_02_BlackHole.prefab new file mode 100644 index 0000000..35cbd8a --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_02_BlackHole/Effect_02_BlackHole.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e45621545880cd892a02d56010837551a958e7138f4128da304d11804ebb254d +size 464835 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_02_BlackHole/Effect_02_BlackHole.prefab.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_02_BlackHole/Effect_02_BlackHole.prefab.meta new file mode 100644 index 0000000..1c85132 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_02_BlackHole/Effect_02_BlackHole.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 80cf365a0d4411a4099f07a0bec382d7 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_02_BlackHole/Effect_02_BlackHole.prefab + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_03_OrbitalStrike.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_03_OrbitalStrike.meta new file mode 100644 index 0000000..a927016 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_03_OrbitalStrike.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0ac351e1ea5775840a748130301f9b37 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_03_OrbitalStrike/Effect_03_OrbitalAnnihilationBeam.prefab b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_03_OrbitalStrike/Effect_03_OrbitalAnnihilationBeam.prefab new file mode 100644 index 0000000..01203ca --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_03_OrbitalStrike/Effect_03_OrbitalAnnihilationBeam.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41a9f5a8b2a945079bb1837e3396e9cb1bd6d211170d9c644ae47da0835d27f2 +size 1153649 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_03_OrbitalStrike/Effect_03_OrbitalAnnihilationBeam.prefab.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_03_OrbitalStrike/Effect_03_OrbitalAnnihilationBeam.prefab.meta new file mode 100644 index 0000000..736e915 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_03_OrbitalStrike/Effect_03_OrbitalAnnihilationBeam.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: b744a3721083c254eb7cef9b9f835947 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_03_OrbitalStrike/Effect_03_OrbitalAnnihilationBeam.prefab + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_03_OrbitalStrike/Effect_03_OrbitalStrike.prefab b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_03_OrbitalStrike/Effect_03_OrbitalStrike.prefab new file mode 100644 index 0000000..f7221bb --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_03_OrbitalStrike/Effect_03_OrbitalStrike.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dfa2ca82c2309d2ce99f790a9ad8d2520172d95ffcd8e1bb23530f191f7b928 +size 1751363 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_03_OrbitalStrike/Effect_03_OrbitalStrike.prefab.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_03_OrbitalStrike/Effect_03_OrbitalStrike.prefab.meta new file mode 100644 index 0000000..7238389 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_03_OrbitalStrike/Effect_03_OrbitalStrike.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: a762a5f89618ce24d9193fe9a13cab77 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_03_OrbitalStrike/Effect_03_OrbitalStrike.prefab + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_04_ChargeShot.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_04_ChargeShot.meta new file mode 100644 index 0000000..f494274 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_04_ChargeShot.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a38226080fd00b44ebf9af7d8721c444 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_04_ChargeShot/Effect_04_ChargeAndRelease.prefab b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_04_ChargeShot/Effect_04_ChargeAndRelease.prefab new file mode 100644 index 0000000..a87ddd3 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_04_ChargeShot/Effect_04_ChargeAndRelease.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72592a80cafe87188e3becf9073db18d3f2a59993d29b5acae8f4cd9117f3d16 +size 590560 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_04_ChargeShot/Effect_04_ChargeAndRelease.prefab.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_04_ChargeShot/Effect_04_ChargeAndRelease.prefab.meta new file mode 100644 index 0000000..77e2847 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_04_ChargeShot/Effect_04_ChargeAndRelease.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: e18c351ac3f6ed7409f6cae5ba1302eb +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_04_ChargeShot/Effect_04_ChargeAndRelease.prefab + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_04_ChargeShot/Effect_04_ChargeShot.prefab b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_04_ChargeShot/Effect_04_ChargeShot.prefab new file mode 100644 index 0000000..4d0da37 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_04_ChargeShot/Effect_04_ChargeShot.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36eeb9baf31e6402d2ca76c11fd400cfa3ef8c19de8bdebd1a6754fc1712b8aa +size 1758073 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_04_ChargeShot/Effect_04_ChargeShot.prefab.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_04_ChargeShot/Effect_04_ChargeShot.prefab.meta new file mode 100644 index 0000000..9e84c69 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_04_ChargeShot/Effect_04_ChargeShot.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 1a0c3309985528645b50dffd642237b3 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_04_ChargeShot/Effect_04_ChargeShot.prefab + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_12_CosmicHorror.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_12_CosmicHorror.meta new file mode 100644 index 0000000..d951498 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_12_CosmicHorror.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5cf5e13c5eeab8f42bb6134a21c69bde +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_12_CosmicHorror/Effect_12_CosmicHorror.prefab b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_12_CosmicHorror/Effect_12_CosmicHorror.prefab new file mode 100644 index 0000000..5bf40da --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_12_CosmicHorror/Effect_12_CosmicHorror.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77f5a647bdbd297b578364ba135f1d110a9d0e1875b8f59370cae4c5499a46d0 +size 381410 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_12_CosmicHorror/Effect_12_CosmicHorror.prefab.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_12_CosmicHorror/Effect_12_CosmicHorror.prefab.meta new file mode 100644 index 0000000..85f9c11 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_12_CosmicHorror/Effect_12_CosmicHorror.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 4a7a46686d4340c4b832ba8d02f87a99 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_12_CosmicHorror/Effect_12_CosmicHorror.prefab + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_12_CosmicHorror/Effect_12_UniverseEater.prefab b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_12_CosmicHorror/Effect_12_UniverseEater.prefab new file mode 100644 index 0000000..7d5b43f --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_12_CosmicHorror/Effect_12_UniverseEater.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5681795fc171c9e5f037eca620d32fa27b79b4dd1aaa63d041a3d0cd836daf84 +size 357010 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_12_CosmicHorror/Effect_12_UniverseEater.prefab.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_12_CosmicHorror/Effect_12_UniverseEater.prefab.meta new file mode 100644 index 0000000..677fafa --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_12_CosmicHorror/Effect_12_UniverseEater.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 9e119eba0536a144a8bf50ea32e75c28 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_12_CosmicHorror/Effect_12_UniverseEater.prefab + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_18_TimeField.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_18_TimeField.meta new file mode 100644 index 0000000..eb1b4b8 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_18_TimeField.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f981b43f8cbe41e49aafda13bfff0653 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_18_TimeField/Effect_18_TimeField.prefab b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_18_TimeField/Effect_18_TimeField.prefab new file mode 100644 index 0000000..fb839e3 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_18_TimeField/Effect_18_TimeField.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edf07199f3980633fe984fdbf75fbc470aafc8ea75f6460dfe619027ce6a136c +size 1272186 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_18_TimeField/Effect_18_TimeField.prefab.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_18_TimeField/Effect_18_TimeField.prefab.meta new file mode 100644 index 0000000..31616cc --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_18_TimeField/Effect_18_TimeField.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 96aacb3c58028424aa3e5f4e5c55f12e +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_18_TimeField/Effect_18_TimeField.prefab + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_21_GroundScatter.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_21_GroundScatter.meta new file mode 100644 index 0000000..f9fa812 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_21_GroundScatter.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b1fb8f2eaf22b9b4ba054beca200ac73 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_21_GroundScatter/Effect_21_GroundScatter.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_21_GroundScatter/Effect_21_GroundScatter.meta new file mode 100644 index 0000000..797b574 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_21_GroundScatter/Effect_21_GroundScatter.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 09bdcfb3557270f4f9d606a9d7c61f58 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_21_GroundScatter/Effect_21_GroundScatter.prefab b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_21_GroundScatter/Effect_21_GroundScatter.prefab new file mode 100644 index 0000000..60804a5 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_21_GroundScatter/Effect_21_GroundScatter.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ceb141ef2091bb9aaabd93d8c3251f90828101dc0e455d5393deac16857196b +size 18970 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_21_GroundScatter/Effect_21_GroundScatter.prefab.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_21_GroundScatter/Effect_21_GroundScatter.prefab.meta new file mode 100644 index 0000000..3133bd9 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_21_GroundScatter/Effect_21_GroundScatter.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 79be24f135d46964e9f186bacaca2299 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_21_GroundScatter/Effect_21_GroundScatter.prefab + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_21_GroundScatter/Effect_21_GroundScatter/Effect_21_GroundScatter(Base).prefab b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_21_GroundScatter/Effect_21_GroundScatter/Effect_21_GroundScatter(Base).prefab new file mode 100644 index 0000000..333d8e0 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_21_GroundScatter/Effect_21_GroundScatter/Effect_21_GroundScatter(Base).prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a50b71207d1d47ebdaab483a1e75dd1d6a40e65ddba6e3da6e10b406710278e +size 927610 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_21_GroundScatter/Effect_21_GroundScatter/Effect_21_GroundScatter(Base).prefab.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_21_GroundScatter/Effect_21_GroundScatter/Effect_21_GroundScatter(Base).prefab.meta new file mode 100644 index 0000000..062e3c9 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_21_GroundScatter/Effect_21_GroundScatter/Effect_21_GroundScatter(Base).prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: c2ae8d95860915148bdf28559c527cbb +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_21_GroundScatter/Effect_21_GroundScatter/Effect_21_GroundScatter(Base).prefab + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_21_GroundScatter/Effect_21_InnertcoreRelease.prefab b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_21_GroundScatter/Effect_21_InnertcoreRelease.prefab new file mode 100644 index 0000000..49cb8f1 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_21_GroundScatter/Effect_21_InnertcoreRelease.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3faf8f355a9d3b40388c1742705efb40893d32d15d664d7843a99f3dc8e59402 +size 466497 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_21_GroundScatter/Effect_21_InnertcoreRelease.prefab.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_21_GroundScatter/Effect_21_InnertcoreRelease.prefab.meta new file mode 100644 index 0000000..3e4f7c1 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_21_GroundScatter/Effect_21_InnertcoreRelease.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 519ff72a211faaf43b8be89b3169a13d +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_21_GroundScatter/Effect_21_InnertcoreRelease.prefab + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_28_PurifierBeam.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_28_PurifierBeam.meta new file mode 100644 index 0000000..1158aed --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_28_PurifierBeam.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: db8e119f1c8e62748be05e35d1f2f610 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_28_PurifierBeam/Effect_28_PurifierBeam.prefab b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_28_PurifierBeam/Effect_28_PurifierBeam.prefab new file mode 100644 index 0000000..49a92e5 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_28_PurifierBeam/Effect_28_PurifierBeam.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e7fcfe62a821ce63b63e16a99fdb1e70b97aef148fc9d5641d4fd426a193745 +size 577887 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_28_PurifierBeam/Effect_28_PurifierBeam.prefab.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_28_PurifierBeam/Effect_28_PurifierBeam.prefab.meta new file mode 100644 index 0000000..fe27ab3 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_28_PurifierBeam/Effect_28_PurifierBeam.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: f8b6a6f913bc4c748af1eb91ba8d1a23 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_28_PurifierBeam/Effect_28_PurifierBeam.prefab + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_31_LumenJudgement.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_31_LumenJudgement.meta new file mode 100644 index 0000000..e7589a3 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_31_LumenJudgement.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a7478b4686dce774e95d61c470603db6 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_31_LumenJudgement/Effect_31_LumenJudgement.prefab b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_31_LumenJudgement/Effect_31_LumenJudgement.prefab new file mode 100644 index 0000000..08dd8a1 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_31_LumenJudgement/Effect_31_LumenJudgement.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a03a4396c462cb146f2546a8b0140a683fd1e6104f085887724acd5192e0b2a4 +size 807713 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_31_LumenJudgement/Effect_31_LumenJudgement.prefab.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_31_LumenJudgement/Effect_31_LumenJudgement.prefab.meta new file mode 100644 index 0000000..5051afb --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_31_LumenJudgement/Effect_31_LumenJudgement.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: b7016aae7bbdcd54fb4bf3a41bf01a60 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_31_LumenJudgement/Effect_31_LumenJudgement.prefab + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_34_WindTurbulance.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_34_WindTurbulance.meta new file mode 100644 index 0000000..9c1905f --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_34_WindTurbulance.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 02dc2d98304de9147b8d151c485a2c1d +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_34_WindTurbulance/Effect_34_WindTurbulance.prefab b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_34_WindTurbulance/Effect_34_WindTurbulance.prefab new file mode 100644 index 0000000..ef0b0a3 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_34_WindTurbulance/Effect_34_WindTurbulance.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03531ae767f02153f324ec071a88a515965881882818bfb8a46e71e1c8cb4958 +size 577521 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_34_WindTurbulance/Effect_34_WindTurbulance.prefab.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_34_WindTurbulance/Effect_34_WindTurbulance.prefab.meta new file mode 100644 index 0000000..a26c8e6 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_34_WindTurbulance/Effect_34_WindTurbulance.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 9a504412f1061444bb18de98ad4be8d6 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_34_WindTurbulance/Effect_34_WindTurbulance.prefab + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_38_GloryBoundary.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_38_GloryBoundary.meta new file mode 100644 index 0000000..65ecab6 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_38_GloryBoundary.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 01974900949ed54468f2a9ceb9a7d830 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_38_GloryBoundary/Effect_38_GloryBoundary.prefab b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_38_GloryBoundary/Effect_38_GloryBoundary.prefab new file mode 100644 index 0000000..aeba958 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_38_GloryBoundary/Effect_38_GloryBoundary.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad2010a8684d866550c5bdfec2a3f9202eca7dc61c5c619f96e12ef900096ea2 +size 923660 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_38_GloryBoundary/Effect_38_GloryBoundary.prefab.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_38_GloryBoundary/Effect_38_GloryBoundary.prefab.meta new file mode 100644 index 0000000..5dec2d9 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_38_GloryBoundary/Effect_38_GloryBoundary.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 34d0599d37e35ac4ebeab64c18d00ccc +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_38_GloryBoundary/Effect_38_GloryBoundary.prefab + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_49_IceBlockCrash.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_49_IceBlockCrash.meta new file mode 100644 index 0000000..d3cc54c --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_49_IceBlockCrash.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 95bc93955f26d114281032693474c855 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_49_IceBlockCrash/Effect_49_Base(IceBlockCrash).meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_49_IceBlockCrash/Effect_49_Base(IceBlockCrash).meta new file mode 100644 index 0000000..48b4f23 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_49_IceBlockCrash/Effect_49_Base(IceBlockCrash).meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 30e6e86e66152854b945655c1b847ec8 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_49_IceBlockCrash/Effect_49_Base(IceBlockCrash)/Effect_49_IceBlock.prefab b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_49_IceBlockCrash/Effect_49_Base(IceBlockCrash)/Effect_49_IceBlock.prefab new file mode 100644 index 0000000..1fd73f2 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_49_IceBlockCrash/Effect_49_Base(IceBlockCrash)/Effect_49_IceBlock.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f066c05a5a782d198211c330e9bfe5550d02e3b14141a21336b780a0a6d70cbc +size 465761 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_49_IceBlockCrash/Effect_49_Base(IceBlockCrash)/Effect_49_IceBlock.prefab.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_49_IceBlockCrash/Effect_49_Base(IceBlockCrash)/Effect_49_IceBlock.prefab.meta new file mode 100644 index 0000000..52bc2f3 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_49_IceBlockCrash/Effect_49_Base(IceBlockCrash)/Effect_49_IceBlock.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 9c0abb3915bdd7140abe233d64c2b128 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_49_IceBlockCrash/Effect_49_Base(IceBlockCrash)/Effect_49_IceBlock.prefab + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_49_IceBlockCrash/Effect_49_IceBlockCrash.prefab b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_49_IceBlockCrash/Effect_49_IceBlockCrash.prefab new file mode 100644 index 0000000..1b5c9d6 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_49_IceBlockCrash/Effect_49_IceBlockCrash.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b52700d4576b72891445136b5aa65eb206ac4fefc26fc6022c282119a5682af +size 3762 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_49_IceBlockCrash/Effect_49_IceBlockCrash.prefab.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_49_IceBlockCrash/Effect_49_IceBlockCrash.prefab.meta new file mode 100644 index 0000000..a9dea38 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_49_IceBlockCrash/Effect_49_IceBlockCrash.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: e0e1b2851d5b705498823cddfb2f04b4 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_49_IceBlockCrash/Effect_49_IceBlockCrash.prefab + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_49_IceBlockCrash/Effect_49_IceBlockFissure.prefab b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_49_IceBlockCrash/Effect_49_IceBlockFissure.prefab new file mode 100644 index 0000000..00b8ab1 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_49_IceBlockCrash/Effect_49_IceBlockFissure.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57b82c1e95725c9fde04c754952960c6352ff02a4a1e9fb66d5802482ba033f4 +size 350814 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_49_IceBlockCrash/Effect_49_IceBlockFissure.prefab.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_49_IceBlockCrash/Effect_49_IceBlockFissure.prefab.meta new file mode 100644 index 0000000..d898cc6 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_49_IceBlockCrash/Effect_49_IceBlockFissure.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 080e887faebafc3429b3c2e49e343ccf +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_49_IceBlockCrash/Effect_49_IceBlockFissure.prefab + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_54_SateliteCannon.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_54_SateliteCannon.meta new file mode 100644 index 0000000..dc0ad2d --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_54_SateliteCannon.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 16bb7d81236e541499ac64a30ed29f54 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_54_SateliteCannon/Effect_54_SateliteBeam.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_54_SateliteCannon/Effect_54_SateliteBeam.meta new file mode 100644 index 0000000..1b0672c --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_54_SateliteCannon/Effect_54_SateliteBeam.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: baa9716e15312ba49ab3051a2cda84d2 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_54_SateliteCannon/Effect_54_SateliteBeam.prefab b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_54_SateliteCannon/Effect_54_SateliteBeam.prefab new file mode 100644 index 0000000..a5ad988 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_54_SateliteCannon/Effect_54_SateliteBeam.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9da7b573800f8343a705e3f333fbd192ac8f4123cdbc0e568d14cf93a6d9915 +size 937863 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_54_SateliteCannon/Effect_54_SateliteBeam.prefab.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_54_SateliteCannon/Effect_54_SateliteBeam.prefab.meta new file mode 100644 index 0000000..7e4e075 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_54_SateliteCannon/Effect_54_SateliteBeam.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: e23c9c12f2a3be64a93ef75d44910941 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_54_SateliteCannon/Effect_54_SateliteBeam.prefab + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_54_SateliteCannon/Effect_54_SateliteBeam/Effect_54_SateliteBeamSide(Base).prefab b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_54_SateliteCannon/Effect_54_SateliteBeam/Effect_54_SateliteBeamSide(Base).prefab new file mode 100644 index 0000000..76dd729 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_54_SateliteCannon/Effect_54_SateliteBeam/Effect_54_SateliteBeamSide(Base).prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f9d27ce8648edf33b308d3d28b4606fdcdaf10fc8422169e505604f94731840 +size 808998 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_54_SateliteCannon/Effect_54_SateliteBeam/Effect_54_SateliteBeamSide(Base).prefab.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_54_SateliteCannon/Effect_54_SateliteBeam/Effect_54_SateliteBeamSide(Base).prefab.meta new file mode 100644 index 0000000..d383ab5 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_54_SateliteCannon/Effect_54_SateliteBeam/Effect_54_SateliteBeamSide(Base).prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 1e7dbba8f745f6d42bfce3b8bf0044d1 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_54_SateliteCannon/Effect_54_SateliteBeam/Effect_54_SateliteBeamSide(Base).prefab + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_54_SateliteCannon/Effect_54_SateliteCannon.prefab b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_54_SateliteCannon/Effect_54_SateliteCannon.prefab new file mode 100644 index 0000000..9e088bc --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_54_SateliteCannon/Effect_54_SateliteCannon.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6ea1f804e1681eb6fc7e07d800351183b3e19e603dc9dc2670537dfea28e9cc +size 693164 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_54_SateliteCannon/Effect_54_SateliteCannon.prefab.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_54_SateliteCannon/Effect_54_SateliteCannon.prefab.meta new file mode 100644 index 0000000..ea420ca --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_54_SateliteCannon/Effect_54_SateliteCannon.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 26d18c76357323442aebb3e37fa40c13 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Effects/Effect_54_SateliteCannon/Effect_54_SateliteCannon.prefab + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials.meta new file mode 100644 index 0000000..cc46e05 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 58771d056e1fae446aedf479aee9f8d1 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_01_Materials.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_01_Materials.meta new file mode 100644 index 0000000..fd4d171 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_01_Materials.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ae03be50ccabb0043a4040bedd5e03ea +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_01_Materials/Effect_01_Decal.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_01_Materials/Effect_01_Decal.mat new file mode 100644 index 0000000..f9d070e --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_01_Materials/Effect_01_Decal.mat @@ -0,0 +1,147 @@ +%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: Effect_01_Decal + m_Shader: {fileID: 4800000, guid: 416d9dd6e46c1c5408e8ed3f0d48c1bc, type: 3} + m_ShaderKeywords: IS_MASK_FADE IS_NORMAL_ANIMATE IS_NORMAL_DISTORTION IS_SOFT_PARTICLES + IS_TEXTURE_ANIMATE + 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} + - _FixedMaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 3cb02bf457cde1b48af42b67ee413532, type: 3} + m_Scale: {x: 2, y: 2} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 10300, guid: 0000000000000000f000000000000000, type: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, 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} + m_Floats: + - _BlendDst: 1 + - _BlendSrc: 5 + - _BumpScale: 1 + - _ColorFactor: 2 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 1 + - _MaskOffsetFactor: 1 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 0 + - _NoiseNormalFactor: 1 + - _NoiseScale: 1 + - _NormalAnimate: 1 + - _NormalAnimateSpeed: 1 + - _NormalDistortion: 1 + - _NormalDistortionFactor: 0.25 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 0 + - _RimLight: 0 + - _RimScale: 1 + - _RimStrength: 1 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexPath: 1 + - _TexPosMove: 0 + - _TexcoordMove: 0 + - _TexcoordMoveStrength: 0 + - _TextureAnimate: 1 + - _TextureAnimateSpeed: 5 + - _TextureAnimateStyle: 1 + - _TextureBlend: 0 + - _TextureNoise: 0 + - _UVSec: 0 + - _VertexAnimation: 0 + - _ZTest1: 5 + - _ZWrite: 0 + - _xTexcoordMove: 0 + - _yTexcoordMove: 0 + m_Colors: + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 1, g: 1, b: 1, a: 0} + - _RimColor: {r: 1, g: 1, b: 1, a: 1} + - _TintColor: {r: 0, g: 3.7971692, b: 10.358782, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_01_Materials/Effect_01_Decal.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_01_Materials/Effect_01_Decal.mat.meta new file mode 100644 index 0000000..2667546 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_01_Materials/Effect_01_Decal.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 50e6cca96e979eb4b95680ed116ae8c6 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_01_Materials/Effect_01_Decal.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_01_Materials/Effect_01_Lightning.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_01_Materials/Effect_01_Lightning.mat new file mode 100644 index 0000000..fd534c9 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_01_Materials/Effect_01_Lightning.mat @@ -0,0 +1,168 @@ +%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: Effect_01_Lightning + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_ShaderKeywords: IS_MASK_FADE IS_NORMAL_ANIMATE IS_NORMAL_DISTORTION IS_SOFT_PARTICLES + IS_TEXTURE_ANIMATE IS_UNITY_PARTICLE_INSTANCING_ENABLED _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + 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} + - _FixedMaskTex: + m_Texture: {fileID: 10300, guid: 0000000000000000f000000000000000, type: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 3cb02bf457cde1b48af42b67ee413532, type: 3} + m_Scale: {x: 2, y: 2} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 2800000, guid: a56198dae5bb8384d818c961477337e6, 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} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, 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} + m_Floats: + - _BlendDst: 1 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 4 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 1 + - _MaskOffsetFactor: 0.13 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 1 + - _NoiseScale: 0.0175 + - _NormalAnimate: 1 + - _NormalAnimateSpeed: 0.15 + - _NormalDistortion: 1 + - _NormalDistortionFactor: 1 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 0 + - _RimScale: 2 + - _RimStrength: 1 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexPath: 1 + - _TexPosMove: 0.39 + - _TexcoordMove: 0 + - _TexcoordMoveStrength: 20 + - _TextureAnimate: 1 + - _TextureAnimateSpeed: 1 + - _TextureAnimateStyle: 2 + - _TextureBlend: 0 + - _TextureNoise: 0 + - _UVSec: 0 + - _UseTexAnimation: 0 + - _VertexAnimation: 0 + - _ZTest1: 5 + - _ZTest2: 2 + - _ZWrite: 0 + - _xTexcoordMove: -1 + - _yTexcoordMove: -0.44 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 0.1, g: 1, b: 5, a: 1} + - _RimColor: {r: 0.9716981, g: 0, b: 0.009329386, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 1.0302014, g: 3.8520584, b: 9.495769, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_01_Materials/Effect_01_Lightning.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_01_Materials/Effect_01_Lightning.mat.meta new file mode 100644 index 0000000..c8b1d7f --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_01_Materials/Effect_01_Lightning.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 083f6c41f0ec69d4fb29dc64476384df +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_01_Materials/Effect_01_Lightning.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_01_Materials/Effect_01_Lightning_3.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_01_Materials/Effect_01_Lightning_3.mat new file mode 100644 index 0000000..0be138c --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_01_Materials/Effect_01_Lightning_3.mat @@ -0,0 +1,171 @@ +%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: Effect_01_Lightning_3 + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_ShaderKeywords: IS_MASK_FADE IS_NORMAL_ANIMATE IS_NORMAL_DISTORTION IS_SOFT_PARTICLES + IS_TEXCOORD_MOVE IS_TEXTURE_ANIMATE IS_UNITY_PARTICLE_INSTANCING_ENABLED _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + 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} + - _FixedMaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 3cb02bf457cde1b48af42b67ee413532, type: 3} + m_Scale: {x: 2, y: 2} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 2800000, guid: a56198dae5bb8384d818c961477337e6, 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} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, 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} + m_Floats: + - _BlendDst: 1 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 2.5 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 1 + - _MaskOffsetFactor: 0.4 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 1 + - _NoiseScale: 0.0175 + - _NormalAnimate: 1 + - _NormalAnimateSpeed: 0.15 + - _NormalDistortion: 1 + - _NormalDistortionFactor: 1 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 0 + - _RimScale: 2 + - _RimStrength: 1 + - _SecondColor: 0 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexLength: 1 + - _TexPath: 1 + - _TexPosMove: 0.39 + - _TexcoordMove: 1 + - _TexcoordMoveStrength: 1 + - _TextureAnimate: 1 + - _TextureAnimateSpeed: 1 + - _TextureAnimateStyle: 2 + - _TextureBlend: 0 + - _TextureNoise: 0 + - _UVSec: 0 + - _UseTexAnimation: 0 + - _VertexAnimation: 0 + - _ZTest1: 5 + - _ZTest2: 2 + - _ZWrite: 0 + - _xTexcoordMove: 1 + - _yTexcoordMove: 0 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 0.1, g: 1, b: 5, a: 1} + - _RimColor: {r: 0.9716981, g: 0, b: 0.009329386, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 0.32941177, g: 1.2235295, b: 2.9960785, a: 1} + - _TintColor2: {r: 1, g: 1, b: 1, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_01_Materials/Effect_01_Lightning_3.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_01_Materials/Effect_01_Lightning_3.mat.meta new file mode 100644 index 0000000..362fd69 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_01_Materials/Effect_01_Lightning_3.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: b71be41bb657bf649a05a5710e663cc2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_01_Materials/Effect_01_Lightning_3.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_01_Materials/Effect_01_Particle.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_01_Materials/Effect_01_Particle.mat new file mode 100644 index 0000000..1c9f25d --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_01_Materials/Effect_01_Particle.mat @@ -0,0 +1,168 @@ +%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: Effect_01_Particle + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_ShaderKeywords: IS_SOFT_PARTICLES IS_TEXTURE_BLEND IS_UNITY_PARTICLE_INSTANCING_ENABLED + _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + 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} + - _FixedMaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 1071ab01a543d1c4a91150e2ed7bbb08, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, 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} + m_Floats: + - _BlendDst: 1 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 5 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 0 + - _MaskOffsetFactor: 1 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 1 + - _NoiseScale: 1 + - _NormalAnimate: 0 + - _NormalAnimateSpeed: 1 + - _NormalDistortion: 0 + - _NormalDistortionFactor: 1 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 0 + - _RimScale: 1 + - _RimStrength: 1 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexPath: 1 + - _TexPosMove: 0.08 + - _TexcoordMove: 0 + - _TexcoordMoveStrength: 2 + - _TextureAnimate: 0 + - _TextureAnimateSpeed: 1 + - _TextureAnimateStyle: 1 + - _TextureBlend: 1 + - _TextureNoise: 0 + - _UVSec: 0 + - _UseTexAnimation: 0 + - _VertexAnimation: 0 + - _ZTest1: 5 + - _ZTest2: 2 + - _ZWrite: 0 + - _xTexcoordMove: 1 + - _yTexcoordMove: 1 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 1, g: 1, b: 1, a: 0} + - _RimColor: {r: 1, g: 1, b: 1, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 1.007872, g: 2.394315, b: 6.8925447, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_01_Materials/Effect_01_Particle.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_01_Materials/Effect_01_Particle.mat.meta new file mode 100644 index 0000000..ddaf9db --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_01_Materials/Effect_01_Particle.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 67fd80713e02eec4984521af0a19e075 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_01_Materials/Effect_01_Particle.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_01_Materials/Effect_01_Smoke.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_01_Materials/Effect_01_Smoke.mat new file mode 100644 index 0000000..e6cc35f --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_01_Materials/Effect_01_Smoke.mat @@ -0,0 +1,187 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Effect_01_Smoke + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - IS_SOFT_PARTICLES + - IS_TEXTURE_BLEND + m_InvalidKeywords: + - IS_UNITY_PARTICLE_INSTANCING_ENABLED + - _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_LockedProperties: + 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} + - _FixedMaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 9064114c999c2ed468fef5ddd82bd85d, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, 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} + m_Ints: [] + m_Floats: + - _BlendDst: 10 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 3 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactFactor: 1 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _IsRotateAngle: 0 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 0 + - _MaskOffsetFactor: 1 + - _MaxIndex: 2 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 1 + - _NoiseScale: 1 + - _NormalAnimate: 0 + - _NormalAnimateSpeed: 1 + - _NormalDistortion: 0 + - _NormalDistortionFactor: 1 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 0 + - _RimScale: 1 + - _RimStrength: 1 + - _RotateAngle: 0 + - _SecondColor: 0 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexLength: 1 + - _TexPath: 1 + - _TexPosMove: 0.08 + - _TexcoordMove: 0 + - _TexcoordMoveStrength: 2 + - _TexcoordMoveUsingCustom: 0 + - _TextureAnimate: 0 + - _TextureAnimateAdvanced: 0 + - _TextureAnimateSpeed: 1 + - _TextureAnimateStyle: 1 + - _TextureBlend: 1 + - _TextureNoise: 0 + - _UVSec: 0 + - _UseTexAnimation: 0 + - _VertexAnimation: 0 + - _ZTest1: 5 + - _ZTest2: 2 + - _ZWrite: 0 + - _xTexcoordMove: 1 + - _yTexcoordMove: 1 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 1, g: 1, b: 1, a: 0} + - _RimColor: {r: 1, g: 1, b: 1, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 0, g: 0.60399395, b: 2.682554, a: 1} + - _TintColor2: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_01_Materials/Effect_01_Smoke.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_01_Materials/Effect_01_Smoke.mat.meta new file mode 100644 index 0000000..a6ac303 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_01_Materials/Effect_01_Smoke.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 7a2e5d99437fbdb4987de6694d201c34 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_01_Materials/Effect_01_Smoke.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_01_Materials/Effect_01_Tornado.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_01_Materials/Effect_01_Tornado.mat new file mode 100644 index 0000000..ee8e6d9 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_01_Materials/Effect_01_Tornado.mat @@ -0,0 +1,176 @@ +%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: Effect_01_Tornado + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_ShaderKeywords: IS_MASK_FADE IS_NORMAL_ANIMATE IS_NORMAL_DISTORTION IS_SOFT_PARTICLES + IS_TEXCOORD_MOVE IS_TEXTURE_ANIMATE IS_UNITY_PARTICLE_INSTANCING_ENABLED IS_VERTEXANIMATION + _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + 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} + - _FixedMaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 3cb02bf457cde1b48af42b67ee413532, type: 3} + m_Scale: {x: 5, y: 5} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 2800000, guid: 67b8806fa9373774088013c2e7a9a59c, 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} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 2800000, guid: 708d24fa8e8cc804aba4ce74d4e6a1b1, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, 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} + m_Floats: + - _BlendDst: 1 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 4 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactFactor: 1 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 5 + - _MaskCutOut: 1 + - _MaskFade: 1 + - _MaskOffsetFactor: 1 + - _MaxIndex: 5 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 1 + - _NoiseScale: 0.0175 + - _NormalAnimate: 1 + - _NormalAnimateSpeed: 0.15 + - _NormalDistortion: 1 + - _NormalDistortionFactor: 1 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 0 + - _RimScale: 2 + - _RimStrength: 1 + - _SecondColor: 0 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexLength: 1 + - _TexPath: 1 + - _TexPosMove: 0.39 + - _TexcoordMove: 1 + - _TexcoordMoveStrength: 20 + - _TexcoordMoveUsingCustom: 0 + - _TextureAnimate: 1 + - _TextureAnimateAdvanced: 0 + - _TextureAnimateSpeed: 0.15 + - _TextureAnimateStyle: 0 + - _TextureBlend: 0 + - _TextureNoise: 0 + - _UVSec: 0 + - _UseTexAnimation: 0 + - _VertexAnimation: 1 + - _ZTest1: 5 + - _ZTest2: 2 + - _ZWrite: 0 + - _xTexcoordMove: -1 + - _yTexcoordMove: -0.44 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 0.1, g: 1, b: 5, a: 1} + - _RimColor: {r: 0.9716981, g: 0, b: 0.009329386, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 0.4392157, g: 3.2, b: 13.176471, a: 1} + - _TintColor2: {r: 1, g: 1, b: 1, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_01_Materials/Effect_01_Tornado.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_01_Materials/Effect_01_Tornado.mat.meta new file mode 100644 index 0000000..17fb1dd --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_01_Materials/Effect_01_Tornado.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: ca3ffa33bf72fa2469da9d3e4a03e82d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_01_Materials/Effect_01_Tornado.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_01_Materials/Effect_01_TornadoOuterLightning.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_01_Materials/Effect_01_TornadoOuterLightning.mat new file mode 100644 index 0000000..a1ac604 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_01_Materials/Effect_01_TornadoOuterLightning.mat @@ -0,0 +1,169 @@ +%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: Effect_01_TornadoOuterLightning + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_ShaderKeywords: IS_MASK_FADE IS_NORMAL_ANIMATE IS_NORMAL_DISTORTION IS_SOFT_PARTICLES + IS_TEXCOORD_MOVE IS_TEXTURE_ANIMATE IS_UNITY_PARTICLE_INSTANCING_ENABLED IS_VERTEXANIMATION + _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + 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} + - _FixedMaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 3cb02bf457cde1b48af42b67ee413532, type: 3} + m_Scale: {x: 4, y: 4} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 2800000, guid: a56198dae5bb8384d818c961477337e6, 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} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 2800000, guid: 708d24fa8e8cc804aba4ce74d4e6a1b1, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, 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} + m_Floats: + - _BlendDst: 1 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 8 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 1 + - _MaskOffsetFactor: 2.5 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 1 + - _NoiseScale: 0.0175 + - _NormalAnimate: 1 + - _NormalAnimateSpeed: 0.15 + - _NormalDistortion: 1 + - _NormalDistortionFactor: 1 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 0 + - _RimScale: 2 + - _RimStrength: 1 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexPath: 1 + - _TexPosMove: 0.39 + - _TexcoordMove: 1 + - _TexcoordMoveStrength: 20 + - _TextureAnimate: 1 + - _TextureAnimateSpeed: 0.15 + - _TextureAnimateStyle: 0 + - _TextureBlend: 0 + - _TextureNoise: 0 + - _UVSec: 0 + - _UseTexAnimation: 0 + - _VertexAnimation: 1 + - _ZTest1: 5 + - _ZTest2: 2 + - _ZWrite: 0 + - _xTexcoordMove: -1 + - _yTexcoordMove: -0.44 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 0.1, g: 1, b: 4, a: 1} + - _RimColor: {r: 0.9716981, g: 0, b: 0.009329386, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 0.4392157, g: 3.2, b: 13.176471, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_01_Materials/Effect_01_TornadoOuterLightning.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_01_Materials/Effect_01_TornadoOuterLightning.mat.meta new file mode 100644 index 0000000..d2bcea1 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_01_Materials/Effect_01_TornadoOuterLightning.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 15065e276e4401544844e209c50f77b5 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_01_Materials/Effect_01_TornadoOuterLightning.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_01_Materials/Effect_01_TornadoOuterWind.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_01_Materials/Effect_01_TornadoOuterWind.mat new file mode 100644 index 0000000..8e194ec --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_01_Materials/Effect_01_TornadoOuterWind.mat @@ -0,0 +1,169 @@ +%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: Effect_01_TornadoOuterWind + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_ShaderKeywords: IS_MASK_FADE IS_NORMAL_ANIMATE IS_NORMAL_DISTORTION IS_SOFT_PARTICLES + IS_TEXCOORD_MOVE IS_TEXTURE_ANIMATE IS_UNITY_PARTICLE_INSTANCING_ENABLED IS_VERTEXANIMATION + _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + 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} + - _FixedMaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 3cb02bf457cde1b48af42b67ee413532, type: 3} + m_Scale: {x: 4, y: 4} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 2800000, guid: a56198dae5bb8384d818c961477337e6, 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} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 2800000, guid: 708d24fa8e8cc804aba4ce74d4e6a1b1, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, 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} + m_Floats: + - _BlendDst: 1 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 15 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 1 + - _MaskOffsetFactor: 15 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 1 + - _NoiseScale: 0.0175 + - _NormalAnimate: 1 + - _NormalAnimateSpeed: 0.15 + - _NormalDistortion: 1 + - _NormalDistortionFactor: 1 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 0 + - _RimScale: 2 + - _RimStrength: 1 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexPath: 1 + - _TexPosMove: 0.39 + - _TexcoordMove: 1 + - _TexcoordMoveStrength: 20 + - _TextureAnimate: 1 + - _TextureAnimateSpeed: 0.15 + - _TextureAnimateStyle: 0 + - _TextureBlend: 0 + - _TextureNoise: 0 + - _UVSec: 0 + - _UseTexAnimation: 0 + - _VertexAnimation: 1 + - _ZTest1: 5 + - _ZTest2: 2 + - _ZWrite: 0 + - _xTexcoordMove: -1 + - _yTexcoordMove: -0.44 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 0.1, g: 1, b: 4, a: 1} + - _RimColor: {r: 0.9716981, g: 0, b: 0.009329386, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 0.24145363, g: 1.6211886, b: 6.588235, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_01_Materials/Effect_01_TornadoOuterWind.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_01_Materials/Effect_01_TornadoOuterWind.mat.meta new file mode 100644 index 0000000..e17b32f --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_01_Materials/Effect_01_TornadoOuterWind.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 4510aa98ee4cc1b45a9481c96653ab6f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_01_Materials/Effect_01_TornadoOuterWind.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_02_Materials.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_02_Materials.meta new file mode 100644 index 0000000..9502e0a --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_02_Materials.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 96622291a4a16b44eb6212e930ca6e7a +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_02_Materials/Effect_02_BlackHoleRing.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_02_Materials/Effect_02_BlackHoleRing.mat new file mode 100644 index 0000000..0a02a30 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_02_Materials/Effect_02_BlackHoleRing.mat @@ -0,0 +1,152 @@ +%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: Effect_02_BlackHoleRing + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_ShaderKeywords: IS_NORMAL_ANIMATE IS_NORMAL_DISTORTION IS_SOFT_PARTICLES IS_TEXCOORD_MOVE + IS_TEXTURE_ANIMATE IS_UNITY_PARTICLE_INSTANCING_ENABLED + m_LightmapFlags: 4 + m_EnableInstancingVariants: 1 + 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} + - _FixedMaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: ced23a9040cdc9341b98674e347b4844, type: 3} + m_Scale: {x: 1, y: 2} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 2800000, guid: 4ae76b5c814071640a85ca797f484323, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, 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} + m_Floats: + - _BlendDst: 1 + - _BlendSrc: 5 + - _BumpScale: 1 + - _ColorFactor: 7.5 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 0 + - _MaskOffsetFactor: 0 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 0 + - _NoiseNormalFactor: 1 + - _NoiseScale: 1 + - _NormalAnimate: 1 + - _NormalAnimateSpeed: 1 + - _NormalDistortion: 1 + - _NormalDistortionFactor: 0.5 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 0 + - _RimScale: 1 + - _RimStrength: 1 + - _SecondColor: 0 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexLength: 1 + - _TexPath: 1 + - _TexPosMove: 0 + - _TexcoordMove: 1 + - _TexcoordMoveStrength: 2.5 + - _TextureAnimate: 1 + - _TextureAnimateSpeed: 2 + - _TextureAnimateStyle: 2 + - _TextureBlend: 0 + - _TextureNoise: 0 + - _UVSec: 0 + - _UseTexAnimation: 0 + - _VertexAnimation: 0 + - _ZTest1: 5 + - _ZTest2: 2 + - _ZWrite: 0 + - _xTexcoordMove: 1 + - _yTexcoordMove: 0 + m_Colors: + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 1, g: 1, b: 1, a: 0} + - _RimColor: {r: 1, g: 1, b: 1, a: 1} + - _TintColor: {r: 2.9960785, g: 2.6666667, b: 1.6941177, a: 1} + - _TintColor2: {r: 1, g: 1, b: 1, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_02_Materials/Effect_02_BlackHoleRing.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_02_Materials/Effect_02_BlackHoleRing.mat.meta new file mode 100644 index 0000000..1f7d8bc --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_02_Materials/Effect_02_BlackHoleRing.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 45ba12d8f9dc44c47abcc2dd2ab25148 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_02_Materials/Effect_02_BlackHoleRing.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_02_Materials/Effect_02_BlackHoleRing_2.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_02_Materials/Effect_02_BlackHoleRing_2.mat new file mode 100644 index 0000000..1cffdc0 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_02_Materials/Effect_02_BlackHoleRing_2.mat @@ -0,0 +1,147 @@ +%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: Effect_02_BlackHoleRing_2 + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_ShaderKeywords: IS_MASK_FADE IS_NORMAL_ANIMATE IS_NORMAL_DISTORTION IS_SOFT_PARTICLES + IS_TEXCOORD_MOVE IS_TEXTURE_ANIMATE IS_UNITY_PARTICLE_INSTANCING_ENABLED + m_LightmapFlags: 4 + m_EnableInstancingVariants: 1 + 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} + - _FixedMaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: ced23a9040cdc9341b98674e347b4844, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 2800000, guid: 4ae76b5c814071640a85ca797f484323, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 2800000, guid: a56198dae5bb8384d818c961477337e6, 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} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, 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} + m_Floats: + - _BlendDst: 1 + - _BlendSrc: 5 + - _BumpScale: 1 + - _ColorFactor: 5 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 1 + - _MaskOffsetFactor: 1.06 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 0 + - _NoiseNormalFactor: 1 + - _NoiseScale: 1 + - _NormalAnimate: 1 + - _NormalAnimateSpeed: 1 + - _NormalDistortion: 1 + - _NormalDistortionFactor: 0.5 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 0 + - _RimScale: 1 + - _RimStrength: 1 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexPath: 1 + - _TexPosMove: 0 + - _TexcoordMove: 1 + - _TexcoordMoveStrength: 5 + - _TextureAnimate: 1 + - _TextureAnimateSpeed: 1 + - _TextureAnimateStyle: 2 + - _TextureBlend: 0 + - _TextureNoise: 0 + - _UVSec: 0 + - _VertexAnimation: 0 + - _ZTest1: 5 + - _ZWrite: 0 + - _xTexcoordMove: 1 + - _yTexcoordMove: 0 + m_Colors: + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 1, g: 1, b: 1, a: 0} + - _RimColor: {r: 1, g: 1, b: 1, a: 1} + - _TintColor: {r: 7.9245276, g: 7.0532446, b: 4.4808846, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_02_Materials/Effect_02_BlackHoleRing_2.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_02_Materials/Effect_02_BlackHoleRing_2.mat.meta new file mode 100644 index 0000000..d7137ae --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_02_Materials/Effect_02_BlackHoleRing_2.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 9f2d57a07fd831641919534c05316330 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_02_Materials/Effect_02_BlackHoleRing_2.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_02_Materials/Effect_02_BlackHoleSphere.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_02_Materials/Effect_02_BlackHoleSphere.mat new file mode 100644 index 0000000..afe29eb --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_02_Materials/Effect_02_BlackHoleSphere.mat @@ -0,0 +1,174 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Effect_02_BlackHoleSphere + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - IS_ALL_TEXTURE_STRAIGHT_MOVE + - IS_NORMAL_ANIMATE + - IS_NORMAL_DISTORTION + - IS_RIMLIGHT + - IS_SOFT_PARTICLES + - IS_TEXTURE_ANIMATE + - IS_TEXTURE_BLEND + - IS_USE_SECOND_COLOR + m_InvalidKeywords: + - IS_UNITY_PARTICLE_INSTANCING_ENABLED + - _ZWRITE_ON + m_LightmapFlags: 4 + m_EnableInstancingVariants: 1 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_LockedProperties: + 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} + - _FixedMaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 0} + m_Scale: {x: 2, y: 2} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 794ee3411258ee44197c6443fd028cfc, type: 3} + m_Scale: {x: 4, y: 4} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _BlendDst: 10 + - _BlendSrc: 5 + - _BumpScale: 1 + - _ColorFactor: 3 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactFactor: 1 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _IsRotateAngle: 0 + - _Lighting: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 0 + - _MaskOffsetFactor: 1 + - _MaxIndex: 2 + - _Metallic: 0 + - _MixedMove: 1 + - _Mode: 0 + - _NoiseNormalFactor: 1 + - _NoiseScale: 1 + - _NormalAnimate: 1 + - _NormalAnimateSpeed: 4 + - _NormalDistortion: 1 + - _NormalDistortionFactor: 5 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 1 + - _RimScale: 10 + - _RimStrength: 15 + - _RotateAngle: 0 + - _SecondColor: 1 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexLength: 1 + - _TexPath: 1 + - _TexPosMove: -1 + - _TexcoordMove: 0 + - _TexcoordMoveStrength: 10 + - _TexcoordMoveUsingCustom: 0 + - _TextureAnimate: 1 + - _TextureAnimateAdvanced: 0 + - _TextureAnimateSpeed: 5 + - _TextureAnimateStyle: 0 + - _TextureBlend: 1 + - _TextureNoise: 0 + - _UVSec: 0 + - _UseTexAnimation: 0 + - _VertexAnimation: 0 + - _ZTest1: 5 + - _ZTest2: 2 + - _ZWrite: 1 + - _xTexcoordMove: 1 + - _yTexcoordMove: 0 + m_Colors: + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 1, g: 1, b: 1, a: 0} + - _RimColor: {r: 2.2923045, g: 1.8825177, b: 1.1137141, a: 1} + - _TintColor: {r: 0, g: 0, b: 0, a: 1} + - _TintColor2: {r: 0, g: 0, b: 0, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_02_Materials/Effect_02_BlackHoleSphere.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_02_Materials/Effect_02_BlackHoleSphere.mat.meta new file mode 100644 index 0000000..1a33a0d --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_02_Materials/Effect_02_BlackHoleSphere.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 28d7dfadec4093744ad72099b114c4cb +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_02_Materials/Effect_02_BlackHoleSphere.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_02_Materials/Effect_02_Particle.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_02_Materials/Effect_02_Particle.mat new file mode 100644 index 0000000..cb557f7 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_02_Materials/Effect_02_Particle.mat @@ -0,0 +1,166 @@ +%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: Effect_02_Particle + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_ShaderKeywords: IS_SOFT_PARTICLES IS_TEXTURE_BLEND IS_UNITY_PARTICLE_INSTANCING_ENABLED + _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + 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} + - _FixedMaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 1071ab01a543d1c4a91150e2ed7bbb08, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, 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} + m_Floats: + - _BlendDst: 1 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 4 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 0 + - _MaskOffsetFactor: 1 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 1 + - _NoiseScale: 1 + - _NormalAnimate: 0 + - _NormalAnimateSpeed: 1 + - _NormalDistortion: 0 + - _NormalDistortionFactor: 1 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 0 + - _RimScale: 1 + - _RimStrength: 1 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexPath: 1 + - _TexPosMove: 0.08 + - _TexcoordMove: 0 + - _TexcoordMoveStrength: 2 + - _TextureAnimate: 0 + - _TextureAnimateSpeed: 1 + - _TextureAnimateStyle: 1 + - _TextureBlend: 1 + - _TextureNoise: 0 + - _UVSec: 0 + - _VertexAnimation: 0 + - _ZTest1: 5 + - _ZWrite: 0 + - _xTexcoordMove: 1 + - _yTexcoordMove: 1 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 1, g: 1, b: 1, a: 0} + - _RimColor: {r: 1, g: 1, b: 1, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 10.906724, g: 10.842102, b: 5.6077027, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_02_Materials/Effect_02_Particle.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_02_Materials/Effect_02_Particle.mat.meta new file mode 100644 index 0000000..e44206d --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_02_Materials/Effect_02_Particle.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 5580732a08c9df04fa51e54d5922e8d9 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_02_Materials/Effect_02_Particle.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials.meta new file mode 100644 index 0000000..6608923 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 183f11d03c2e9bd4c985884f2976143d +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_Beam.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_Beam.mat new file mode 100644 index 0000000..af9be2c --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_Beam.mat @@ -0,0 +1,168 @@ +%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: Effect_03_Beam + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_ShaderKeywords: IS_MASK_FADE IS_NORMAL_ANIMATE IS_NORMAL_DISTORTION IS_SOFT_PARTICLES + IS_TEXCOORD_MOVE IS_TEXTURE_ANIMATE IS_UNITY_PARTICLE_INSTANCING_ENABLED IS_USE_TEXANIMATION + _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + 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} + - _FixedMaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 3cb02bf457cde1b48af42b67ee413532, type: 3} + m_Scale: {x: 5, y: 5} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 2800000, guid: 3cb02bf457cde1b48af42b67ee413532, type: 3} + m_Scale: {x: 5, y: 5} + m_Offset: {x: 1, y: 1} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 2800000, guid: 708d24fa8e8cc804aba4ce74d4e6a1b1, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, 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} + m_Floats: + - _BlendDst: 10 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 4 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 2 + - _MaskCutOut: 1 + - _MaskFade: 1 + - _MaskOffsetFactor: 1 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 1 + - _NoiseScale: 0.01 + - _NormalAnimate: 1 + - _NormalAnimateSpeed: 0.15 + - _NormalDistortion: 1 + - _NormalDistortionFactor: 1 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 0 + - _RimScale: 2 + - _RimStrength: 1 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexPath: 1 + - _TexPosMove: 1 + - _TexcoordMove: 1 + - _TexcoordMoveStrength: 15 + - _TextureAnimate: 1 + - _TextureAnimateSpeed: 0.15 + - _TextureAnimateStyle: 0 + - _TextureBlend: 0 + - _TextureNoise: 0 + - _UVSec: 0 + - _UseTexAnimation: 1 + - _VertexAnimation: 0 + - _ZTest1: 5 + - _ZWrite: 0 + - _xTexcoordMove: 0 + - _yTexcoordMove: 1 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 0.1, g: 1, b: 2, a: 1} + - _RimColor: {r: 0.9716981, g: 0, b: 0.009329386, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 4.130031, g: 0.13238278, b: 5.613031, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_Beam.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_Beam.mat.meta new file mode 100644 index 0000000..88dd36b --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_Beam.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 4c713a62a901b1d439e91c2e250f770d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_Beam.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_BeamCore.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_BeamCore.mat new file mode 100644 index 0000000..d7bca58 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_BeamCore.mat @@ -0,0 +1,171 @@ +%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: Effect_03_BeamCore + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_ShaderKeywords: IS_NORMAL_ANIMATE IS_NORMAL_DISTORTION IS_SOFT_PARTICLES IS_TEXCOORD_MOVE + IS_TEXTURE_ANIMATE IS_UNITY_PARTICLE_INSTANCING_ENABLED IS_USE_SECOND_COLOR _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + 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} + - _FixedMaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 1dd87d263698bdd489172bf9aa265da1, type: 3} + m_Scale: {x: 5, y: 5} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 2800000, guid: 1dd87d263698bdd489172bf9aa265da1, type: 3} + m_Scale: {x: 20, y: 20} + m_Offset: {x: 1, y: 1} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 2800000, guid: 708d24fa8e8cc804aba4ce74d4e6a1b1, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, 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} + m_Floats: + - _BlendDst: 1 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 5 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 2 + - _MaskCutOut: 1 + - _MaskFade: 0 + - _MaskOffsetFactor: 1 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 1 + - _NoiseScale: 0.01 + - _NormalAnimate: 1 + - _NormalAnimateSpeed: 0.15 + - _NormalDistortion: 1 + - _NormalDistortionFactor: 1 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 0 + - _RimScale: 2 + - _RimStrength: 1 + - _SecondColor: 1 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexLength: 1 + - _TexPath: 1 + - _TexPosMove: 1 + - _TexcoordMove: 1 + - _TexcoordMoveStrength: 30 + - _TextureAnimate: 1 + - _TextureAnimateSpeed: 0.15 + - _TextureAnimateStyle: 0 + - _TextureBlend: 0 + - _TextureNoise: 0 + - _UVSec: 0 + - _UseTexAnimation: 0 + - _VertexAnimation: 0 + - _ZTest1: 5 + - _ZTest2: 2 + - _ZWrite: 0 + - _xTexcoordMove: 0 + - _yTexcoordMove: 1 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 0.1, g: 1, b: 2, a: 1} + - _RimColor: {r: 0.9716981, g: 0, b: 0.009329386, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 3.765703, g: 3.765703, b: 3.765703, a: 1} + - _TintColor2: {r: 2.9960785, g: 2.9960785, b: 2.9960785, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_BeamCore.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_BeamCore.mat.meta new file mode 100644 index 0000000..4dd4655 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_BeamCore.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: b95b4919c2c821449ac723c7246f2d4b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_BeamCore.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_Beam_2.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_Beam_2.mat new file mode 100644 index 0000000..dd0abda --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_Beam_2.mat @@ -0,0 +1,169 @@ +%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: Effect_03_Beam_2 + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_ShaderKeywords: IS_NORMAL_ANIMATE IS_NORMAL_DISTORTION IS_SOFT_PARTICLES IS_TEXCOORD_MOVE + IS_TEXTURE_ANIMATE IS_UNITY_PARTICLE_INSTANCING_ENABLED _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + 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} + - _FixedMaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 1dd87d263698bdd489172bf9aa265da1, type: 3} + m_Scale: {x: 5, y: 5} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 2800000, guid: 1dd87d263698bdd489172bf9aa265da1, type: 3} + m_Scale: {x: 20, y: 20} + m_Offset: {x: 1, y: 1} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 2800000, guid: 708d24fa8e8cc804aba4ce74d4e6a1b1, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, 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} + m_Floats: + - _BlendDst: 1 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 4 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 2 + - _MaskCutOut: 1 + - _MaskFade: 0 + - _MaskOffsetFactor: 1 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 1 + - _NoiseScale: 0.01 + - _NormalAnimate: 1 + - _NormalAnimateSpeed: 0.15 + - _NormalDistortion: 1 + - _NormalDistortionFactor: 1 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 0 + - _RimScale: 2 + - _RimStrength: 1 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexLength: 1 + - _TexPath: 1 + - _TexPosMove: 1 + - _TexcoordMove: 1 + - _TexcoordMoveStrength: 30 + - _TextureAnimate: 1 + - _TextureAnimateSpeed: 0.15 + - _TextureAnimateStyle: 0 + - _TextureBlend: 0 + - _TextureNoise: 0 + - _UVSec: 0 + - _UseTexAnimation: 0 + - _VertexAnimation: 0 + - _ZTest1: 5 + - _ZTest2: 2 + - _ZWrite: 0 + - _xTexcoordMove: 0 + - _yTexcoordMove: 1 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 0.1, g: 1, b: 2, a: 1} + - _RimColor: {r: 0.9716981, g: 0, b: 0.009329386, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 0, g: 0.6349675, b: 4.885221, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_Beam_2.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_Beam_2.mat.meta new file mode 100644 index 0000000..4ac3861 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_Beam_2.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: a128ddadcbe330d4e80ed2b2e42efbc4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_Beam_2.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_Decal.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_Decal.mat new file mode 100644 index 0000000..85aab09 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_Decal.mat @@ -0,0 +1,147 @@ +%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: Effect_03_Decal + m_Shader: {fileID: 4800000, guid: 416d9dd6e46c1c5408e8ed3f0d48c1bc, type: 3} + m_ShaderKeywords: IS_MASK_FADE IS_NORMAL_ANIMATE IS_NORMAL_DISTORTION IS_SOFT_PARTICLES + IS_TEXTURE_ANIMATE + 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} + - _FixedMaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 3cb02bf457cde1b48af42b67ee413532, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 2800000, guid: 62f7d3d5517e2504b8afc94e091397e1, 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} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, 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} + m_Floats: + - _BlendDst: 1 + - _BlendSrc: 5 + - _BumpScale: 1 + - _ColorFactor: 4 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 1 + - _MaskOffsetFactor: 1 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 0 + - _NoiseNormalFactor: 1 + - _NoiseScale: 1 + - _NormalAnimate: 1 + - _NormalAnimateSpeed: 0.25 + - _NormalDistortion: 1 + - _NormalDistortionFactor: 1 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 0 + - _RimLight: 0 + - _RimScale: 1 + - _RimStrength: 1 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexPath: 1 + - _TexPosMove: 0 + - _TexcoordMove: 0 + - _TexcoordMoveStrength: 0 + - _TextureAnimate: 1 + - _TextureAnimateSpeed: 2 + - _TextureAnimateStyle: 1 + - _TextureBlend: 0 + - _TextureNoise: 0 + - _UVSec: 0 + - _VertexAnimation: 0 + - _ZTest1: 5 + - _ZWrite: 0 + - _xTexcoordMove: 0 + - _yTexcoordMove: 0 + m_Colors: + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 1, g: 1, b: 1, a: 0} + - _RimColor: {r: 1, g: 1, b: 1, a: 1} + - _TintColor: {r: 12.364013, g: 0.47920668, b: 0, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_Decal.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_Decal.mat.meta new file mode 100644 index 0000000..96a4e21 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_Decal.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: c76044ca186b1de408a24caa84a771e4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_Decal.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_Mark.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_Mark.mat new file mode 100644 index 0000000..f821917 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_Mark.mat @@ -0,0 +1,165 @@ +%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: Effect_03_Mark + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_ShaderKeywords: IS_SOFT_PARTICLES IS_UNITY_PARTICLE_INSTANCING_ENABLED _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + 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} + - _FixedMaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: ec743a9b30e51bf4ea436ffbf6ffe397, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, 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} + m_Floats: + - _BlendDst: 1 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 2 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 0 + - _MaskOffsetFactor: 1 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 1 + - _NoiseScale: 1 + - _NormalAnimate: 0 + - _NormalAnimateSpeed: 1 + - _NormalDistortion: 0 + - _NormalDistortionFactor: 1 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 0 + - _RimScale: 1 + - _RimStrength: 1 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexPath: 1 + - _TexPosMove: 0.08 + - _TexcoordMove: 0 + - _TexcoordMoveStrength: 2 + - _TextureAnimate: 0 + - _TextureAnimateSpeed: 1 + - _TextureAnimateStyle: 1 + - _TextureBlend: 0 + - _TextureNoise: 0 + - _UVSec: 0 + - _VertexAnimation: 0 + - _ZTest1: 5 + - _ZWrite: 0 + - _xTexcoordMove: 1 + - _yTexcoordMove: 1 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 1, g: 1, b: 1, a: 0} + - _RimColor: {r: 1, g: 1, b: 1, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 0, g: 0.4234999, b: 2.7030084, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_Mark.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_Mark.mat.meta new file mode 100644 index 0000000..717af1c --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_Mark.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: f72b707d657650541bbea147c0b7eafb +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_Mark.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_Mark_2.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_Mark_2.mat new file mode 100644 index 0000000..d83af68 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_Mark_2.mat @@ -0,0 +1,170 @@ +%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: Effect_03_Mark_2 + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_ShaderKeywords: IS_SOFT_PARTICLES IS_UNITY_PARTICLE_INSTANCING_ENABLED _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + 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} + - _FixedMaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: c37da87625a94f44a9c1a2c86ea56682, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, 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} + m_Floats: + - _BlendDst: 1 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 1 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 0 + - _MaskOffsetFactor: 1 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 1 + - _NoiseScale: 1 + - _NormalAnimate: 0 + - _NormalAnimateSpeed: 1 + - _NormalDistortion: 0 + - _NormalDistortionFactor: 1 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 0 + - _RimScale: 1 + - _RimStrength: 1 + - _SecondColor: 0 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexLength: 1 + - _TexPath: 1 + - _TexPosMove: 0.08 + - _TexcoordMove: 0 + - _TexcoordMoveStrength: 2 + - _TextureAnimate: 0 + - _TextureAnimateSpeed: 1 + - _TextureAnimateStyle: 1 + - _TextureBlend: 0 + - _TextureNoise: 0 + - _UVSec: 0 + - _UseTexAnimation: 0 + - _VertexAnimation: 0 + - _ZTest1: 5 + - _ZTest2: 2 + - _ZWrite: 0 + - _xTexcoordMove: 1 + - _yTexcoordMove: 1 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 1, g: 1, b: 1, a: 0} + - _RimColor: {r: 1, g: 1, b: 1, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 0, g: 0.66551226, b: 4.237095, a: 1} + - _TintColor2: {r: 1, g: 1, b: 1, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_Mark_2.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_Mark_2.mat.meta new file mode 100644 index 0000000..25c2d94 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_Mark_2.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 3366722b584bf534ea48211d5e4651ca +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_Mark_2.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_Particle.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_Particle.mat new file mode 100644 index 0000000..649f1fa --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_Particle.mat @@ -0,0 +1,166 @@ +%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: Effect_03_Particle + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_ShaderKeywords: IS_SOFT_PARTICLES IS_TEXTURE_BLEND IS_UNITY_PARTICLE_INSTANCING_ENABLED + _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + 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} + - _FixedMaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 1071ab01a543d1c4a91150e2ed7bbb08, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, 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} + m_Floats: + - _BlendDst: 1 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 4 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 0 + - _MaskOffsetFactor: 1 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 1 + - _NoiseScale: 1 + - _NormalAnimate: 0 + - _NormalAnimateSpeed: 1 + - _NormalDistortion: 0 + - _NormalDistortionFactor: 1 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 0 + - _RimScale: 1 + - _RimStrength: 1 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexPath: 1 + - _TexPosMove: 0.08 + - _TexcoordMove: 0 + - _TexcoordMoveStrength: 2 + - _TextureAnimate: 0 + - _TextureAnimateSpeed: 1 + - _TextureAnimateStyle: 1 + - _TextureBlend: 1 + - _TextureNoise: 0 + - _UVSec: 0 + - _VertexAnimation: 0 + - _ZTest1: 5 + - _ZWrite: 0 + - _xTexcoordMove: 1 + - _yTexcoordMove: 1 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 1, g: 1, b: 1, a: 0} + - _RimColor: {r: 1, g: 1, b: 1, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 7.3772106, g: 0.45369333, b: 0.07724843, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_Particle.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_Particle.mat.meta new file mode 100644 index 0000000..90192f5 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_Particle.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: c11a5da3c59f4d340bc83996fe648c26 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_Particle.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_Particle_2.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_Particle_2.mat new file mode 100644 index 0000000..a19185a --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_Particle_2.mat @@ -0,0 +1,166 @@ +%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: Effect_03_Particle_2 + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_ShaderKeywords: IS_SOFT_PARTICLES IS_TEXTURE_BLEND IS_UNITY_PARTICLE_INSTANCING_ENABLED + _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + 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} + - _FixedMaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 1071ab01a543d1c4a91150e2ed7bbb08, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, 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} + m_Floats: + - _BlendDst: 1 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 5 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 0 + - _MaskOffsetFactor: 1 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 1 + - _NoiseScale: 1 + - _NormalAnimate: 0 + - _NormalAnimateSpeed: 1 + - _NormalDistortion: 0 + - _NormalDistortionFactor: 1 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 0 + - _RimScale: 1 + - _RimStrength: 1 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexPath: 1 + - _TexPosMove: 0.08 + - _TexcoordMove: 0 + - _TexcoordMoveStrength: 2 + - _TextureAnimate: 0 + - _TextureAnimateSpeed: 1 + - _TextureAnimateStyle: 1 + - _TextureBlend: 1 + - _TextureNoise: 0 + - _UVSec: 0 + - _VertexAnimation: 0 + - _ZTest1: 5 + - _ZWrite: 0 + - _xTexcoordMove: 1 + - _yTexcoordMove: 1 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 1, g: 1, b: 1, a: 0} + - _RimColor: {r: 1, g: 1, b: 1, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 0, g: 0.6497977, b: 4.739301, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_Particle_2.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_Particle_2.mat.meta new file mode 100644 index 0000000..dabb703 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_Particle_2.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: a3d57aecc832ae545b4519104feee7e0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_Particle_2.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_Particle_3.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_Particle_3.mat new file mode 100644 index 0000000..3a04249 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_Particle_3.mat @@ -0,0 +1,166 @@ +%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: Effect_03_Particle_3 + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_ShaderKeywords: IS_SOFT_PARTICLES IS_TEXTURE_BLEND IS_UNITY_PARTICLE_INSTANCING_ENABLED + _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + 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} + - _FixedMaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 1071ab01a543d1c4a91150e2ed7bbb08, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, 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} + m_Floats: + - _BlendDst: 1 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 4.5 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 0 + - _MaskOffsetFactor: 1 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 1 + - _NoiseScale: 1 + - _NormalAnimate: 0 + - _NormalAnimateSpeed: 1 + - _NormalDistortion: 0 + - _NormalDistortionFactor: 1 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 0 + - _RimScale: 1 + - _RimStrength: 1 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexPath: 1 + - _TexPosMove: 0.08 + - _TexcoordMove: 0 + - _TexcoordMoveStrength: 2 + - _TextureAnimate: 0 + - _TextureAnimateSpeed: 1 + - _TextureAnimateStyle: 1 + - _TextureBlend: 1 + - _TextureNoise: 0 + - _UVSec: 0 + - _VertexAnimation: 0 + - _ZTest1: 5 + - _ZWrite: 0 + - _xTexcoordMove: 1 + - _yTexcoordMove: 1 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 1, g: 1, b: 1, a: 0} + - _RimColor: {r: 1, g: 1, b: 1, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 7.4716983, g: 0.45817038, b: 2.4929025, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_Particle_3.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_Particle_3.mat.meta new file mode 100644 index 0000000..f398960 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_Particle_3.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 078a861a823668f4ebbea85c59748dee +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_Particle_3.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_Smoke.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_Smoke.mat new file mode 100644 index 0000000..8315a3e --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_Smoke.mat @@ -0,0 +1,166 @@ +%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: Effect_03_Smoke + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_ShaderKeywords: IS_SOFT_PARTICLES IS_TEXTURE_BLEND IS_UNITY_PARTICLE_INSTANCING_ENABLED + _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + 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} + - _FixedMaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 3eed06b33b3f2a14e8740685c6ce348b, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, 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} + m_Floats: + - _BlendDst: 10 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 2 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 0 + - _MaskOffsetFactor: 1 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 1 + - _NoiseScale: 1 + - _NormalAnimate: 0 + - _NormalAnimateSpeed: 1 + - _NormalDistortion: 0 + - _NormalDistortionFactor: 1 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 0 + - _RimScale: 1 + - _RimStrength: 1 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexPath: 1 + - _TexPosMove: 0.08 + - _TexcoordMove: 0 + - _TexcoordMoveStrength: 2 + - _TextureAnimate: 0 + - _TextureAnimateSpeed: 1 + - _TextureAnimateStyle: 1 + - _TextureBlend: 1 + - _TextureNoise: 0 + - _UVSec: 0 + - _VertexAnimation: 0 + - _ZTest1: 5 + - _ZWrite: 0 + - _xTexcoordMove: 1 + - _yTexcoordMove: 1 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 1, g: 1, b: 1, a: 0} + - _RimColor: {r: 1, g: 1, b: 1, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 4.4344544, g: 0.21921122, b: 0, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_Smoke.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_Smoke.mat.meta new file mode 100644 index 0000000..f086aec --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_Smoke.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: fad1fefe4fe8f9f4e8073a7360844968 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_03_Materials/Effect_03_Smoke.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_04_Materials.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_04_Materials.meta new file mode 100644 index 0000000..d19ceaa --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_04_Materials.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: bcd0a4e2ae0a62c4490d24974870a525 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_04_Materials/Effect_04_Line.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_04_Materials/Effect_04_Line.mat new file mode 100644 index 0000000..83ff383 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_04_Materials/Effect_04_Line.mat @@ -0,0 +1,168 @@ +%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: Effect_04_Line + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_ShaderKeywords: IS_LINEPASS IS_NORMAL_ANIMATE IS_NORMAL_DISTORTION IS_SOFT_PARTICLES + IS_TEXTURE_ANIMATE IS_UNITY_PARTICLE_INSTANCING_ENABLED _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + 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} + - _FixedMaskTex: + m_Texture: {fileID: 10300, guid: 0000000000000000f000000000000000, type: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 10300, guid: 0000000000000000f000000000000000, type: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: ced23a9040cdc9341b98674e347b4844, type: 3} + m_Scale: {x: 2, y: 2} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 6ff533708a654f048a86aebdf9a39df5, type: 3} + m_Scale: {x: 5, y: 5} + 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: + - _BlendDst: 1 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 15 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 1 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 0 + - _MaskOffsetFactor: 1 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 1 + - _NoiseScale: 1 + - _NormalAnimate: 1 + - _NormalAnimateSpeed: 5 + - _NormalDistortion: 1 + - _NormalDistortionFactor: 0.5 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 0 + - _RimScale: 1 + - _RimStrength: 1 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexPath: 1 + - _TexPosMove: 0.08 + - _TexcoordMove: 0 + - _TexcoordMoveStrength: 2 + - _TextureAnimate: 1 + - _TextureAnimateSpeed: 2 + - _TextureAnimateStyle: 2 + - _TextureBlend: 0 + - _TextureNoise: 0 + - _UVSec: 0 + - _UseTexAnimation: 0 + - _VertexAnimation: 0 + - _ZTest1: 5 + - _ZTest2: 2 + - _ZWrite: 0 + - _xTexcoordMove: 1 + - _yTexcoordMove: 1 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 1, g: 1, b: 1, a: 0} + - _RimColor: {r: 1, g: 1, b: 1, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 0.4392157, g: 2.792157, b: 5.992157, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_04_Materials/Effect_04_Line.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_04_Materials/Effect_04_Line.mat.meta new file mode 100644 index 0000000..938127c --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_04_Materials/Effect_04_Line.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: bfe915b95b8c4da459b159adf3aa495d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_04_Materials/Effect_04_Line.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_04_Materials/Effect_04_Mark.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_04_Materials/Effect_04_Mark.mat new file mode 100644 index 0000000..8ec6acb --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_04_Materials/Effect_04_Mark.mat @@ -0,0 +1,167 @@ +%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: Effect_04_Mark + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_ShaderKeywords: IS_SOFT_PARTICLES IS_UNITY_PARTICLE_INSTANCING_ENABLED _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + 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} + - _FixedMaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: ec743a9b30e51bf4ea436ffbf6ffe397, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, 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} + m_Floats: + - _BlendDst: 1 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 2.5 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 0 + - _MaskOffsetFactor: 1 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 1 + - _NoiseScale: 1 + - _NormalAnimate: 0 + - _NormalAnimateSpeed: 1 + - _NormalDistortion: 0 + - _NormalDistortionFactor: 1 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 0 + - _RimScale: 1 + - _RimStrength: 1 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexPath: 1 + - _TexPosMove: 0.08 + - _TexcoordMove: 0 + - _TexcoordMoveStrength: 2 + - _TextureAnimate: 0 + - _TextureAnimateSpeed: 1 + - _TextureAnimateStyle: 1 + - _TextureBlend: 0 + - _TextureNoise: 0 + - _UVSec: 0 + - _UseTexAnimation: 0 + - _VertexAnimation: 0 + - _ZTest1: 5 + - _ZTest2: 2 + - _ZWrite: 0 + - _xTexcoordMove: 1 + - _yTexcoordMove: 1 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 1, g: 1, b: 1, a: 0} + - _RimColor: {r: 1, g: 1, b: 1, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 0.0452716, g: 0.31223583, b: 1.371082, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_04_Materials/Effect_04_Mark.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_04_Materials/Effect_04_Mark.mat.meta new file mode 100644 index 0000000..a5bf787 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_04_Materials/Effect_04_Mark.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: efec0e3b3ec087c43a05559a830cd1e0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_04_Materials/Effect_04_Mark.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_04_Materials/Effect_04_Mark_2.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_04_Materials/Effect_04_Mark_2.mat new file mode 100644 index 0000000..d2071f0 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_04_Materials/Effect_04_Mark_2.mat @@ -0,0 +1,167 @@ +%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: Effect_04_Mark_2 + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_ShaderKeywords: IS_SOFT_PARTICLES IS_UNITY_PARTICLE_INSTANCING_ENABLED _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + 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} + - _FixedMaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 3472824716c9c154ea51bbbea1317189, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, 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} + m_Floats: + - _BlendDst: 1 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 2.5 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 0 + - _MaskOffsetFactor: 1 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 1 + - _NoiseScale: 1 + - _NormalAnimate: 0 + - _NormalAnimateSpeed: 1 + - _NormalDistortion: 0 + - _NormalDistortionFactor: 1 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 0 + - _RimScale: 1 + - _RimStrength: 1 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexPath: 1 + - _TexPosMove: 0.08 + - _TexcoordMove: 0 + - _TexcoordMoveStrength: 2 + - _TextureAnimate: 0 + - _TextureAnimateSpeed: 1 + - _TextureAnimateStyle: 1 + - _TextureBlend: 0 + - _TextureNoise: 0 + - _UVSec: 0 + - _UseTexAnimation: 0 + - _VertexAnimation: 0 + - _ZTest1: 5 + - _ZTest2: 2 + - _ZWrite: 0 + - _xTexcoordMove: 1 + - _yTexcoordMove: 1 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 1, g: 1, b: 1, a: 0} + - _RimColor: {r: 1, g: 1, b: 1, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 0.0452716, g: 0.31223583, b: 1.371082, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_04_Materials/Effect_04_Mark_2.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_04_Materials/Effect_04_Mark_2.mat.meta new file mode 100644 index 0000000..c0264d4 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_04_Materials/Effect_04_Mark_2.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 7a41530a243a4b942a90688e5790e75e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_04_Materials/Effect_04_Mark_2.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_04_Materials/Effect_04_Particle.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_04_Materials/Effect_04_Particle.mat new file mode 100644 index 0000000..01e23a7 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_04_Materials/Effect_04_Particle.mat @@ -0,0 +1,168 @@ +%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: Effect_04_Particle + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_ShaderKeywords: IS_SOFT_PARTICLES IS_TEXTURE_BLEND IS_UNITY_PARTICLE_INSTANCING_ENABLED + _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + 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} + - _FixedMaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 1071ab01a543d1c4a91150e2ed7bbb08, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, 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} + m_Floats: + - _BlendDst: 1 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 6 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 0 + - _MaskOffsetFactor: 1 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 1 + - _NoiseScale: 1 + - _NormalAnimate: 0 + - _NormalAnimateSpeed: 1 + - _NormalDistortion: 0 + - _NormalDistortionFactor: 1 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 0 + - _RimScale: 1 + - _RimStrength: 1 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexPath: 1 + - _TexPosMove: 0.08 + - _TexcoordMove: 0 + - _TexcoordMoveStrength: 2 + - _TextureAnimate: 0 + - _TextureAnimateSpeed: 1 + - _TextureAnimateStyle: 1 + - _TextureBlend: 1 + - _TextureNoise: 0 + - _UVSec: 0 + - _UseTexAnimation: 0 + - _VertexAnimation: 0 + - _ZTest1: 5 + - _ZTest2: 2 + - _ZWrite: 0 + - _xTexcoordMove: 1 + - _yTexcoordMove: 1 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 1, g: 1, b: 1, a: 0} + - _RimColor: {r: 1, g: 1, b: 1, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 0.44564727, g: 2.5030644, b: 5.5574827, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_04_Materials/Effect_04_Particle.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_04_Materials/Effect_04_Particle.mat.meta new file mode 100644 index 0000000..b63cc79 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_04_Materials/Effect_04_Particle.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: c9bfd5e8964f1df4fa5ca56fd54b429c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_04_Materials/Effect_04_Particle.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_04_Materials/Effect_04_Slash.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_04_Materials/Effect_04_Slash.mat new file mode 100644 index 0000000..dae0236 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_04_Materials/Effect_04_Slash.mat @@ -0,0 +1,166 @@ +%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: Effect_04_Slash + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_ShaderKeywords: IS_SOFT_PARTICLES IS_TEXTURE_BLEND IS_UNITY_PARTICLE_INSTANCING_ENABLED + _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + 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} + - _FixedMaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 3b28dc0705e39bd4e8329169d834f55a, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, 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} + m_Floats: + - _BlendDst: 10 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 2 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 0 + - _MaskOffsetFactor: 1 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 1 + - _NoiseScale: 1 + - _NormalAnimate: 0 + - _NormalAnimateSpeed: 1 + - _NormalDistortion: 0 + - _NormalDistortionFactor: 1 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 0 + - _RimScale: 1 + - _RimStrength: 1 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexPath: 1 + - _TexPosMove: 0.08 + - _TexcoordMove: 0 + - _TexcoordMoveStrength: 2 + - _TextureAnimate: 0 + - _TextureAnimateSpeed: 1 + - _TextureAnimateStyle: 1 + - _TextureBlend: 1 + - _TextureNoise: 0 + - _UVSec: 0 + - _VertexAnimation: 0 + - _ZTest1: 5 + - _ZWrite: 0 + - _xTexcoordMove: 1 + - _yTexcoordMove: 1 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 1, g: 1, b: 1, a: 0} + - _RimColor: {r: 1, g: 1, b: 1, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 0, g: 0.594022, b: 1.5332189, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_04_Materials/Effect_04_Slash.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_04_Materials/Effect_04_Slash.mat.meta new file mode 100644 index 0000000..3b7e6c1 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_04_Materials/Effect_04_Slash.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 56a419b91af352342a26947930febf37 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_04_Materials/Effect_04_Slash.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_04_Materials/Effect_04_Sphere.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_04_Materials/Effect_04_Sphere.mat new file mode 100644 index 0000000..6e6a2e0 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_04_Materials/Effect_04_Sphere.mat @@ -0,0 +1,170 @@ +%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: Effect_04_Sphere + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_ShaderKeywords: IS_NORMAL_ANIMATE IS_NORMAL_DISTORTION IS_RIMLIGHT IS_SOFT_PARTICLES + IS_TEXCOORD_MOVE IS_TEXTURE_ANIMATE IS_UNITY_PARTICLE_INSTANCING_ENABLED _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + 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} + - _FixedMaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 3cb02bf457cde1b48af42b67ee413532, type: 3} + m_Scale: {x: 5, y: 5} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 2800000, guid: 67b8806fa9373774088013c2e7a9a59c, 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} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, 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} + m_Floats: + - _BlendDst: 10 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 4 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 2 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 0 + - _MaskOffsetFactor: 1 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 1 + - _NoiseScale: 0 + - _NormalAnimate: 1 + - _NormalAnimateSpeed: 0.15 + - _NormalDistortion: 1 + - _NormalDistortionFactor: 1 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 1 + - _RimScale: 4 + - _RimStrength: 2 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexPath: 1 + - _TexPosMove: -1 + - _TexcoordMove: 1 + - _TexcoordMoveStrength: 30 + - _TextureAnimate: 1 + - _TextureAnimateSpeed: 1 + - _TextureAnimateStyle: 0 + - _TextureBlend: 0 + - _TextureNoise: 0 + - _UVSec: 0 + - _UseTexAnimation: 0 + - _VertexAnimation: 0 + - _ZTest: 5 + - _ZTest1: 5 + - _ZTest2: 2 + - _ZTest3: 3 + - _ZWrite: 0 + - _xTexcoordMove: 0 + - _yTexcoordMove: -1 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 0, g: 0, b: 0, a: 0} + - _RimColor: {r: 0.21960784, g: 1.8196079, b: 6.6509805, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 0.4392157, g: 3.2, b: 13.176471, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_04_Materials/Effect_04_Sphere.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_04_Materials/Effect_04_Sphere.mat.meta new file mode 100644 index 0000000..3288345 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_04_Materials/Effect_04_Sphere.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 685e8eed5417c074f841bf803e513a10 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_04_Materials/Effect_04_Sphere.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_05_Materials.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_05_Materials.meta new file mode 100644 index 0000000..7c33c9c --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_05_Materials.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e1d36f42d8319ff4388f1dd110f82a91 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_05_Materials/Effect_05_Particle.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_05_Materials/Effect_05_Particle.mat new file mode 100644 index 0000000..20a2333 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_05_Materials/Effect_05_Particle.mat @@ -0,0 +1,167 @@ +%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: Effect_05_Particle + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_ShaderKeywords: IS_SOFT_PARTICLES IS_UNITY_PARTICLE_INSTANCING_ENABLED _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + 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} + - _FixedMaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 1071ab01a543d1c4a91150e2ed7bbb08, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, 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} + m_Floats: + - _BlendDst: 1 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 5 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 0 + - _MaskOffsetFactor: 1 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 1 + - _NoiseScale: 1 + - _NormalAnimate: 0 + - _NormalAnimateSpeed: 1 + - _NormalDistortion: 0 + - _NormalDistortionFactor: 1 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 0 + - _RimScale: 1 + - _RimStrength: 1 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexPath: 1 + - _TexPosMove: 0.08 + - _TexcoordMove: 0 + - _TexcoordMoveStrength: 2 + - _TextureAnimate: 0 + - _TextureAnimateSpeed: 1 + - _TextureAnimateStyle: 1 + - _TextureBlend: 0 + - _TextureNoise: 0 + - _UVSec: 0 + - _UseTexAnimation: 0 + - _VertexAnimation: 0 + - _ZTest1: 5 + - _ZTest2: 2 + - _ZWrite: 0 + - _xTexcoordMove: 1 + - _yTexcoordMove: 1 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 1, g: 1, b: 1, a: 0} + - _RimColor: {r: 1, g: 1, b: 1, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 4.237095, g: 0.5102261, b: 0.06655122, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_05_Materials/Effect_05_Particle.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_05_Materials/Effect_05_Particle.mat.meta new file mode 100644 index 0000000..2eb050d --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_05_Materials/Effect_05_Particle.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: f884c8bb330ae9e43b7aee6a95198b49 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_05_Materials/Effect_05_Particle.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials.meta new file mode 100644 index 0000000..4b8a806 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 92f7250169141ab498e6b5f867d646b1 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Line.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Line.mat new file mode 100644 index 0000000..d9d21b5 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Line.mat @@ -0,0 +1,170 @@ +%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: Effect_12_Line + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_ShaderKeywords: IS_LINEPASS IS_MASK_FADE IS_NORMAL_ANIMATE IS_NORMAL_DISTORTION + IS_SOFT_PARTICLES IS_UNITY_PARTICLE_INSTANCING_ENABLED _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + 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} + - _FixedMaskTex: + m_Texture: {fileID: 10300, guid: 0000000000000000f000000000000000, type: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 10300, guid: 0000000000000000f000000000000000, type: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 67b8806fa9373774088013c2e7a9a59c, type: 3} + m_Scale: {x: 2, y: 2} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: b7be54e9e31a54a4186c5d249c987d21, 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} + m_Floats: + - IS_USE_TEXANIMATION: 0 + - _BlendDst: 10 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 4 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 1 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 1 + - _MaskOffsetFactor: 1 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 1 + - _NoiseScale: 1 + - _NormalAnimate: 1 + - _NormalAnimateSpeed: 2 + - _NormalDistortion: 1 + - _NormalDistortionFactor: 2 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 0 + - _RimScale: 1 + - _RimStrength: 1 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexLength: 1 + - _TexPath: 1 + - _TexPosMove: 0.08 + - _TexcoordMove: 0 + - _TexcoordMoveStrength: 2 + - _TextureAnimate: 0 + - _TextureAnimateSpeed: 3 + - _TextureAnimateStyle: 2 + - _TextureBlend: 0 + - _TextureNoise: 0 + - _UVSec: 0 + - _UseTexAnimation: 0 + - _VertexAnimation: 0 + - _ZTest1: 5 + - _ZTest2: 6 + - _ZWrite: 0 + - _xTexcoordMove: 1 + - _yTexcoordMove: 1 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 1, g: 1, b: 1, a: 0} + - _RimColor: {r: 1, g: 1, b: 1, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 9.673021, g: 0, b: 0, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Line.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Line.mat.meta new file mode 100644 index 0000000..4d10e9b --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Line.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 96144ad53b1beca46a2ea2bd5764cca0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Line.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Particle.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Particle.mat new file mode 100644 index 0000000..9f78ec6 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Particle.mat @@ -0,0 +1,168 @@ +%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: Effect_12_Particle + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_ShaderKeywords: IS_SOFT_PARTICLES IS_TEXTURE_BLEND IS_UNITY_PARTICLE_INSTANCING_ENABLED + _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + 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} + - _FixedMaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 1071ab01a543d1c4a91150e2ed7bbb08, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, 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} + m_Floats: + - _BlendDst: 1 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 5 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 0 + - _MaskOffsetFactor: 1 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 1 + - _NoiseScale: 1 + - _NormalAnimate: 0 + - _NormalAnimateSpeed: 1 + - _NormalDistortion: 0 + - _NormalDistortionFactor: 1 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 0 + - _RimScale: 1 + - _RimStrength: 1 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexPath: 1 + - _TexPosMove: 0.08 + - _TexcoordMove: 0 + - _TexcoordMoveStrength: 2 + - _TextureAnimate: 0 + - _TextureAnimateSpeed: 1 + - _TextureAnimateStyle: 1 + - _TextureBlend: 1 + - _TextureNoise: 0 + - _UVSec: 0 + - _UseTexAnimation: 0 + - _VertexAnimation: 0 + - _ZTest1: 5 + - _ZTest2: 6 + - _ZWrite: 0 + - _xTexcoordMove: 1 + - _yTexcoordMove: 1 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 1, g: 1, b: 1, a: 0} + - _RimColor: {r: 1, g: 1, b: 1, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 5.0185623, g: 0, b: 0.14022, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Particle.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Particle.mat.meta new file mode 100644 index 0000000..0193b89 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Particle.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 2e4b0e382b642cd4caf45d7edfd24c84 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Particle.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Particle_2.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Particle_2.mat new file mode 100644 index 0000000..166350f --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Particle_2.mat @@ -0,0 +1,169 @@ +%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: Effect_12_Particle_2 + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_ShaderKeywords: IS_SOFT_PARTICLES IS_TEXTURE_BLEND IS_UNITY_PARTICLE_INSTANCING_ENABLED + _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + 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} + - _FixedMaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 1071ab01a543d1c4a91150e2ed7bbb08, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, 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} + m_Floats: + - _BlendDst: 1 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 5 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 0 + - _MaskOffsetFactor: 1 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 1 + - _NoiseScale: 1 + - _NormalAnimate: 0 + - _NormalAnimateSpeed: 1 + - _NormalDistortion: 0 + - _NormalDistortionFactor: 1 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 0 + - _RimScale: 1 + - _RimStrength: 1 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexLength: 1 + - _TexPath: 1 + - _TexPosMove: 0.08 + - _TexcoordMove: 0 + - _TexcoordMoveStrength: 2 + - _TextureAnimate: 0 + - _TextureAnimateSpeed: 1 + - _TextureAnimateStyle: 1 + - _TextureBlend: 1 + - _TextureNoise: 0 + - _UVSec: 0 + - _UseTexAnimation: 0 + - _VertexAnimation: 0 + - _ZTest1: 5 + - _ZTest2: 6 + - _ZWrite: 0 + - _xTexcoordMove: 1 + - _yTexcoordMove: 1 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 1, g: 1, b: 1, a: 0} + - _RimColor: {r: 1, g: 1, b: 1, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 21.743965, g: 0.20251918, b: 0, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Particle_2.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Particle_2.mat.meta new file mode 100644 index 0000000..8b27f3d --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Particle_2.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 4f8f17013d3ba594cb207a29b9c4f133 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Particle_2.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Ring.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Ring.mat new file mode 100644 index 0000000..32345b8 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Ring.mat @@ -0,0 +1,169 @@ +%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: Effect_12_Ring + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_ShaderKeywords: IS_NORMAL_DISTORTION IS_SOFT_PARTICLES IS_TEXTURE_BLEND IS_UNITY_PARTICLE_INSTANCING_ENABLED + _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + 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} + - _FixedMaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 9930bb9d99db3a64586577b4f1935f9d, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseNormal: + m_Texture: {fileID: 2800000, guid: 708d24fa8e8cc804aba4ce74d4e6a1b1, type: 3} + m_Scale: {x: 10, y: 10} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 3791c7758be5e794cb38246523166a2b, type: 3} + m_Scale: {x: 10, y: 10} + 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: + - _BlendDst: 1 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 10 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 0 + - _MaskOffsetFactor: 1 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 0.001 + - _NoiseScale: 1 + - _NormalAnimate: 0 + - _NormalAnimateSpeed: 1 + - _NormalDistortion: 1 + - _NormalDistortionFactor: 0.015 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 0 + - _RimScale: 1 + - _RimStrength: 1 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexLength: 1 + - _TexPath: 1 + - _TexPosMove: 0.08 + - _TexcoordMove: 0 + - _TexcoordMoveStrength: 2 + - _TextureAnimate: 0 + - _TextureAnimateSpeed: 1 + - _TextureAnimateStyle: 1 + - _TextureBlend: 1 + - _TextureNoise: 0 + - _UVSec: 0 + - _UseTexAnimation: 0 + - _VertexAnimation: 0 + - _ZTest1: 5 + - _ZTest2: 6 + - _ZWrite: 0 + - _xTexcoordMove: 1 + - _yTexcoordMove: 1 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 1, g: 1, b: 1, a: 0} + - _RimColor: {r: 1, g: 1, b: 1, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 5.454018, g: 0.054513536, b: 0, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Ring.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Ring.mat.meta new file mode 100644 index 0000000..c444fb0 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Ring.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 8a10cf74b8e84d147809e560d60b78f7 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Ring.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Smoke.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Smoke.mat new file mode 100644 index 0000000..f97b879 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Smoke.mat @@ -0,0 +1,188 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Effect_12_Smoke + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - IS_NORMAL_DISTORTION + - IS_SOFT_PARTICLES + - IS_USE_SECOND_COLOR + m_InvalidKeywords: + - IS_UNITY_PARTICLE_INSTANCING_ENABLED + - _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_LockedProperties: + 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} + - _FixedMaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 3eed06b33b3f2a14e8740685c6ce348b, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, type: 3} + m_Scale: {x: 10, y: 10} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _BlendDst: 10 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 1 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactFactor: 1 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _IsRotateAngle: 0 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 0 + - _MaskOffsetFactor: 1 + - _MaxIndex: 2 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 1 + - _NoiseScale: 1 + - _NormalAnimate: 0 + - _NormalAnimateSpeed: 1 + - _NormalDistortion: 1 + - _NormalDistortionFactor: 0.1 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 0 + - _RimScale: 1 + - _RimStrength: 1 + - _RotateAngle: 0 + - _SecondColor: 1 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexLength: 1 + - _TexPath: 1 + - _TexPosMove: 0.08 + - _TexcoordMove: 0 + - _TexcoordMoveStrength: 2 + - _TexcoordMoveUsingCustom: 0 + - _TextureAnimate: 0 + - _TextureAnimateAdvanced: 0 + - _TextureAnimateSpeed: 1 + - _TextureAnimateStyle: 1 + - _TextureBlend: 0 + - _TextureNoise: 0 + - _UVSec: 0 + - _UseTexAnimation: 0 + - _VertexAnimation: 0 + - _ZTest1: 5 + - _ZTest2: 6 + - _ZWrite: 0 + - _xTexcoordMove: 1 + - _yTexcoordMove: 1 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 1, g: 1, b: 1, a: 0} + - _RimColor: {r: 1, g: 1, b: 1, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 0.7169812, g: 0, b: 0.0076274155, a: 1} + - _TintColor2: {r: 0.7156938, g: 0, b: 0.0074990317, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Smoke.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Smoke.mat.meta new file mode 100644 index 0000000..5978779 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Smoke.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 96f7b13dbdcf6c5479799bfddf48f0d8 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Smoke.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Sphere.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Sphere.mat new file mode 100644 index 0000000..ef69377 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Sphere.mat @@ -0,0 +1,194 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Effect_12_Sphere + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - IS_NORMAL_ANIMATE + - IS_NORMAL_DISTORTION + - IS_RIMLIGHT + - IS_SOFT_PARTICLES + - IS_TEXTURE_ANIMATE + - IS_TEXTURE_BLEND + - IS_USE_SECOND_COLOR + m_InvalidKeywords: + - IS_UNITY_PARTICLE_INSTANCING_ENABLED + - _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 2998 + stringTagMap: {} + disabledShaderPasses: [] + m_LockedProperties: + 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} + - _FixedMaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 3cb02bf457cde1b48af42b67ee413532, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 2800000, guid: a1e4bc17d92703c46b85af820c49f976, 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} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, type: 3} + m_Scale: {x: 4, y: 4} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _BlendDst: 10 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 2 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 2 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactFactor: 1 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _IsRotateAngle: 0 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 0 + - _MaskOffsetFactor: 15 + - _MaxIndex: 2 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 1 + - _NoiseScale: 0 + - _NormalAnimate: 1 + - _NormalAnimateSpeed: 0.15 + - _NormalDistortion: 1 + - _NormalDistortionFactor: 1 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 1 + - _RimScale: 15 + - _RimStrength: 12.5 + - _RotateAngle: 0 + - _SecondColor: 1 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexLength: 1 + - _TexPath: 1 + - _TexPosMove: -1 + - _TexcoordMove: 0 + - _TexcoordMoveStrength: 5 + - _TexcoordMoveUsingCustom: 0 + - _TextureAnimate: 1 + - _TextureAnimateAdvanced: 0 + - _TextureAnimateSpeed: 1 + - _TextureAnimateStyle: 2 + - _TextureBlend: 1 + - _TextureNoise: 0 + - _UVSec: 0 + - _UseTexAnimation: 0 + - _VertexAnimation: 0 + - _ZTest: 5 + - _ZTest1: 6 + - _ZTest2: 6 + - _ZTest3: 2 + - _ZWrite: 0 + - _xTexcoordMove: -1 + - _yTexcoordMove: 0 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 0, g: 0, b: 0, a: 0} + - _RimColor: {r: 8.235757, g: 0.15805528, b: 0, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 0, g: 0, b: 0, a: 0.21568628} + - _TintColor2: {r: 0, g: 0, b: 0, a: 0.21568628} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Sphere.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Sphere.mat.meta new file mode 100644 index 0000000..3045c8d --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Sphere.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 21d4b7d65e201b749a51390de039cc8a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Sphere.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Sphere_2.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Sphere_2.mat new file mode 100644 index 0000000..37a81d8 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Sphere_2.mat @@ -0,0 +1,174 @@ +%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: Effect_12_Sphere_2 + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_ShaderKeywords: IS_NORMAL_ANIMATE IS_NORMAL_DISTORTION IS_RIMLIGHT IS_SOFT_PARTICLES + IS_TEXTURE_ANIMATE IS_UNITY_PARTICLE_INSTANCING_ENABLED _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 2998 + 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} + - _FixedMaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 3cb02bf457cde1b48af42b67ee413532, type: 3} + m_Scale: {x: 5, y: 5} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 2800000, guid: a1e4bc17d92703c46b85af820c49f976, 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} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, type: 3} + m_Scale: {x: 2, y: 2} + 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: + - _BlendDst: 10 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 4 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 2 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 0 + - _MaskOffsetFactor: 15 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 1 + - _NoiseScale: 0 + - _NormalAnimate: 1 + - _NormalAnimateSpeed: 0.05 + - _NormalDistortion: 1 + - _NormalDistortionFactor: 5 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 1 + - _RimScale: 10 + - _RimStrength: 15 + - _SecondColor: 0 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexLength: 1 + - _TexPath: 1 + - _TexPosMove: -1 + - _TexcoordMove: 0 + - _TexcoordMoveStrength: 5 + - _TexcoordMoveUsingCustom: 0 + - _TextureAnimate: 1 + - _TextureAnimateSpeed: 4 + - _TextureAnimateStyle: 2 + - _TextureBlend: 0 + - _TextureNoise: 0 + - _UVSec: 0 + - _UseTexAnimation: 0 + - _VertexAnimation: 0 + - _ZTest: 5 + - _ZTest1: 6 + - _ZTest2: 6 + - _ZTest3: 2 + - _ZWrite: 0 + - _xTexcoordMove: -1 + - _yTexcoordMove: 0 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 0, g: 0, b: 0, a: 0} + - _RimColor: {r: 3.1693587, g: 0.104648694, b: 0.13319358, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 1, g: 0, b: 0.019802094, a: 1} + - _TintColor2: {r: 1, g: 1, b: 1, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Sphere_2.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Sphere_2.mat.meta new file mode 100644 index 0000000..7b9100d --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Sphere_2.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 46685ead44d657f4cad14477ad3d9509 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Sphere_2.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Sphere_3.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Sphere_3.mat new file mode 100644 index 0000000..09004b1 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Sphere_3.mat @@ -0,0 +1,194 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Effect_12_Sphere_3 + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - IS_NORMAL_ANIMATE + - IS_NORMAL_DISTORTION + - IS_RIMLIGHT + - IS_SOFT_PARTICLES + - IS_TEXTURE_ANIMATE + - IS_TEXTURE_BLEND + - IS_USE_SECOND_COLOR + m_InvalidKeywords: + - IS_UNITY_PARTICLE_INSTANCING_ENABLED + - _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 2998 + stringTagMap: {} + disabledShaderPasses: [] + m_LockedProperties: + 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} + - _FixedMaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 2800000, guid: a1e4bc17d92703c46b85af820c49f976, 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} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, type: 3} + m_Scale: {x: 4, y: 4} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _BlendDst: 10 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 2 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 2 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactFactor: 1 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _IsRotateAngle: 0 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 0 + - _MaskOffsetFactor: 15 + - _MaxIndex: 2 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 1 + - _NoiseScale: 0 + - _NormalAnimate: 1 + - _NormalAnimateSpeed: 0.15 + - _NormalDistortion: 1 + - _NormalDistortionFactor: 1 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 1 + - _RimScale: 15 + - _RimStrength: 15 + - _RotateAngle: 0 + - _SecondColor: 1 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexLength: 1 + - _TexPath: 1 + - _TexPosMove: -1 + - _TexcoordMove: 0 + - _TexcoordMoveStrength: 5 + - _TexcoordMoveUsingCustom: 0 + - _TextureAnimate: 1 + - _TextureAnimateAdvanced: 0 + - _TextureAnimateSpeed: 1 + - _TextureAnimateStyle: 2 + - _TextureBlend: 1 + - _TextureNoise: 0 + - _UVSec: 0 + - _UseTexAnimation: 0 + - _VertexAnimation: 0 + - _ZTest: 5 + - _ZTest1: 6 + - _ZTest2: 6 + - _ZTest3: 2 + - _ZWrite: 0 + - _xTexcoordMove: -1 + - _yTexcoordMove: 0 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 0, g: 0, b: 0, a: 0} + - _RimColor: {r: 7.4215717, g: 0.45877156, b: 0.17503704, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 0, g: 0, b: 0, a: 0.19607843} + - _TintColor2: {r: 0, g: 0, b: 0, a: 0.19607843} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Sphere_3.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Sphere_3.mat.meta new file mode 100644 index 0000000..201855c --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Sphere_3.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: bc15a6138ab72ae44aa2ae4fb5485865 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Sphere_3.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Sphere_4.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Sphere_4.mat new file mode 100644 index 0000000..f40997d --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Sphere_4.mat @@ -0,0 +1,174 @@ +%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: Effect_12_Sphere_4 + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_ShaderKeywords: IS_NORMAL_ANIMATE IS_NORMAL_DISTORTION IS_RIMLIGHT IS_SOFT_PARTICLES + IS_TEXTURE_ANIMATE IS_UNITY_PARTICLE_INSTANCING_ENABLED _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 2998 + 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} + - _FixedMaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 67b8806fa9373774088013c2e7a9a59c, type: 3} + m_Scale: {x: 2, y: 2} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 2800000, guid: a1e4bc17d92703c46b85af820c49f976, 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} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, type: 3} + m_Scale: {x: 3, y: 3} + 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: + - _BlendDst: 10 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 2 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 2 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 0 + - _MaskOffsetFactor: 15 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 1 + - _NoiseScale: 0 + - _NormalAnimate: 1 + - _NormalAnimateSpeed: 0.5 + - _NormalDistortion: 1 + - _NormalDistortionFactor: 1 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 1 + - _RimScale: 15 + - _RimStrength: 15 + - _SecondColor: 0 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexLength: 1 + - _TexPath: 1 + - _TexPosMove: -1 + - _TexcoordMove: 0 + - _TexcoordMoveStrength: 5 + - _TexcoordMoveUsingCustom: 0 + - _TextureAnimate: 1 + - _TextureAnimateSpeed: 1 + - _TextureAnimateStyle: 2 + - _TextureBlend: 0 + - _TextureNoise: 0 + - _UVSec: 0 + - _UseTexAnimation: 0 + - _VertexAnimation: 0 + - _ZTest: 5 + - _ZTest1: 6 + - _ZTest2: 6 + - _ZTest3: 2 + - _ZWrite: 0 + - _xTexcoordMove: -1 + - _yTexcoordMove: 0 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 0, g: 0, b: 0, a: 0} + - _RimColor: {r: 2.4303575, g: 0.067254975, b: 0, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 1, g: 0.007843138, b: 0, a: 1} + - _TintColor2: {r: 1, g: 1, b: 1, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Sphere_4.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Sphere_4.mat.meta new file mode 100644 index 0000000..b6fe667 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Sphere_4.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 7e70b7576b27db64dab042a1934ed2de +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Sphere_4.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Sphere_5.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Sphere_5.mat new file mode 100644 index 0000000..773e58d --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Sphere_5.mat @@ -0,0 +1,194 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Effect_12_Sphere_5 + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - IS_NORMAL_ANIMATE + - IS_NORMAL_DISTORTION + - IS_RIMLIGHT + - IS_SOFT_PARTICLES + - IS_TEXTURE_ANIMATE + - IS_TEXTURE_BLEND + - IS_USE_SECOND_COLOR + m_InvalidKeywords: + - IS_UNITY_PARTICLE_INSTANCING_ENABLED + - _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 2999 + stringTagMap: {} + disabledShaderPasses: [] + m_LockedProperties: + 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} + - _FixedMaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 2800000, guid: a1e4bc17d92703c46b85af820c49f976, 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} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, type: 3} + m_Scale: {x: 4, y: 4} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _BlendDst: 10 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 2 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 2 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactFactor: 1 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _IsRotateAngle: 0 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 0 + - _MaskOffsetFactor: 15 + - _MaxIndex: 2 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 1 + - _NoiseScale: 0 + - _NormalAnimate: 1 + - _NormalAnimateSpeed: 0.15 + - _NormalDistortion: 1 + - _NormalDistortionFactor: 1 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 1 + - _RimScale: 15 + - _RimStrength: 15 + - _RotateAngle: 0 + - _SecondColor: 1 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexLength: 1 + - _TexPath: 1 + - _TexPosMove: -1 + - _TexcoordMove: 0 + - _TexcoordMoveStrength: 5 + - _TexcoordMoveUsingCustom: 0 + - _TextureAnimate: 1 + - _TextureAnimateAdvanced: 0 + - _TextureAnimateSpeed: 1 + - _TextureAnimateStyle: 2 + - _TextureBlend: 1 + - _TextureNoise: 0 + - _UVSec: 0 + - _UseTexAnimation: 0 + - _VertexAnimation: 0 + - _ZTest: 5 + - _ZTest1: 6 + - _ZTest2: 6 + - _ZTest3: 2 + - _ZWrite: 0 + - _xTexcoordMove: -1 + - _yTexcoordMove: 0 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 0, g: 0, b: 0, a: 0} + - _RimColor: {r: 12.737255, g: 0.1254902, b: 0, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 0, g: 0, b: 0, a: 0.15686275} + - _TintColor2: {r: 0, g: 0, b: 0, a: 0.19607843} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Sphere_5.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Sphere_5.mat.meta new file mode 100644 index 0000000..dbf2ae1 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Sphere_5.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: af8e1d8cbedb1d94b9d2ff870431670c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Sphere_5.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Sphere_6.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Sphere_6.mat new file mode 100644 index 0000000..a12495a --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Sphere_6.mat @@ -0,0 +1,175 @@ +%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: Effect_12_Sphere_6 + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_ShaderKeywords: IS_NORMAL_ANIMATE IS_NORMAL_DISTORTION IS_RIMLIGHT IS_SOFT_PARTICLES + IS_TEXTURE_ANIMATE IS_UNITY_PARTICLE_INSTANCING_ENABLED _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3001 + 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} + - _FixedMaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 2800000, guid: a1e4bc17d92703c46b85af820c49f976, 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} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, type: 3} + m_Scale: {x: 4, y: 4} + 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: + - _BlendDst: 10 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 2 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 2 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactFactor: 1 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 0 + - _MaskOffsetFactor: 15 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 1 + - _NoiseScale: 0 + - _NormalAnimate: 1 + - _NormalAnimateSpeed: 0.15 + - _NormalDistortion: 1 + - _NormalDistortionFactor: 1 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 1 + - _RimScale: 15 + - _RimStrength: 50 + - _SecondColor: 0 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexLength: 1 + - _TexPath: 1 + - _TexPosMove: -1 + - _TexcoordMove: 0 + - _TexcoordMoveStrength: 5 + - _TexcoordMoveUsingCustom: 0 + - _TextureAnimate: 1 + - _TextureAnimateSpeed: 1 + - _TextureAnimateStyle: 2 + - _TextureBlend: 0 + - _TextureNoise: 0 + - _UVSec: 0 + - _UseTexAnimation: 0 + - _VertexAnimation: 0 + - _ZTest: 5 + - _ZTest1: 6 + - _ZTest2: 6 + - _ZTest3: 2 + - _ZWrite: 0 + - _xTexcoordMove: -1 + - _yTexcoordMove: 0 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 0, g: 0, b: 0, a: 0} + - _RimColor: {r: 12.737255, g: 0.1254902, b: 0, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 10.076063, g: 0.29860872, b: 0.14258555, a: 0.15686275} + - _TintColor2: {r: 1, g: 1, b: 1, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Sphere_6.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Sphere_6.mat.meta new file mode 100644 index 0000000..4d704b8 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Sphere_6.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: c89880da14d62ad468c2c1dc3b9408c2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_12_Materials/Effect_12_Sphere_6.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_18_Materials.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_18_Materials.meta new file mode 100644 index 0000000..4109e5e --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_18_Materials.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 22ce7f3a6445ede409c7dd4087f1fd98 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_18_Materials/Effect_18_Hand.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_18_Materials/Effect_18_Hand.mat new file mode 100644 index 0000000..5913896 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_18_Materials/Effect_18_Hand.mat @@ -0,0 +1,168 @@ +%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: Effect_18_Hand + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_ShaderKeywords: IS_MASK_FADE IS_NORMAL_ANIMATE IS_NORMAL_DISTORTION IS_SOFT_PARTICLES + IS_TEXTURE_ANIMATE IS_TEXTURE_BLEND IS_UNITY_PARTICLE_INSTANCING_ENABLED _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + 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} + - _FixedMaskTex: + m_Texture: {fileID: 2800000, guid: 6b3c400d03adedb40bf5888014ea770c, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 67b8806fa9373774088013c2e7a9a59c, type: 3} + m_Scale: {x: 2, y: 2} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, type: 3} + m_Scale: {x: 20, y: 20} + 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: + - _BlendDst: 1 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 8 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 1 + - _MaskOffsetFactor: 1 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 1 + - _NoiseScale: 1 + - _NormalAnimate: 1 + - _NormalAnimateSpeed: 2 + - _NormalDistortion: 1 + - _NormalDistortionFactor: 2 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 0 + - _RimScale: 1 + - _RimStrength: 1 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexPath: 1 + - _TexPosMove: 0.08 + - _TexcoordMove: 0 + - _TexcoordMoveStrength: 2 + - _TextureAnimate: 1 + - _TextureAnimateSpeed: 1 + - _TextureAnimateStyle: 2 + - _TextureBlend: 1 + - _TextureNoise: 0 + - _UVSec: 0 + - _UseTexAnimation: 0 + - _VertexAnimation: 0 + - _ZTest1: 5 + - _ZTest2: 2 + - _ZWrite: 0 + - _xTexcoordMove: 1 + - _yTexcoordMove: 1 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 1, g: 1, b: 1, a: 0} + - _RimColor: {r: 1, g: 1, b: 1, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 0, g: 0.257848, b: 1.4194719, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_18_Materials/Effect_18_Hand.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_18_Materials/Effect_18_Hand.mat.meta new file mode 100644 index 0000000..8dcebcc --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_18_Materials/Effect_18_Hand.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 932ecff7c9dcbfe41bc788ac1956fa09 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_18_Materials/Effect_18_Hand.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_18_Materials/Effect_18_Ring.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_18_Materials/Effect_18_Ring.mat new file mode 100644 index 0000000..468d7c9 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_18_Materials/Effect_18_Ring.mat @@ -0,0 +1,168 @@ +%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: Effect_18_Ring + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_ShaderKeywords: IS_MASK_FADE IS_NORMAL_ANIMATE IS_NORMAL_DISTORTION IS_SOFT_PARTICLES + IS_TEXTURE_ANIMATE IS_TEXTURE_BLEND IS_UNITY_PARTICLE_INSTANCING_ENABLED _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + 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} + - _FixedMaskTex: + m_Texture: {fileID: 2800000, guid: 6d0b74839d655764184290a3e6fc8ee3, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 67b8806fa9373774088013c2e7a9a59c, type: 3} + m_Scale: {x: 2, y: 2} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, type: 3} + m_Scale: {x: 20, y: 20} + 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: + - _BlendDst: 1 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 8 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 1 + - _MaskOffsetFactor: 1 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 1 + - _NoiseScale: 1 + - _NormalAnimate: 1 + - _NormalAnimateSpeed: 2 + - _NormalDistortion: 1 + - _NormalDistortionFactor: 2 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 0 + - _RimScale: 1 + - _RimStrength: 1 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexPath: 1 + - _TexPosMove: 0.08 + - _TexcoordMove: 0 + - _TexcoordMoveStrength: 2 + - _TextureAnimate: 1 + - _TextureAnimateSpeed: 1 + - _TextureAnimateStyle: 2 + - _TextureBlend: 1 + - _TextureNoise: 0 + - _UVSec: 0 + - _UseTexAnimation: 0 + - _VertexAnimation: 0 + - _ZTest1: 5 + - _ZTest2: 2 + - _ZWrite: 0 + - _xTexcoordMove: 1 + - _yTexcoordMove: 1 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 1, g: 1, b: 1, a: 0} + - _RimColor: {r: 1, g: 1, b: 1, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 0, g: 0.257848, b: 1.4194719, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_18_Materials/Effect_18_Ring.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_18_Materials/Effect_18_Ring.mat.meta new file mode 100644 index 0000000..7bc6aaf --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_18_Materials/Effect_18_Ring.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 752c685dc5692a2438b0407620baf228 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_18_Materials/Effect_18_Ring.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_18_Materials/Effect_18_Ring_2.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_18_Materials/Effect_18_Ring_2.mat new file mode 100644 index 0000000..391d770 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_18_Materials/Effect_18_Ring_2.mat @@ -0,0 +1,168 @@ +%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: Effect_18_Ring_2 + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_ShaderKeywords: IS_NORMAL_ANIMATE IS_SOFT_PARTICLES IS_UNITY_PARTICLE_INSTANCING_ENABLED + _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + 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} + - _FixedMaskTex: + m_Texture: {fileID: 2800000, guid: 6d0b74839d655764184290a3e6fc8ee3, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: ec743a9b30e51bf4ea436ffbf6ffe397, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, type: 3} + m_Scale: {x: 20, y: 20} + 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: + - _BlendDst: 1 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 7 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 0 + - _MaskOffsetFactor: 1 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 1 + - _NoiseScale: 1 + - _NormalAnimate: 1 + - _NormalAnimateSpeed: 2 + - _NormalDistortion: 0 + - _NormalDistortionFactor: 2 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 0 + - _RimScale: 1 + - _RimStrength: 1 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexPath: 1 + - _TexPosMove: 0.08 + - _TexcoordMove: 0 + - _TexcoordMoveStrength: 2 + - _TextureAnimate: 0 + - _TextureAnimateSpeed: 1 + - _TextureAnimateStyle: 2 + - _TextureBlend: 0 + - _TextureNoise: 0 + - _UVSec: 0 + - _UseTexAnimation: 0 + - _VertexAnimation: 0 + - _ZTest1: 5 + - _ZTest2: 2 + - _ZWrite: 0 + - _xTexcoordMove: 1 + - _yTexcoordMove: 1 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 1, g: 1, b: 1, a: 0} + - _RimColor: {r: 1, g: 1, b: 1, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 0, g: 0.257848, b: 1.4194719, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_18_Materials/Effect_18_Ring_2.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_18_Materials/Effect_18_Ring_2.mat.meta new file mode 100644 index 0000000..f63d035 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_18_Materials/Effect_18_Ring_2.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 2f71d98990368054ab2d84fd256290b4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_18_Materials/Effect_18_Ring_2.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_21_Materials.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_21_Materials.meta new file mode 100644 index 0000000..2842ab3 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_21_Materials.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f211aa01cdafb794ab6ab87fb43cbf11 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_21_Materials/Effect_21_Decal.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_21_Materials/Effect_21_Decal.mat new file mode 100644 index 0000000..69fd524 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_21_Materials/Effect_21_Decal.mat @@ -0,0 +1,149 @@ +%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: Effect_21_Decal + m_Shader: {fileID: 4800000, guid: 416d9dd6e46c1c5408e8ed3f0d48c1bc, type: 3} + m_ShaderKeywords: IS_MASK_FADE IS_NORMAL_ANIMATE IS_NORMAL_DISTORTION IS_SOFT_PARTICLES + IS_TEXTURE_ANIMATE + 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} + - _FixedMaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 3cb02bf457cde1b48af42b67ee413532, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 2800000, guid: 62f7d3d5517e2504b8afc94e091397e1, 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} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, 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} + m_Floats: + - _BlendDst: 1 + - _BlendSrc: 5 + - _BumpScale: 1 + - _ColorFactor: 5 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 1 + - _MaskOffsetFactor: 1 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 0 + - _NoiseNormalFactor: 1 + - _NoiseScale: 1 + - _NormalAnimate: 1 + - _NormalAnimateSpeed: 0.25 + - _NormalDistortion: 1 + - _NormalDistortionFactor: 1 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 0 + - _RimLight: 0 + - _RimScale: 1 + - _RimStrength: 1 + - _SecondColor: 0 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexPath: 1 + - _TexPosMove: 0 + - _TexcoordMove: 0 + - _TexcoordMoveStrength: 0 + - _TextureAnimate: 1 + - _TextureAnimateSpeed: 3 + - _TextureAnimateStyle: 1 + - _TextureBlend: 0 + - _TextureNoise: 0 + - _UVSec: 0 + - _VertexAnimation: 0 + - _ZTest1: 5 + - _ZWrite: 0 + - _xTexcoordMove: 0 + - _yTexcoordMove: 0 + m_Colors: + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 1, g: 1, b: 1, a: 0} + - _RimColor: {r: 1, g: 1, b: 1, a: 1} + - _TintColor: {r: 5.992157, g: 0.4392157, b: 0, a: 1} + - _TintColor2: {r: 1, g: 1, b: 1, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_21_Materials/Effect_21_Decal.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_21_Materials/Effect_21_Decal.mat.meta new file mode 100644 index 0000000..d591435 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_21_Materials/Effect_21_Decal.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: ec56cfb5c44dde9498ae3f10743f8897 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_21_Materials/Effect_21_Decal.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_21_Materials/Effect_21_Explosion.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_21_Materials/Effect_21_Explosion.mat new file mode 100644 index 0000000..50a21d6 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_21_Materials/Effect_21_Explosion.mat @@ -0,0 +1,168 @@ +%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: Effect_21_Explosion + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_ShaderKeywords: IS_NORMAL_ANIMATE IS_NORMAL_DISTORTION IS_SOFT_PARTICLES IS_TEXTURE_BLEND + IS_UNITY_PARTICLE_INSTANCING_ENABLED _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + 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} + - _FixedMaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 9064114c999c2ed468fef5ddd82bd85d, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, type: 3} + m_Scale: {x: 8, y: 8} + 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: + - _BlendDst: 10 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 6 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 0 + - _MaskOffsetFactor: 1 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 1 + - _NoiseScale: 1 + - _NormalAnimate: 1 + - _NormalAnimateSpeed: 1 + - _NormalDistortion: 1 + - _NormalDistortionFactor: 0.02 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 0 + - _RimScale: 1 + - _RimStrength: 1 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexPath: 1 + - _TexPosMove: 0.08 + - _TexcoordMove: 0 + - _TexcoordMoveStrength: 2 + - _TextureAnimate: 0 + - _TextureAnimateSpeed: 1 + - _TextureAnimateStyle: 1 + - _TextureBlend: 1 + - _TextureNoise: 0 + - _UVSec: 0 + - _UseTexAnimation: 0 + - _VertexAnimation: 0 + - _ZTest1: 5 + - _ZTest2: 2 + - _ZWrite: 0 + - _xTexcoordMove: 1 + - _yTexcoordMove: 1 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 1, g: 1, b: 1, a: 0} + - _RimColor: {r: 1, g: 1, b: 1, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 5.8980393, g: 0.34509805, b: 0, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_21_Materials/Effect_21_Explosion.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_21_Materials/Effect_21_Explosion.mat.meta new file mode 100644 index 0000000..420595b --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_21_Materials/Effect_21_Explosion.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 1c50e0ffb8d5fec41b89d7bc643ceeec +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_21_Materials/Effect_21_Explosion.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_21_Materials/Effect_21_Particle.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_21_Materials/Effect_21_Particle.mat new file mode 100644 index 0000000..faa98d4 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_21_Materials/Effect_21_Particle.mat @@ -0,0 +1,167 @@ +%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: Effect_21_Particle + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_ShaderKeywords: IS_SOFT_PARTICLES IS_UNITY_PARTICLE_INSTANCING_ENABLED _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + 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} + - _FixedMaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 1071ab01a543d1c4a91150e2ed7bbb08, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, 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} + m_Floats: + - _BlendDst: 1 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 3 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 0 + - _MaskOffsetFactor: 1 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 1 + - _NoiseScale: 1 + - _NormalAnimate: 0 + - _NormalAnimateSpeed: 1 + - _NormalDistortion: 0 + - _NormalDistortionFactor: 1 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 0 + - _RimScale: 1 + - _RimStrength: 1 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexPath: 1 + - _TexPosMove: 0.08 + - _TexcoordMove: 0 + - _TexcoordMoveStrength: 2 + - _TextureAnimate: 0 + - _TextureAnimateSpeed: 1 + - _TextureAnimateStyle: 1 + - _TextureBlend: 0 + - _TextureNoise: 0 + - _UVSec: 0 + - _UseTexAnimation: 0 + - _VertexAnimation: 0 + - _ZTest1: 5 + - _ZTest2: 2 + - _ZWrite: 0 + - _xTexcoordMove: 1 + - _yTexcoordMove: 1 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 1, g: 1, b: 1, a: 0} + - _RimColor: {r: 1, g: 1, b: 1, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 4.237095, g: 0.5102261, b: 0.06655122, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_21_Materials/Effect_21_Particle.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_21_Materials/Effect_21_Particle.mat.meta new file mode 100644 index 0000000..634820c --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_21_Materials/Effect_21_Particle.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: be41a1d7d09215a458dcf8ef439e24f8 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_21_Materials/Effect_21_Particle.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_21_Materials/Effect_21_RingMesh.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_21_Materials/Effect_21_RingMesh.mat new file mode 100644 index 0000000..0297df4 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_21_Materials/Effect_21_RingMesh.mat @@ -0,0 +1,173 @@ +%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: Effect_21_RingMesh + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_ShaderKeywords: IS_MASK_FADE IS_NORMAL_ANIMATE IS_NORMAL_DISTORTION IS_SOFT_PARTICLES + IS_TEXCOORD_MOVE IS_TEXTURE_ANIMATE IS_UNITY_PARTICLE_INSTANCING_ENABLED _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + 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} + - _FixedMaskTex: + m_Texture: {fileID: 2800000, guid: 66f2f832bbd3e5e449cfd48127deabd1, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 3cb02bf457cde1b48af42b67ee413532, type: 3} + m_Scale: {x: 2, y: 2} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 2800000, guid: 6ff533708a654f048a86aebdf9a39df5, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 2800000, guid: a4aa9178b66bffe4aa9a34ec77c358d8, 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} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 2800000, guid: 708d24fa8e8cc804aba4ce74d4e6a1b1, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, 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} + m_Floats: + - _BlendDst: 10 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 5 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 1 + - _MaskOffsetFactor: 1 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 1 + - _NoiseScale: 0.02 + - _NormalAnimate: 1 + - _NormalAnimateSpeed: 0.15 + - _NormalDistortion: 1 + - _NormalDistortionFactor: 2 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 0 + - _RimScale: 10 + - _RimStrength: 5 + - _SecondColor: 0 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexLength: 1 + - _TexPath: 1 + - _TexPosMove: -1 + - _TexcoordMove: 1 + - _TexcoordMoveStrength: 10 + - _TextureAnimate: 1 + - _TextureAnimateSpeed: 5 + - _TextureAnimateStyle: 2 + - _TextureBlend: 0 + - _TextureNoise: 0 + - _UVSec: 0 + - _UseTexAnimation: 0 + - _VertexAnimation: 0 + - _ZTest: 5 + - _ZTest1: 5 + - _ZTest2: 2 + - _ZTest3: 3 + - _ZWrite: 0 + - _xTexcoordMove: 0 + - _yTexcoordMove: 1 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 1, g: 1, b: 1, a: 1} + - _RimColor: {r: 1.2862746, g: 3.890196, b: 6.964706, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 6.1540036, g: 0.25775933, b: 0, a: 1} + - _TintColor2: {r: 1, g: 1, b: 1, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_21_Materials/Effect_21_RingMesh.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_21_Materials/Effect_21_RingMesh.mat.meta new file mode 100644 index 0000000..eefb0cc --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_21_Materials/Effect_21_RingMesh.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 5c071ffa9720e3745b3dcba328e2200c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_21_Materials/Effect_21_RingMesh.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_21_Materials/Effect_21_Shockwave.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_21_Materials/Effect_21_Shockwave.mat new file mode 100644 index 0000000..6357693 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_21_Materials/Effect_21_Shockwave.mat @@ -0,0 +1,168 @@ +%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: Effect_21_Shockwave + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_ShaderKeywords: IS_NORMAL_ANIMATE IS_NORMAL_DISTORTION IS_SOFT_PARTICLES IS_TEXTURE_BLEND + IS_UNITY_PARTICLE_INSTANCING_ENABLED _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + 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} + - _FixedMaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: a3df194275fec5743941e5363ee96e6c, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, type: 3} + m_Scale: {x: 20, y: 20} + 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: + - _BlendDst: 1 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 5 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 0 + - _MaskOffsetFactor: 1 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 1 + - _NoiseScale: 1 + - _NormalAnimate: 1 + - _NormalAnimateSpeed: 1 + - _NormalDistortion: 1 + - _NormalDistortionFactor: 0.02 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 0 + - _RimScale: 1 + - _RimStrength: 1 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexPath: 1 + - _TexPosMove: 0.08 + - _TexcoordMove: 0 + - _TexcoordMoveStrength: 2 + - _TextureAnimate: 0 + - _TextureAnimateSpeed: 1 + - _TextureAnimateStyle: 2 + - _TextureBlend: 1 + - _TextureNoise: 0 + - _UVSec: 0 + - _UseTexAnimation: 0 + - _VertexAnimation: 0 + - _ZTest1: 5 + - _ZTest2: 2 + - _ZWrite: 0 + - _xTexcoordMove: 1 + - _yTexcoordMove: 1 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 1, g: 1, b: 1, a: 0} + - _RimColor: {r: 1, g: 1, b: 1, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 9.051233, g: 1.658603, b: 0.23694327, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_21_Materials/Effect_21_Shockwave.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_21_Materials/Effect_21_Shockwave.mat.meta new file mode 100644 index 0000000..5529185 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_21_Materials/Effect_21_Shockwave.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 6529424ab50760b4485950e1986601ad +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_21_Materials/Effect_21_Shockwave.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_21_Materials/Effect_21_Smoke.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_21_Materials/Effect_21_Smoke.mat new file mode 100644 index 0000000..b9cc098 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_21_Materials/Effect_21_Smoke.mat @@ -0,0 +1,168 @@ +%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: Effect_21_Smoke + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_ShaderKeywords: IS_SOFT_PARTICLES IS_TEXTURE_BLEND IS_UNITY_PARTICLE_INSTANCING_ENABLED + _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + 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} + - _FixedMaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 0325c37a65550e749bb9b131e6d8a1f5, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, 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} + m_Floats: + - _BlendDst: 10 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 4 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 0 + - _MaskOffsetFactor: 1 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 1 + - _NoiseScale: 1 + - _NormalAnimate: 0 + - _NormalAnimateSpeed: 1 + - _NormalDistortion: 0 + - _NormalDistortionFactor: 1 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 0 + - _RimScale: 1 + - _RimStrength: 1 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexPath: 1 + - _TexPosMove: 0.08 + - _TexcoordMove: 0 + - _TexcoordMoveStrength: 2 + - _TextureAnimate: 0 + - _TextureAnimateSpeed: 1 + - _TextureAnimateStyle: 1 + - _TextureBlend: 1 + - _TextureNoise: 0 + - _UVSec: 0 + - _UseTexAnimation: 0 + - _VertexAnimation: 0 + - _ZTest1: 5 + - _ZTest2: 2 + - _ZWrite: 0 + - _xTexcoordMove: 1 + - _yTexcoordMove: 1 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 1, g: 1, b: 1, a: 0} + - _RimColor: {r: 1, g: 1, b: 1, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 3.2401361, g: 0.34067944, b: 0, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_21_Materials/Effect_21_Smoke.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_21_Materials/Effect_21_Smoke.mat.meta new file mode 100644 index 0000000..244c32a --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_21_Materials/Effect_21_Smoke.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: b1e148da19756ea4c8b86dd006ff98f2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_21_Materials/Effect_21_Smoke.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_28_Materials.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_28_Materials.meta new file mode 100644 index 0000000..ddffd67 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_28_Materials.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d9d22471bb2bcda4faf90eabd0623af3 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_28_Materials/Effect_28_Beam.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_28_Materials/Effect_28_Beam.mat new file mode 100644 index 0000000..c462dfb --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_28_Materials/Effect_28_Beam.mat @@ -0,0 +1,169 @@ +%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: Effect_28_Beam + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_ShaderKeywords: IS_MASK_FADE IS_NORMAL_ANIMATE IS_NORMAL_DISTORTION IS_SOFT_PARTICLES + IS_TEXCOORD_MOVE IS_TEXTURE_ANIMATE IS_UNITY_PARTICLE_INSTANCING_ENABLED IS_VERTEXANIMATION + _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + 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} + - _FixedMaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 3cb02bf457cde1b48af42b67ee413532, type: 3} + m_Scale: {x: 2, y: 2} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 2800000, guid: 67b8806fa9373774088013c2e7a9a59c, type: 3} + m_Scale: {x: 5, y: 5} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 2800000, guid: 708d24fa8e8cc804aba4ce74d4e6a1b1, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, 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} + m_Floats: + - _BlendDst: 10 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 5 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 5 + - _MaskCutOut: 1 + - _MaskFade: 1 + - _MaskOffsetFactor: 20 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 1 + - _NoiseScale: 0.025 + - _NormalAnimate: 1 + - _NormalAnimateSpeed: 0.15 + - _NormalDistortion: 1 + - _NormalDistortionFactor: 1 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 0 + - _RimScale: 2 + - _RimStrength: 1 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexPath: 1 + - _TexPosMove: 0.39 + - _TexcoordMove: 1 + - _TexcoordMoveStrength: 10 + - _TextureAnimate: 1 + - _TextureAnimateSpeed: 0.15 + - _TextureAnimateStyle: 0 + - _TextureBlend: 0 + - _TextureNoise: 0 + - _UVSec: 0 + - _UseTexAnimation: 0 + - _VertexAnimation: 1 + - _ZTest1: 5 + - _ZTest2: 2 + - _ZWrite: 0 + - _xTexcoordMove: 1 + - _yTexcoordMove: -0.44 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 1, g: 1, b: 2, a: 1} + - _RimColor: {r: 0.9716981, g: 0, b: 0.009329386, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 0.48128003, g: 2.31456, b: 6.566038, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_28_Materials/Effect_28_Beam.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_28_Materials/Effect_28_Beam.mat.meta new file mode 100644 index 0000000..e9c2f05 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_28_Materials/Effect_28_Beam.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 32b85289023d92b4181df4b2462966be +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_28_Materials/Effect_28_Beam.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_28_Materials/Effect_28_Line.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_28_Materials/Effect_28_Line.mat new file mode 100644 index 0000000..88c83b6 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_28_Materials/Effect_28_Line.mat @@ -0,0 +1,168 @@ +%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: Effect_28_Line + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_ShaderKeywords: IS_LINEPASS IS_NORMAL_ANIMATE IS_NORMAL_DISTORTION IS_SOFT_PARTICLES + IS_TEXTURE_ANIMATE IS_UNITY_PARTICLE_INSTANCING_ENABLED _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + 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} + - _FixedMaskTex: + m_Texture: {fileID: 10300, guid: 0000000000000000f000000000000000, type: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 10300, guid: 0000000000000000f000000000000000, type: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: ced23a9040cdc9341b98674e347b4844, type: 3} + m_Scale: {x: 2, y: 2} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 2, y: 2} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 6ff533708a654f048a86aebdf9a39df5, type: 3} + m_Scale: {x: 5, y: 5} + 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: + - _BlendDst: 1 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 5 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 1 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 0 + - _MaskOffsetFactor: 1 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 1 + - _NoiseScale: 1 + - _NormalAnimate: 1 + - _NormalAnimateSpeed: 5 + - _NormalDistortion: 1 + - _NormalDistortionFactor: 1 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 0 + - _RimScale: 1 + - _RimStrength: 1 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexPath: 1 + - _TexPosMove: 0.08 + - _TexcoordMove: 0 + - _TexcoordMoveStrength: 2 + - _TextureAnimate: 1 + - _TextureAnimateSpeed: 2 + - _TextureAnimateStyle: 2 + - _TextureBlend: 0 + - _TextureNoise: 0 + - _UVSec: 0 + - _UseTexAnimation: 0 + - _VertexAnimation: 0 + - _ZTest1: 5 + - _ZTest2: 2 + - _ZWrite: 0 + - _xTexcoordMove: 1 + - _yTexcoordMove: 1 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 1, g: 1, b: 1, a: 0} + - _RimColor: {r: 1, g: 1, b: 1, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 0.21016559, g: 1.6459451, b: 8.028328, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_28_Materials/Effect_28_Line.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_28_Materials/Effect_28_Line.mat.meta new file mode 100644 index 0000000..d19c17f --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_28_Materials/Effect_28_Line.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: ae406f071ffc5e742a8f0255c51dc2b8 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_28_Materials/Effect_28_Line.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_28_Materials/Effect_28_Particle.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_28_Materials/Effect_28_Particle.mat new file mode 100644 index 0000000..1b51eb5 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_28_Materials/Effect_28_Particle.mat @@ -0,0 +1,168 @@ +%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: Effect_28_Particle + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_ShaderKeywords: IS_SOFT_PARTICLES IS_TEXTURE_BLEND IS_UNITY_PARTICLE_INSTANCING_ENABLED + _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + 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} + - _FixedMaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 1071ab01a543d1c4a91150e2ed7bbb08, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, 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} + m_Floats: + - _BlendDst: 1 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 7 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 0 + - _MaskOffsetFactor: 1 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 1 + - _NoiseScale: 1 + - _NormalAnimate: 0 + - _NormalAnimateSpeed: 1 + - _NormalDistortion: 0 + - _NormalDistortionFactor: 1 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 0 + - _RimScale: 1 + - _RimStrength: 1 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexPath: 1 + - _TexPosMove: 0.08 + - _TexcoordMove: 0 + - _TexcoordMoveStrength: 2 + - _TextureAnimate: 0 + - _TextureAnimateSpeed: 1 + - _TextureAnimateStyle: 1 + - _TextureBlend: 1 + - _TextureNoise: 0 + - _UVSec: 0 + - _UseTexAnimation: 0 + - _VertexAnimation: 0 + - _ZTest1: 5 + - _ZTest2: 2 + - _ZWrite: 0 + - _xTexcoordMove: 1 + - _yTexcoordMove: 1 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 1, g: 1, b: 1, a: 0} + - _RimColor: {r: 1, g: 1, b: 1, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 0.07545348, g: 0.41264832, b: 2.8823237, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_28_Materials/Effect_28_Particle.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_28_Materials/Effect_28_Particle.mat.meta new file mode 100644 index 0000000..3dfebd2 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_28_Materials/Effect_28_Particle.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 6d6a7c9d745e84e4dbd1dddf4542fb35 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_28_Materials/Effect_28_Particle.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_28_Materials/Effect_28_Sphere.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_28_Materials/Effect_28_Sphere.mat new file mode 100644 index 0000000..f99ac65 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_28_Materials/Effect_28_Sphere.mat @@ -0,0 +1,168 @@ +%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: Effect_28_Sphere + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_ShaderKeywords: IS_MASK_FADE IS_NORMAL_ANIMATE IS_NORMAL_DISTORTION IS_SOFT_PARTICLES + IS_TEXCOORD_MOVE IS_TEXTURE_ANIMATE IS_UNITY_PARTICLE_INSTANCING_ENABLED _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + 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} + - _FixedMaskTex: + m_Texture: {fileID: 2800000, guid: 67e0d98570f0e144e96fec27ccbaffc4, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 3cb02bf457cde1b48af42b67ee413532, type: 3} + m_Scale: {x: 2, y: 2} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 2800000, guid: 67b8806fa9373774088013c2e7a9a59c, type: 3} + m_Scale: {x: 2, y: 2} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 2800000, guid: 708d24fa8e8cc804aba4ce74d4e6a1b1, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, 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} + m_Floats: + - _BlendDst: 1 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 7 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 5 + - _MaskCutOut: 1 + - _MaskFade: 1 + - _MaskOffsetFactor: 20 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 1 + - _NoiseScale: 0.025 + - _NormalAnimate: 1 + - _NormalAnimateSpeed: 0.15 + - _NormalDistortion: 1 + - _NormalDistortionFactor: 1.5 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 0 + - _RimScale: 2 + - _RimStrength: 1 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexPath: 1 + - _TexPosMove: 0.39 + - _TexcoordMove: 1 + - _TexcoordMoveStrength: 20 + - _TextureAnimate: 1 + - _TextureAnimateSpeed: 0.15 + - _TextureAnimateStyle: 0 + - _TextureBlend: 0 + - _TextureNoise: 0 + - _UVSec: 0 + - _UseTexAnimation: 0 + - _VertexAnimation: 0 + - _ZTest1: 5 + - _ZTest2: 2 + - _ZWrite: 0 + - _xTexcoordMove: 1 + - _yTexcoordMove: 0 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 1, g: 1, b: 2, a: 1} + - _RimColor: {r: 0.9716981, g: 0, b: 0.009329386, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 0.4392157, g: 2.1333334, b: 5.992157, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_28_Materials/Effect_28_Sphere.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_28_Materials/Effect_28_Sphere.mat.meta new file mode 100644 index 0000000..27aa032 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_28_Materials/Effect_28_Sphere.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: f1b45bb7878d4f843862597505480c04 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_28_Materials/Effect_28_Sphere.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_31_Materials.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_31_Materials.meta new file mode 100644 index 0000000..93c501d --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_31_Materials.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cd39d24e59ad3714a9770baf3323a532 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_31_Materials/Effect_31_Mark.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_31_Materials/Effect_31_Mark.mat new file mode 100644 index 0000000..570f783 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_31_Materials/Effect_31_Mark.mat @@ -0,0 +1,168 @@ +%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: Effect_31_Mark + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_ShaderKeywords: IS_NORMAL_ANIMATE IS_NORMAL_DISTORTION IS_SOFT_PARTICLES IS_TEXTURE_BLEND + IS_UNITY_PARTICLE_INSTANCING_ENABLED _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + 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} + - _FixedMaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: ec743a9b30e51bf4ea436ffbf6ffe397, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseNormal: + m_Texture: {fileID: 2800000, guid: 708d24fa8e8cc804aba4ce74d4e6a1b1, type: 3} + m_Scale: {x: 10, y: 10} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 1e9cc99abd098fe48a103984a0c8bbc1, type: 3} + m_Scale: {x: 10, y: 10} + 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: + - _BlendDst: 1 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 2 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 0 + - _MaskOffsetFactor: 1 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 0.001 + - _NoiseScale: 1 + - _NormalAnimate: 1 + - _NormalAnimateSpeed: 2.5 + - _NormalDistortion: 1 + - _NormalDistortionFactor: 0.05 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 0 + - _RimScale: 1 + - _RimStrength: 1 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexPath: 1 + - _TexPosMove: 0.08 + - _TexcoordMove: 0 + - _TexcoordMoveStrength: 2 + - _TextureAnimate: 0 + - _TextureAnimateSpeed: 1 + - _TextureAnimateStyle: 1 + - _TextureBlend: 1 + - _TextureNoise: 0 + - _UVSec: 0 + - _UseTexAnimation: 0 + - _VertexAnimation: 0 + - _ZTest1: 5 + - _ZTest2: 2 + - _ZWrite: 0 + - _xTexcoordMove: 1 + - _yTexcoordMove: 1 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 1, g: 1, b: 1, a: 0} + - _RimColor: {r: 1, g: 1, b: 1, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 2.4156864, g: 3.0901961, b: 3.8588235, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_31_Materials/Effect_31_Mark.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_31_Materials/Effect_31_Mark.mat.meta new file mode 100644 index 0000000..06c917a --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_31_Materials/Effect_31_Mark.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 7c339a4dfcc83054db832066cbc7b869 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_31_Materials/Effect_31_Mark.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_31_Materials/Effect_31_Particle.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_31_Materials/Effect_31_Particle.mat new file mode 100644 index 0000000..39db45e --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_31_Materials/Effect_31_Particle.mat @@ -0,0 +1,168 @@ +%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: Effect_31_Particle + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_ShaderKeywords: IS_SOFT_PARTICLES IS_TEXTURE_BLEND IS_UNITY_PARTICLE_INSTANCING_ENABLED + _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + 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} + - _FixedMaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 1071ab01a543d1c4a91150e2ed7bbb08, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, 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} + m_Floats: + - _BlendDst: 1 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 2 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 0 + - _MaskOffsetFactor: 1 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 1 + - _NoiseScale: 1 + - _NormalAnimate: 0 + - _NormalAnimateSpeed: 1 + - _NormalDistortion: 0 + - _NormalDistortionFactor: 1 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 0 + - _RimScale: 1 + - _RimStrength: 1 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexPath: 1 + - _TexPosMove: 0.08 + - _TexcoordMove: 0 + - _TexcoordMoveStrength: 2 + - _TextureAnimate: 0 + - _TextureAnimateSpeed: 1 + - _TextureAnimateStyle: 1 + - _TextureBlend: 1 + - _TextureNoise: 0 + - _UVSec: 0 + - _UseTexAnimation: 0 + - _VertexAnimation: 0 + - _ZTest1: 5 + - _ZTest2: 2 + - _ZWrite: 0 + - _xTexcoordMove: 1 + - _yTexcoordMove: 1 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 1, g: 1, b: 1, a: 0} + - _RimColor: {r: 1, g: 1, b: 1, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 1.6526889, g: 1.8967099, b: 2.1185474, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_31_Materials/Effect_31_Particle.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_31_Materials/Effect_31_Particle.mat.meta new file mode 100644 index 0000000..cbf0aea --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_31_Materials/Effect_31_Particle.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 6f037f15066a29e4ba927ff4a94327b2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_31_Materials/Effect_31_Particle.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_31_Materials/Effect_31_Ring.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_31_Materials/Effect_31_Ring.mat new file mode 100644 index 0000000..399aa82 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_31_Materials/Effect_31_Ring.mat @@ -0,0 +1,168 @@ +%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: Effect_31_Ring + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_ShaderKeywords: IS_NORMAL_ANIMATE IS_NORMAL_DISTORTION IS_SOFT_PARTICLES IS_TEXTURE_BLEND + IS_UNITY_PARTICLE_INSTANCING_ENABLED _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + 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} + - _FixedMaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: d9a7b93c2989d3f4faf3caab3d7bc5c7, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseNormal: + m_Texture: {fileID: 2800000, guid: 708d24fa8e8cc804aba4ce74d4e6a1b1, type: 3} + m_Scale: {x: 10, y: 10} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 1e9cc99abd098fe48a103984a0c8bbc1, type: 3} + m_Scale: {x: 10, y: 10} + 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: + - _BlendDst: 1 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 2 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 0 + - _MaskOffsetFactor: 1 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 0.001 + - _NoiseScale: 1 + - _NormalAnimate: 1 + - _NormalAnimateSpeed: 0.1 + - _NormalDistortion: 1 + - _NormalDistortionFactor: 0.005 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 0 + - _RimScale: 1 + - _RimStrength: 1 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexPath: 1 + - _TexPosMove: 0.08 + - _TexcoordMove: 0 + - _TexcoordMoveStrength: 2 + - _TextureAnimate: 0 + - _TextureAnimateSpeed: 1 + - _TextureAnimateStyle: 1 + - _TextureBlend: 1 + - _TextureNoise: 0 + - _UVSec: 0 + - _UseTexAnimation: 0 + - _VertexAnimation: 0 + - _ZTest1: 5 + - _ZTest2: 2 + - _ZWrite: 0 + - _xTexcoordMove: 1 + - _yTexcoordMove: 1 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 1, g: 1, b: 1, a: 0} + - _RimColor: {r: 1, g: 1, b: 1, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 2.4156864, g: 3.0901961, b: 3.8588235, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_31_Materials/Effect_31_Ring.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_31_Materials/Effect_31_Ring.mat.meta new file mode 100644 index 0000000..54120fa --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_31_Materials/Effect_31_Ring.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 4ade396c75677c346b3ea8f4abc356f7 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_31_Materials/Effect_31_Ring.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_31_Materials/Effect_31_Shockwave.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_31_Materials/Effect_31_Shockwave.mat new file mode 100644 index 0000000..26da794 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_31_Materials/Effect_31_Shockwave.mat @@ -0,0 +1,168 @@ +%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: Effect_31_Shockwave + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_ShaderKeywords: IS_NORMAL_ANIMATE IS_NORMAL_DISTORTION IS_SOFT_PARTICLES IS_TEXTURE_BLEND + IS_UNITY_PARTICLE_INSTANCING_ENABLED _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + 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} + - _FixedMaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 9905f0bfba91aa94598123af22a8beb1, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseNormal: + m_Texture: {fileID: 2800000, guid: 708d24fa8e8cc804aba4ce74d4e6a1b1, type: 3} + m_Scale: {x: 10, y: 10} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 1e9cc99abd098fe48a103984a0c8bbc1, type: 3} + m_Scale: {x: 10, y: 10} + 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: + - _BlendDst: 1 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 6 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 0 + - _MaskOffsetFactor: 1 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 0.001 + - _NoiseScale: 1 + - _NormalAnimate: 1 + - _NormalAnimateSpeed: 0.1 + - _NormalDistortion: 1 + - _NormalDistortionFactor: 0.015 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 0 + - _RimScale: 1 + - _RimStrength: 1 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexPath: 1 + - _TexPosMove: 0.08 + - _TexcoordMove: 0 + - _TexcoordMoveStrength: 2 + - _TextureAnimate: 0 + - _TextureAnimateSpeed: 1 + - _TextureAnimateStyle: 1 + - _TextureBlend: 1 + - _TextureNoise: 0 + - _UVSec: 0 + - _UseTexAnimation: 0 + - _VertexAnimation: 0 + - _ZTest1: 5 + - _ZTest2: 2 + - _ZWrite: 0 + - _xTexcoordMove: 1 + - _yTexcoordMove: 1 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 1, g: 1, b: 1, a: 0} + - _RimColor: {r: 1, g: 1, b: 1, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 2.4156864, g: 3.0901961, b: 3.8588235, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_31_Materials/Effect_31_Shockwave.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_31_Materials/Effect_31_Shockwave.mat.meta new file mode 100644 index 0000000..6ecc44b --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_31_Materials/Effect_31_Shockwave.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: b124ea690c2211b49bfb4cc622be0d8f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_31_Materials/Effect_31_Shockwave.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_31_Materials/Effect_31_Smoke.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_31_Materials/Effect_31_Smoke.mat new file mode 100644 index 0000000..63b247e --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_31_Materials/Effect_31_Smoke.mat @@ -0,0 +1,168 @@ +%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: Effect_31_Smoke + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_ShaderKeywords: IS_NORMAL_ANIMATE IS_NORMAL_DISTORTION IS_SOFT_PARTICLES IS_TEXTURE_BLEND + IS_UNITY_PARTICLE_INSTANCING_ENABLED _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + 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} + - _FixedMaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 0325c37a65550e749bb9b131e6d8a1f5, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: b1df31c32ef1d4f428c40f70fa84a503, type: 3} + m_Scale: {x: 10, y: 10} + 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: + - _BlendDst: 1 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 2 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 0 + - _MaskOffsetFactor: 1 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 1 + - _NoiseScale: 1 + - _NormalAnimate: 1 + - _NormalAnimateSpeed: 1 + - _NormalDistortion: 1 + - _NormalDistortionFactor: 0.1 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 0 + - _RimScale: 1 + - _RimStrength: 1 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexPath: 1 + - _TexPosMove: 0.08 + - _TexcoordMove: 0 + - _TexcoordMoveStrength: 2 + - _TextureAnimate: 0 + - _TextureAnimateSpeed: 1 + - _TextureAnimateStyle: 1 + - _TextureBlend: 1 + - _TextureNoise: 0 + - _UVSec: 0 + - _UseTexAnimation: 0 + - _VertexAnimation: 0 + - _ZTest1: 5 + - _ZTest2: 2 + - _ZWrite: 0 + - _xTexcoordMove: 1 + - _yTexcoordMove: 1 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 1, g: 1, b: 1, a: 0} + - _RimColor: {r: 1, g: 1, b: 1, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 1.2121958, g: 1.5455498, b: 1.9294116, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_31_Materials/Effect_31_Smoke.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_31_Materials/Effect_31_Smoke.mat.meta new file mode 100644 index 0000000..c2edc07 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_31_Materials/Effect_31_Smoke.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: f106002f06ef06444a471f9f599ed07a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_31_Materials/Effect_31_Smoke.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_34_Materials.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_34_Materials.meta new file mode 100644 index 0000000..b7930d1 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_34_Materials.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 610f7351f1c28974fa8345d6487571b6 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_34_Materials/Effect_34_Particle.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_34_Materials/Effect_34_Particle.mat new file mode 100644 index 0000000..d383f98 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_34_Materials/Effect_34_Particle.mat @@ -0,0 +1,168 @@ +%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: Effect_34_Particle + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_ShaderKeywords: IS_SOFT_PARTICLES IS_TEXTURE_BLEND IS_UNITY_PARTICLE_INSTANCING_ENABLED + _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + 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} + - _FixedMaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 1071ab01a543d1c4a91150e2ed7bbb08, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, 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} + m_Floats: + - _BlendDst: 1 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 6 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 0 + - _MaskOffsetFactor: 1 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 1 + - _NoiseScale: 1 + - _NormalAnimate: 0 + - _NormalAnimateSpeed: 1 + - _NormalDistortion: 0 + - _NormalDistortionFactor: 1 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 0 + - _RimScale: 1 + - _RimStrength: 1 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexPath: 1 + - _TexPosMove: 0.08 + - _TexcoordMove: 0 + - _TexcoordMoveStrength: 2 + - _TextureAnimate: 0 + - _TextureAnimateSpeed: 1 + - _TextureAnimateStyle: 1 + - _TextureBlend: 1 + - _TextureNoise: 0 + - _UVSec: 0 + - _UseTexAnimation: 0 + - _VertexAnimation: 0 + - _ZTest1: 5 + - _ZTest2: 2 + - _ZWrite: 0 + - _xTexcoordMove: 1 + - _yTexcoordMove: 1 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 1, g: 1, b: 1, a: 0} + - _RimColor: {r: 1, g: 1, b: 1, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 4.1726317, g: 10.457515, b: 17.345058, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_34_Materials/Effect_34_Particle.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_34_Materials/Effect_34_Particle.mat.meta new file mode 100644 index 0000000..840aff3 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_34_Materials/Effect_34_Particle.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: dc2558d7eb1cb4c40966a644c7378fd0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_34_Materials/Effect_34_Particle.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_34_Materials/Effect_34_Ring.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_34_Materials/Effect_34_Ring.mat new file mode 100644 index 0000000..3031670 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_34_Materials/Effect_34_Ring.mat @@ -0,0 +1,168 @@ +%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: Effect_34_Ring + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_ShaderKeywords: IS_NORMAL_ANIMATE IS_SOFT_PARTICLES IS_TEXTURE_BLEND IS_UNITY_PARTICLE_INSTANCING_ENABLED + _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + 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} + - _FixedMaskTex: + m_Texture: {fileID: 2800000, guid: 72389a8f0765f984c9e63a00214df658, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 3c539ed9d767fd1408bec7c1a98590aa, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, type: 3} + m_Scale: {x: 10, y: 10} + 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: + - _BlendDst: 10 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 2 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 0 + - _MaskOffsetFactor: 1 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 1 + - _NoiseScale: 1 + - _NormalAnimate: 1 + - _NormalAnimateSpeed: 1 + - _NormalDistortion: 0 + - _NormalDistortionFactor: 0.01 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 0 + - _RimScale: 1 + - _RimStrength: 1 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexPath: 1 + - _TexPosMove: 0.08 + - _TexcoordMove: 0 + - _TexcoordMoveStrength: 2 + - _TextureAnimate: 0 + - _TextureAnimateSpeed: 1 + - _TextureAnimateStyle: 2 + - _TextureBlend: 1 + - _TextureNoise: 0 + - _UVSec: 0 + - _UseTexAnimation: 0 + - _VertexAnimation: 0 + - _ZTest1: 5 + - _ZTest2: 2 + - _ZWrite: 0 + - _xTexcoordMove: 1 + - _yTexcoordMove: 1 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 1, g: 1, b: 1, a: 0} + - _RimColor: {r: 1, g: 1, b: 1, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 0.12210277, g: 0.6587657, b: 1.3624102, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_34_Materials/Effect_34_Ring.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_34_Materials/Effect_34_Ring.mat.meta new file mode 100644 index 0000000..eb1aee9 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_34_Materials/Effect_34_Ring.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 8422f3a8f63bd944eaefaa0797ef90c9 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_34_Materials/Effect_34_Ring.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_34_Materials/Effect_34_Ring_2.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_34_Materials/Effect_34_Ring_2.mat new file mode 100644 index 0000000..19d7aa0 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_34_Materials/Effect_34_Ring_2.mat @@ -0,0 +1,168 @@ +%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: Effect_34_Ring_2 + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_ShaderKeywords: IS_NORMAL_ANIMATE IS_SOFT_PARTICLES IS_TEXTURE_BLEND IS_UNITY_PARTICLE_INSTANCING_ENABLED + _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + 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} + - _FixedMaskTex: + m_Texture: {fileID: 2800000, guid: 72389a8f0765f984c9e63a00214df658, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: de6ff9a5be8bc0145b015443b85f061a, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, type: 3} + m_Scale: {x: 10, y: 10} + 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: + - _BlendDst: 1 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 3 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 0 + - _MaskOffsetFactor: 1 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 1 + - _NoiseScale: 1 + - _NormalAnimate: 1 + - _NormalAnimateSpeed: 1 + - _NormalDistortion: 0 + - _NormalDistortionFactor: 0.01 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 0 + - _RimScale: 1 + - _RimStrength: 1 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexPath: 1 + - _TexPosMove: 0.08 + - _TexcoordMove: 0 + - _TexcoordMoveStrength: 2 + - _TextureAnimate: 0 + - _TextureAnimateSpeed: 1 + - _TextureAnimateStyle: 2 + - _TextureBlend: 1 + - _TextureNoise: 0 + - _UVSec: 0 + - _UseTexAnimation: 0 + - _VertexAnimation: 0 + - _ZTest1: 5 + - _ZTest2: 2 + - _ZWrite: 0 + - _xTexcoordMove: 1 + - _yTexcoordMove: 1 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 1, g: 1, b: 1, a: 0} + - _RimColor: {r: 1, g: 1, b: 1, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 0.12210277, g: 0.6587657, b: 1.3624102, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_34_Materials/Effect_34_Ring_2.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_34_Materials/Effect_34_Ring_2.mat.meta new file mode 100644 index 0000000..44112be --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_34_Materials/Effect_34_Ring_2.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 9b89071ddecaf9e4aa881ad860666e8c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_34_Materials/Effect_34_Ring_2.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_34_Materials/Effect_34_WindTornado.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_34_Materials/Effect_34_WindTornado.mat new file mode 100644 index 0000000..226b780 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_34_Materials/Effect_34_WindTornado.mat @@ -0,0 +1,169 @@ +%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: Effect_34_WindTornado + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_ShaderKeywords: IS_MASK_FADE IS_NORMAL_ANIMATE IS_NORMAL_DISTORTION IS_SOFT_PARTICLES + IS_TEXCOORD_MOVE IS_TEXTURE_ANIMATE IS_UNITY_PARTICLE_INSTANCING_ENABLED IS_VERTEXANIMATION + _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + 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} + - _FixedMaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 3cb02bf457cde1b48af42b67ee413532, type: 3} + m_Scale: {x: 5, y: 5} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 2800000, guid: 67b8806fa9373774088013c2e7a9a59c, 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} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 2800000, guid: 708d24fa8e8cc804aba4ce74d4e6a1b1, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, 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} + m_Floats: + - _BlendDst: 10 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 4 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 5 + - _MaskCutOut: 1 + - _MaskFade: 1 + - _MaskOffsetFactor: 1 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 1 + - _NoiseScale: 0.02 + - _NormalAnimate: 1 + - _NormalAnimateSpeed: 0.15 + - _NormalDistortion: 1 + - _NormalDistortionFactor: 1 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 0 + - _RimScale: 2 + - _RimStrength: 1 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexPath: 1 + - _TexPosMove: 0.39 + - _TexcoordMove: 1 + - _TexcoordMoveStrength: 25 + - _TextureAnimate: 1 + - _TextureAnimateSpeed: 0.15 + - _TextureAnimateStyle: 0 + - _TextureBlend: 0 + - _TextureNoise: 0 + - _UVSec: 0 + - _UseTexAnimation: 0 + - _VertexAnimation: 1 + - _ZTest1: 5 + - _ZTest2: 2 + - _ZWrite: 0 + - _xTexcoordMove: 1 + - _yTexcoordMove: -0.44 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 0.1, g: 1, b: 2, a: 1} + - _RimColor: {r: 0.9716981, g: 0, b: 0.009329386, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 0.7020293, g: 2.4623115, b: 5.1320753, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_34_Materials/Effect_34_WindTornado.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_34_Materials/Effect_34_WindTornado.mat.meta new file mode 100644 index 0000000..e9eb301 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_34_Materials/Effect_34_WindTornado.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: f218aadad58da8542863fcccc68cf763 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_34_Materials/Effect_34_WindTornado.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_38_Materials.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_38_Materials.meta new file mode 100644 index 0000000..4c20fbd --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_38_Materials.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b5432b3808d6d394398ef3bdc1ee6271 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_38_Materials/Effect_38_Mark.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_38_Materials/Effect_38_Mark.mat new file mode 100644 index 0000000..0a96284 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_38_Materials/Effect_38_Mark.mat @@ -0,0 +1,167 @@ +%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: Effect_38_Mark + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_ShaderKeywords: IS_SOFT_PARTICLES IS_UNITY_PARTICLE_INSTANCING_ENABLED _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + 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} + - _FixedMaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: ec743a9b30e51bf4ea436ffbf6ffe397, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, 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} + m_Floats: + - _BlendDst: 1 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 2 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 0 + - _MaskOffsetFactor: 1 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 1 + - _NoiseScale: 1 + - _NormalAnimate: 0 + - _NormalAnimateSpeed: 1 + - _NormalDistortion: 0 + - _NormalDistortionFactor: 1 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 0 + - _RimScale: 1 + - _RimStrength: 1 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexPath: 1 + - _TexPosMove: 0.08 + - _TexcoordMove: 0 + - _TexcoordMoveStrength: 2 + - _TextureAnimate: 0 + - _TextureAnimateSpeed: 1 + - _TextureAnimateStyle: 1 + - _TextureBlend: 0 + - _TextureNoise: 0 + - _UVSec: 0 + - _UseTexAnimation: 0 + - _VertexAnimation: 0 + - _ZTest1: 5 + - _ZTest2: 2 + - _ZWrite: 0 + - _xTexcoordMove: 1 + - _yTexcoordMove: 1 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 1, g: 1, b: 1, a: 0} + - _RimColor: {r: 1, g: 1, b: 1, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 2.9960785, g: 2.2588236, b: 0.6745098, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_38_Materials/Effect_38_Mark.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_38_Materials/Effect_38_Mark.mat.meta new file mode 100644 index 0000000..a5536f7 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_38_Materials/Effect_38_Mark.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 9c8bd82ef359d8a4ba28e8cdc7a86838 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_38_Materials/Effect_38_Mark.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_38_Materials/Effect_38_Particle.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_38_Materials/Effect_38_Particle.mat new file mode 100644 index 0000000..6625b34 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_38_Materials/Effect_38_Particle.mat @@ -0,0 +1,168 @@ +%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: Effect_38_Particle + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_ShaderKeywords: IS_SOFT_PARTICLES IS_TEXTURE_BLEND IS_UNITY_PARTICLE_INSTANCING_ENABLED + _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + 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} + - _FixedMaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 1071ab01a543d1c4a91150e2ed7bbb08, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, 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} + m_Floats: + - _BlendDst: 1 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 6 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 0 + - _MaskOffsetFactor: 1 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 1 + - _NoiseScale: 1 + - _NormalAnimate: 0 + - _NormalAnimateSpeed: 1 + - _NormalDistortion: 0 + - _NormalDistortionFactor: 1 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 0 + - _RimScale: 1 + - _RimStrength: 1 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexPath: 1 + - _TexPosMove: 0.08 + - _TexcoordMove: 0 + - _TexcoordMoveStrength: 2 + - _TextureAnimate: 0 + - _TextureAnimateSpeed: 1 + - _TextureAnimateStyle: 1 + - _TextureBlend: 1 + - _TextureNoise: 0 + - _UVSec: 0 + - _UseTexAnimation: 0 + - _VertexAnimation: 0 + - _ZTest1: 5 + - _ZTest2: 2 + - _ZWrite: 0 + - _xTexcoordMove: 1 + - _yTexcoordMove: 1 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 1, g: 1, b: 1, a: 0} + - _RimColor: {r: 1, g: 1, b: 1, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 3.6705883, g: 2.164706, b: 0.84705883, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_38_Materials/Effect_38_Particle.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_38_Materials/Effect_38_Particle.mat.meta new file mode 100644 index 0000000..642d0e7 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_38_Materials/Effect_38_Particle.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: c763e54e1b87ef247b074a24e50d5239 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_38_Materials/Effect_38_Particle.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_38_Materials/Effect_38_Ring.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_38_Materials/Effect_38_Ring.mat new file mode 100644 index 0000000..ea5be54 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_38_Materials/Effect_38_Ring.mat @@ -0,0 +1,168 @@ +%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: Effect_38_Ring + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_ShaderKeywords: IS_SOFT_PARTICLES IS_TEXTURE_BLEND IS_UNITY_PARTICLE_INSTANCING_ENABLED + _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + 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} + - _FixedMaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: e99a9bdab939cc84396941770a4d4aa1, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, 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} + m_Floats: + - _BlendDst: 1 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 2 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 0 + - _MaskOffsetFactor: 1 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 1 + - _NoiseScale: 1 + - _NormalAnimate: 0 + - _NormalAnimateSpeed: 1 + - _NormalDistortion: 0 + - _NormalDistortionFactor: 1 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 0 + - _RimScale: 1 + - _RimStrength: 1 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexPath: 1 + - _TexPosMove: 0.08 + - _TexcoordMove: 0 + - _TexcoordMoveStrength: 2 + - _TextureAnimate: 0 + - _TextureAnimateSpeed: 1 + - _TextureAnimateStyle: 1 + - _TextureBlend: 1 + - _TextureNoise: 0 + - _UVSec: 0 + - _UseTexAnimation: 0 + - _VertexAnimation: 0 + - _ZTest1: 5 + - _ZTest2: 2 + - _ZWrite: 0 + - _xTexcoordMove: 1 + - _yTexcoordMove: 1 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 1, g: 1, b: 1, a: 0} + - _RimColor: {r: 1, g: 1, b: 1, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 2.9960785, g: 2.2588236, b: 0.6745098, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_38_Materials/Effect_38_Ring.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_38_Materials/Effect_38_Ring.mat.meta new file mode 100644 index 0000000..869333b --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_38_Materials/Effect_38_Ring.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: f6da8e6f5ea47c04d872ec28bccced88 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_38_Materials/Effect_38_Ring.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_38_Materials/Effect_38_Smoke.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_38_Materials/Effect_38_Smoke.mat new file mode 100644 index 0000000..30bc150 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_38_Materials/Effect_38_Smoke.mat @@ -0,0 +1,168 @@ +%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: Effect_38_Smoke + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_ShaderKeywords: IS_NORMAL_ANIMATE IS_NORMAL_DISTORTION IS_SOFT_PARTICLES IS_TEXTURE_BLEND + IS_UNITY_PARTICLE_INSTANCING_ENABLED _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + 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} + - _FixedMaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 3eed06b33b3f2a14e8740685c6ce348b, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: b1df31c32ef1d4f428c40f70fa84a503, type: 3} + m_Scale: {x: 10, y: 10} + 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: + - _BlendDst: 1 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 2.5 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 0 + - _MaskOffsetFactor: 1 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 1 + - _NoiseScale: 1 + - _NormalAnimate: 1 + - _NormalAnimateSpeed: 0.5 + - _NormalDistortion: 1 + - _NormalDistortionFactor: 0.1 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 0 + - _RimScale: 1 + - _RimStrength: 1 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexPath: 1 + - _TexPosMove: 0.08 + - _TexcoordMove: 0 + - _TexcoordMoveStrength: 2 + - _TextureAnimate: 0 + - _TextureAnimateSpeed: 1 + - _TextureAnimateStyle: 1 + - _TextureBlend: 1 + - _TextureNoise: 0 + - _UVSec: 0 + - _UseTexAnimation: 0 + - _VertexAnimation: 0 + - _ZTest1: 5 + - _ZTest2: 2 + - _ZWrite: 0 + - _xTexcoordMove: 1 + - _yTexcoordMove: 1 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 1, g: 1, b: 1, a: 0} + - _RimColor: {r: 1, g: 1, b: 1, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 1.6874442, g: 1.4001614, b: 0.6924889, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_38_Materials/Effect_38_Smoke.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_38_Materials/Effect_38_Smoke.mat.meta new file mode 100644 index 0000000..062e4a9 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_38_Materials/Effect_38_Smoke.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: c4c76538567ab214cb92cae2c834fccf +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_38_Materials/Effect_38_Smoke.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_49_Materials.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_49_Materials.meta new file mode 100644 index 0000000..8a17b6f --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_49_Materials.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6f8834f76ce302e42a658b58da77d54e +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_49_Materials/Effect_49_Block.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_49_Materials/Effect_49_Block.mat new file mode 100644 index 0000000..b56e039 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_49_Materials/Effect_49_Block.mat @@ -0,0 +1,168 @@ +%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: Effect_49_Block + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_ShaderKeywords: IS_MASK_FADE IS_NORMAL_ANIMATE IS_NORMAL_DISTORTION IS_SOFT_PARTICLES + IS_TEXTURE_ANIMATE IS_UNITY_PARTICLE_INSTANCING_ENABLED _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + 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} + - _FixedMaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 67b8806fa9373774088013c2e7a9a59c, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, type: 3} + m_Scale: {x: 1, y: 10} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 2800000, guid: 1dd87d263698bdd489172bf9aa265da1, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 1, y: 1} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 2800000, guid: 708d24fa8e8cc804aba4ce74d4e6a1b1, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, 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} + m_Floats: + - _BlendDst: 10 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 4 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 5 + - _MaskCutOut: 1 + - _MaskFade: 1 + - _MaskOffsetFactor: 1 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 1 + - _NoiseScale: 0.01 + - _NormalAnimate: 1 + - _NormalAnimateSpeed: 0.15 + - _NormalDistortion: 1 + - _NormalDistortionFactor: 1 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 0 + - _RimScale: 2 + - _RimStrength: 1 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexPath: 1 + - _TexPosMove: 1 + - _TexcoordMove: 0 + - _TexcoordMoveStrength: 15 + - _TextureAnimate: 1 + - _TextureAnimateSpeed: 1 + - _TextureAnimateStyle: 2 + - _TextureBlend: 0 + - _TextureNoise: 0 + - _UVSec: 0 + - _UseTexAnimation: 0 + - _VertexAnimation: 0 + - _ZTest1: 5 + - _ZTest2: 2 + - _ZWrite: 0 + - _xTexcoordMove: 0 + - _yTexcoordMove: 1 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 0, g: 0, b: 0, a: 0} + - _RimColor: {r: 0.9716981, g: 0, b: 0.009329386, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 0.22908245, g: 1.0678564, b: 3.7358046, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_49_Materials/Effect_49_Block.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_49_Materials/Effect_49_Block.mat.meta new file mode 100644 index 0000000..a9f2fdc --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_49_Materials/Effect_49_Block.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 8c58fb4c36346174e9e73d5278ec9fc0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_49_Materials/Effect_49_Block.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_49_Materials/Effect_49_Decal.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_49_Materials/Effect_49_Decal.mat new file mode 100644 index 0000000..185b3cd --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_49_Materials/Effect_49_Decal.mat @@ -0,0 +1,147 @@ +%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: Effect_49_Decal + m_Shader: {fileID: 4800000, guid: 416d9dd6e46c1c5408e8ed3f0d48c1bc, type: 3} + m_ShaderKeywords: IS_MASK_FADE IS_NORMAL_ANIMATE IS_NORMAL_DISTORTION IS_SOFT_PARTICLES + IS_TEXTURE_ANIMATE + 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} + - _FixedMaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 3cb02bf457cde1b48af42b67ee413532, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 2800000, guid: 62f7d3d5517e2504b8afc94e091397e1, 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} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, 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} + m_Floats: + - _BlendDst: 1 + - _BlendSrc: 5 + - _BumpScale: 1 + - _ColorFactor: 5 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 1 + - _MaskOffsetFactor: 1 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 0 + - _NoiseNormalFactor: 1 + - _NoiseScale: 1 + - _NormalAnimate: 1 + - _NormalAnimateSpeed: 0.25 + - _NormalDistortion: 1 + - _NormalDistortionFactor: 1 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 0 + - _RimLight: 0 + - _RimScale: 1 + - _RimStrength: 1 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexPath: 1 + - _TexPosMove: 0 + - _TexcoordMove: 0 + - _TexcoordMoveStrength: 0 + - _TextureAnimate: 1 + - _TextureAnimateSpeed: 3 + - _TextureAnimateStyle: 1 + - _TextureBlend: 0 + - _TextureNoise: 0 + - _UVSec: 0 + - _VertexAnimation: 0 + - _ZTest1: 5 + - _ZWrite: 0 + - _xTexcoordMove: 0 + - _yTexcoordMove: 0 + m_Colors: + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 1, g: 1, b: 1, a: 0} + - _RimColor: {r: 1, g: 1, b: 1, a: 1} + - _TintColor: {r: 0.3764706, g: 1.7254902, b: 5.992157, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_49_Materials/Effect_49_Decal.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_49_Materials/Effect_49_Decal.mat.meta new file mode 100644 index 0000000..1e491ee --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_49_Materials/Effect_49_Decal.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 0736838338d41264aa953ebd42f27d02 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_49_Materials/Effect_49_Decal.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_49_Materials/Effect_49_Explosion.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_49_Materials/Effect_49_Explosion.mat new file mode 100644 index 0000000..746e33b --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_49_Materials/Effect_49_Explosion.mat @@ -0,0 +1,168 @@ +%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: Effect_49_Explosion + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_ShaderKeywords: IS_NORMAL_ANIMATE IS_NORMAL_DISTORTION IS_SOFT_PARTICLES IS_TEXTURE_BLEND + IS_UNITY_PARTICLE_INSTANCING_ENABLED _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + 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} + - _FixedMaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 671295aebdbc0564db4de71d9f1dca47, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, type: 3} + m_Scale: {x: 10, y: 10} + 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: + - _BlendDst: 10 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 5 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 0 + - _MaskOffsetFactor: 1 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 1 + - _NoiseScale: 1 + - _NormalAnimate: 1 + - _NormalAnimateSpeed: 1 + - _NormalDistortion: 1 + - _NormalDistortionFactor: 0.05 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 0 + - _RimScale: 1 + - _RimStrength: 1 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexPath: 1 + - _TexPosMove: 0.08 + - _TexcoordMove: 0 + - _TexcoordMoveStrength: 2 + - _TextureAnimate: 0 + - _TextureAnimateSpeed: 1 + - _TextureAnimateStyle: 1 + - _TextureBlend: 1 + - _TextureNoise: 0 + - _UVSec: 0 + - _UseTexAnimation: 0 + - _VertexAnimation: 0 + - _ZTest1: 5 + - _ZTest2: 2 + - _ZWrite: 0 + - _xTexcoordMove: 1 + - _yTexcoordMove: 1 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 1, g: 1, b: 1, a: 0} + - _RimColor: {r: 1, g: 1, b: 1, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 0.10980392, g: 0.6117647, b: 1.4980392, a: 0.15686275} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_49_Materials/Effect_49_Explosion.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_49_Materials/Effect_49_Explosion.mat.meta new file mode 100644 index 0000000..391fa12 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_49_Materials/Effect_49_Explosion.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 37bbc38a6b9627043b0c4e4f02ab6c7e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_49_Materials/Effect_49_Explosion.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_49_Materials/Effect_49_Particle.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_49_Materials/Effect_49_Particle.mat new file mode 100644 index 0000000..7aa3851 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_49_Materials/Effect_49_Particle.mat @@ -0,0 +1,167 @@ +%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: Effect_49_Particle + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_ShaderKeywords: IS_SOFT_PARTICLES IS_UNITY_PARTICLE_INSTANCING_ENABLED _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + 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} + - _FixedMaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 1071ab01a543d1c4a91150e2ed7bbb08, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, 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} + m_Floats: + - _BlendDst: 1 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 8 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 0 + - _MaskOffsetFactor: 1 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 1 + - _NoiseScale: 1 + - _NormalAnimate: 0 + - _NormalAnimateSpeed: 1 + - _NormalDistortion: 0 + - _NormalDistortionFactor: 1 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 0 + - _RimScale: 1 + - _RimStrength: 1 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexPath: 1 + - _TexPosMove: 0.08 + - _TexcoordMove: 0 + - _TexcoordMoveStrength: 2 + - _TextureAnimate: 0 + - _TextureAnimateSpeed: 1 + - _TextureAnimateStyle: 1 + - _TextureBlend: 0 + - _TextureNoise: 0 + - _UVSec: 0 + - _UseTexAnimation: 0 + - _VertexAnimation: 0 + - _ZTest1: 5 + - _ZTest2: 2 + - _ZWrite: 0 + - _xTexcoordMove: 1 + - _yTexcoordMove: 1 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 1, g: 1, b: 1, a: 0} + - _RimColor: {r: 1, g: 1, b: 1, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 0.28235295, g: 1.6313726, b: 5.992157, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_49_Materials/Effect_49_Particle.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_49_Materials/Effect_49_Particle.mat.meta new file mode 100644 index 0000000..bcb874c --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_49_Materials/Effect_49_Particle.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 187639e913954af4191e0cf82ccb89cb +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_49_Materials/Effect_49_Particle.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_54_Materials.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_54_Materials.meta new file mode 100644 index 0000000..07cb579 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_54_Materials.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b4508b7270c69ca45ba5e7a6bf1150d0 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_54_Materials/Effect_54_Beam.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_54_Materials/Effect_54_Beam.mat new file mode 100644 index 0000000..8829f36 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_54_Materials/Effect_54_Beam.mat @@ -0,0 +1,171 @@ +%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: Effect_54_Beam + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_ShaderKeywords: IS_NORMAL_ANIMATE IS_NORMAL_DISTORTION IS_SOFT_PARTICLES IS_TEXCOORD_MOVE + IS_TEXTURE_ANIMATE IS_UNITY_PARTICLE_INSTANCING_ENABLED IS_USE_SECOND_COLOR _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + 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} + - _FixedMaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 0} + m_Scale: {x: 2, y: 2} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, type: 3} + m_Scale: {x: 2, y: 2} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 2800000, guid: 1dd87d263698bdd489172bf9aa265da1, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 1, y: 1} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 2800000, guid: 708d24fa8e8cc804aba4ce74d4e6a1b1, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, 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} + m_Floats: + - _BlendDst: 1 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 0.5 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 2 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 5 + - _MaskCutOut: 1 + - _MaskFade: 0 + - _MaskOffsetFactor: 1 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 1 + - _NoiseScale: 0.01 + - _NormalAnimate: 1 + - _NormalAnimateSpeed: 0.15 + - _NormalDistortion: 1 + - _NormalDistortionFactor: 2 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 0 + - _RimScale: 2 + - _RimStrength: 1 + - _SecondColor: 1 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexLength: 1 + - _TexPath: 1 + - _TexPosMove: 1 + - _TexcoordMove: 1 + - _TexcoordMoveStrength: 1 + - _TextureAnimate: 1 + - _TextureAnimateSpeed: 0.15 + - _TextureAnimateStyle: 2 + - _TextureBlend: 0 + - _TextureNoise: 0 + - _UVSec: 0 + - _UseTexAnimation: 0 + - _VertexAnimation: 0 + - _ZTest1: 5 + - _ZTest2: 2 + - _ZWrite: 0 + - _xTexcoordMove: 0 + - _yTexcoordMove: 1 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 0.1, g: 1, b: 2, a: 1} + - _RimColor: {r: 0.9716981, g: 0, b: 0.009329386, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 1, g: 1, b: 1, a: 1} + - _TintColor2: {r: 1.4142135, g: 1.4142135, b: 1.4142135, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_54_Materials/Effect_54_Beam.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_54_Materials/Effect_54_Beam.mat.meta new file mode 100644 index 0000000..3e5ce73 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_54_Materials/Effect_54_Beam.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: ac094bd784be0224da22c47c10fc6535 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_54_Materials/Effect_54_Beam.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_54_Materials/Effect_54_Beam_2.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_54_Materials/Effect_54_Beam_2.mat new file mode 100644 index 0000000..58084b7 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_54_Materials/Effect_54_Beam_2.mat @@ -0,0 +1,171 @@ +%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: Effect_54_Beam_2 + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_ShaderKeywords: IS_MASK_FADE IS_NORMAL_ANIMATE IS_NORMAL_DISTORTION IS_SOFT_PARTICLES + IS_TEXCOORD_MOVE IS_TEXTURE_ANIMATE IS_UNITY_PARTICLE_INSTANCING_ENABLED _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + 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} + - _FixedMaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 3cb02bf457cde1b48af42b67ee413532, type: 3} + m_Scale: {x: 2, y: 2} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, type: 3} + m_Scale: {x: 2, y: 2} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 2800000, guid: ced23a9040cdc9341b98674e347b4844, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 1, y: 1} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 2800000, guid: 708d24fa8e8cc804aba4ce74d4e6a1b1, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, type: 3} + m_Scale: {x: 1, y: 7.5} + 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: + - _BlendDst: 1 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 7.5 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 1 + - _MaskOffsetFactor: 0.5 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 1 + - _NoiseScale: 0.01 + - _NormalAnimate: 1 + - _NormalAnimateSpeed: 0.15 + - _NormalDistortion: 1 + - _NormalDistortionFactor: 1 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 0 + - _RimScale: 2 + - _RimStrength: 1 + - _SecondColor: 0 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexLength: 1 + - _TexPath: 1 + - _TexPosMove: 1 + - _TexcoordMove: 1 + - _TexcoordMoveStrength: 1 + - _TextureAnimate: 1 + - _TextureAnimateSpeed: 0.15 + - _TextureAnimateStyle: 2 + - _TextureBlend: 0 + - _TextureNoise: 0 + - _UVSec: 0 + - _UseTexAnimation: 0 + - _VertexAnimation: 0 + - _ZTest1: 5 + - _ZTest2: 2 + - _ZWrite: 0 + - _xTexcoordMove: 0 + - _yTexcoordMove: 1 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 0.1, g: 1, b: 2, a: 1} + - _RimColor: {r: 0.9716981, g: 0, b: 0.009329386, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 0.108008705, g: 0.57131326, b: 2.5442061, a: 1} + - _TintColor2: {r: 1, g: 1, b: 1, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_54_Materials/Effect_54_Beam_2.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_54_Materials/Effect_54_Beam_2.mat.meta new file mode 100644 index 0000000..74b6e1b --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_54_Materials/Effect_54_Beam_2.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 74131d533649a614b90855583f4f4f9d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_54_Materials/Effect_54_Beam_2.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_54_Materials/Effect_54_Particle.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_54_Materials/Effect_54_Particle.mat new file mode 100644 index 0000000..ad94c85 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_54_Materials/Effect_54_Particle.mat @@ -0,0 +1,168 @@ +%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: Effect_54_Particle + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_ShaderKeywords: IS_SOFT_PARTICLES IS_TEXTURE_BLEND IS_UNITY_PARTICLE_INSTANCING_ENABLED + _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + 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} + - _FixedMaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 1071ab01a543d1c4a91150e2ed7bbb08, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, 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} + m_Floats: + - _BlendDst: 1 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 3 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 0 + - _MaskOffsetFactor: 1 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 1 + - _NoiseScale: 1 + - _NormalAnimate: 0 + - _NormalAnimateSpeed: 1 + - _NormalDistortion: 0 + - _NormalDistortionFactor: 1 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 0 + - _RimScale: 1 + - _RimStrength: 1 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexPath: 1 + - _TexPosMove: 0.08 + - _TexcoordMove: 0 + - _TexcoordMoveStrength: 2 + - _TextureAnimate: 0 + - _TextureAnimateSpeed: 1 + - _TextureAnimateStyle: 1 + - _TextureBlend: 1 + - _TextureNoise: 0 + - _UVSec: 0 + - _UseTexAnimation: 0 + - _VertexAnimation: 0 + - _ZTest1: 5 + - _ZTest2: 2 + - _ZWrite: 0 + - _xTexcoordMove: 1 + - _yTexcoordMove: 1 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 1, g: 1, b: 1, a: 0} + - _RimColor: {r: 1, g: 1, b: 1, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 1.2438549, g: 4.126262, b: 7.9908247, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_54_Materials/Effect_54_Particle.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_54_Materials/Effect_54_Particle.mat.meta new file mode 100644 index 0000000..a89454b --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_54_Materials/Effect_54_Particle.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 0b4ad82d47261f549803cccda442bcf1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_54_Materials/Effect_54_Particle.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_54_Materials/Effect_54_Ring.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_54_Materials/Effect_54_Ring.mat new file mode 100644 index 0000000..965597c --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_54_Materials/Effect_54_Ring.mat @@ -0,0 +1,171 @@ +%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: Effect_54_Ring + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_ShaderKeywords: IS_NORMAL_ANIMATE IS_NORMAL_DISTORTION IS_SOFT_PARTICLES IS_TEXTURE_BLEND + IS_UNITY_PARTICLE_INSTANCING_ENABLED _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + 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} + - _FixedMaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: e99a9bdab939cc84396941770a4d4aa1, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseNormal: + m_Texture: {fileID: 2800000, guid: 708d24fa8e8cc804aba4ce74d4e6a1b1, type: 3} + m_Scale: {x: 10, y: 10} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: c8620e029366c5c4eb99569cc94a6564, type: 3} + m_Scale: {x: 10, y: 10} + 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: + - _BlendDst: 1 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 5 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 0 + - _MaskOffsetFactor: 1 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 0.001 + - _NoiseScale: 1 + - _NormalAnimate: 1 + - _NormalAnimateSpeed: 1 + - _NormalDistortion: 1 + - _NormalDistortionFactor: 0.02 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 0 + - _RimScale: 1 + - _RimStrength: 1 + - _SecondColor: 0 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexLength: 1 + - _TexPath: 1 + - _TexPosMove: 0.08 + - _TexcoordMove: 0 + - _TexcoordMoveStrength: 2 + - _TextureAnimate: 0 + - _TextureAnimateSpeed: 1 + - _TextureAnimateStyle: 1.02 + - _TextureBlend: 1 + - _TextureNoise: 0 + - _UVSec: 0 + - _UseTexAnimation: 0 + - _VertexAnimation: 0 + - _ZTest1: 5 + - _ZTest2: 2 + - _ZWrite: 0 + - _xTexcoordMove: 1 + - _yTexcoordMove: 1 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 1, g: 1, b: 1, a: 0} + - _RimColor: {r: 1, g: 1, b: 1, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 0.48963454, g: 1.6746936, b: 7.984806, a: 1} + - _TintColor2: {r: 1, g: 1, b: 1, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_54_Materials/Effect_54_Ring.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_54_Materials/Effect_54_Ring.mat.meta new file mode 100644 index 0000000..dbc50d2 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_54_Materials/Effect_54_Ring.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 0619ff19ffc7b50469f5faaca5fd5255 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_54_Materials/Effect_54_Ring.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_54_Materials/Effect_54_Ring_2.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_54_Materials/Effect_54_Ring_2.mat new file mode 100644 index 0000000..ca87dde --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_54_Materials/Effect_54_Ring_2.mat @@ -0,0 +1,171 @@ +%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: Effect_54_Ring_2 + m_Shader: {fileID: 4800000, guid: 1d58a8e283100ea4f8435e923e54553e, type: 3} + m_ShaderKeywords: IS_MASK_FADE IS_NORMAL_ANIMATE IS_NORMAL_DISTORTION IS_SOFT_PARTICLES + IS_TEXTURE_BLEND IS_UNITY_PARTICLE_INSTANCING_ENABLED _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + m_EnableInstancingVariants: 1 + 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} + - _FixedMaskTex: + m_Texture: {fileID: 2800000, guid: 72389a8f0765f984c9e63a00214df658, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 67b8806fa9373774088013c2e7a9a59c, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 5, y: 5} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, type: 3} + m_Scale: {x: 20, y: 20} + 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: + - _BlendDst: 1 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 4 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 1 + - _MaskOffsetFactor: 1 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 1 + - _NoiseScale: 1 + - _NormalAnimate: 1 + - _NormalAnimateSpeed: 1 + - _NormalDistortion: 1 + - _NormalDistortionFactor: 0.03 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 1 + - _RimLight: 0 + - _RimScale: 1 + - _RimStrength: 1 + - _SecondColor: 0 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexLength: 1 + - _TexPath: 1 + - _TexPosMove: 0.08 + - _TexcoordMove: 0 + - _TexcoordMoveStrength: 2 + - _TextureAnimate: 0 + - _TextureAnimateSpeed: 1 + - _TextureAnimateStyle: 2 + - _TextureBlend: 1 + - _TextureNoise: 0 + - _UVSec: 0 + - _UseTexAnimation: 0 + - _VertexAnimation: 0 + - _ZTest1: 5 + - _ZTest2: 2 + - _ZWrite: 0 + - _xTexcoordMove: 1 + - _yTexcoordMove: 1 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 1, g: 1, b: 1, a: 0} + - _RimColor: {r: 1, g: 1, b: 1, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 0.51557404, g: 2.4346552, b: 5.4708138, a: 1} + - _TintColor2: {r: 1, g: 1, b: 1, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_54_Materials/Effect_54_Ring_2.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_54_Materials/Effect_54_Ring_2.mat.meta new file mode 100644 index 0000000..0fda607 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_54_Materials/Effect_54_Ring_2.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: b08c28319234b044aa75646d4f388c36 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_54_Materials/Effect_54_Ring_2.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_Common_Materials.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_Common_Materials.meta new file mode 100644 index 0000000..e969500 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_Common_Materials.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: fb913d5fc314fc04c9eebdf17b2ac0e0 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_Common_Materials/Effect_Common_Distort_2.mat b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_Common_Materials/Effect_Common_Distort_2.mat new file mode 100644 index 0000000..69e8c27 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_Common_Materials/Effect_Common_Distort_2.mat @@ -0,0 +1,174 @@ +%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: Effect_Common_Distort_2 + m_Shader: {fileID: 4800000, guid: d5fe0e4073f9dee4dbe96b37559868ea, type: 3} + m_ShaderKeywords: IS_SOFT_PARTICLES IS_TEXTURE_BLEND _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 0 + 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} + - _FixedMaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LinePassTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 9064114c999c2ed468fef5ddd82bd85d, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Mask: + m_Texture: {fileID: 10300, guid: 0000000000000000f000000000000000, type: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskDistortion: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MaskTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseNormal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NoiseTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalMap: + m_Texture: {fileID: 2800000, guid: ce980884c1c08aa43b5b6ff52e35f249, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _NormalTex: + m_Texture: {fileID: 2800000, guid: 9a9498ac1b0e2484dbe7cdeee7973e50, 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} + m_Floats: + - _BlendDst: 10 + - _BlendOp: 0 + - _BlendSrc: 5 + - _BumpScale: 1 + - _CameraFadingEnabled: 0 + - _CameraFarFadeDistance: 2 + - _CameraNearFadeDistance: 1 + - _ColorFactor: 2 + - _ColorMode: 0 + - _Cull: 2 + - _Culling: 0 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DistortFactor: 300 + - _DistortionBlend: 0.5 + - _DistortionEnabled: 0 + - _DistortionStrength: 1 + - _DistortionStrengthScaled: 0 + - _DstBlend: 10 + - _EmissionEnabled: 0 + - _FlipbookMode: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Impact: 0 + - _ImpactSize: 0.5 + - _InvFade: 1 + - _Lighting: 0 + - _LightingEnabled: 0 + - _LinePass: 0 + - _MaskAnimatedSpeed: 1 + - _MaskCutOut: 1 + - _MaskFade: 0 + - _MaskOffsetFactor: 1 + - _Metallic: 0 + - _MixedMove: 0 + - _Mode: 3 + - _NoiseNormalFactor: 1 + - _NoiseScale: 1 + - _NormalAnimate: 0 + - _NormalAnimateSpeed: 1 + - _NormalDistortion: 0 + - _NormalDistortionFactor: 1 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _ParticleInstancing: 0 + - _RimLight: 0 + - _RimScale: 1 + - _RimStrength: 1 + - _SmoothnessTextureChannel: 0 + - _SoftParticle: 1 + - _SoftParticlesEnabled: 0 + - _SoftParticlesFarFadeDistance: 1 + - _SoftParticlesNearFadeDistance: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _TexPath: 1 + - _TexPosMove: 0.08 + - _TexcoordMove: 0 + - _TexcoordMoveStrength: 2 + - _TextureAnimate: 0 + - _TextureAnimateSpeed: 1 + - _TextureAnimateStyle: 1 + - _TextureBlend: 1 + - _TextureNoise: 0 + - _UVSec: 0 + - _VertexAnimation: 0 + - _ZTest1: 5 + - _ZWrite: 0 + - _xTexcoordMove: 1 + - _yTexcoordMove: 1 + m_Colors: + - _CameraFadeParams: {r: 0, g: Infinity, b: 0, a: 0} + - _Color: {r: 3.9999995, g: 3.9999995, b: 3.9999995, a: 1} + - _ColorAddSubDiff: {r: 0, g: 0, b: 0, a: 0} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _NoiseValue: {r: 1, g: 1, b: 1, a: 0} + - _RimColor: {r: 1, g: 1, b: 1, a: 1} + - _SoftParticleFadeParams: {r: 0, g: 0, b: 0, a: 0} + - _TintColor: {r: 3.5814202, g: 3.5814202, b: 3.5814202, a: 1} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_Common_Materials/Effect_Common_Distort_2.mat.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_Common_Materials/Effect_Common_Distort_2.mat.meta new file mode 100644 index 0000000..7eed477 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_Common_Materials/Effect_Common_Distort_2.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 0480e6fe95832f34f8d1e2bef6652327 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/AllEffects/EffectsSet_1(NotScriptBased)/Materials/Effect_Common_Materials/Effect_Common_Distort_2.mat + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Models.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Models.meta new file mode 100644 index 0000000..1449981 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Models.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 366095ebd4f993743a470b851cf71185 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Models/BlackHole.fbx b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Models/BlackHole.fbx new file mode 100644 index 0000000..bce9d57 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Models/BlackHole.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7d3a10fc3bcf61d83e2969506d6c7bbb482b14f8574a1682ae081df3ddc7002 +size 16748 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Models/BlackHole.fbx.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Models/BlackHole.fbx.meta new file mode 100644 index 0000000..59f824f --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Models/BlackHole.fbx.meta @@ -0,0 +1,104 @@ +fileFormatVersion: 2 +guid: c60f91306d6d77945b5091d8ebaf8102 +ModelImporter: + serializedVersion: 23 + fileIDToRecycleName: + 100000: //RootNode + 400000: //RootNode + 2100000: No Name + 2300000: //RootNode + 3300000: //RootNode + 4300000: BlackholeRing + externalObjects: {} + materials: + importMaterials: 1 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 1 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 1 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + optimizeMeshForGPU: 1 + keepQuads: 0 + weldVertices: 1 + preserveHierarchy: 0 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVPackMargin: 4 + useFileScale: 1 + previousCalculatedGlobalScale: 1 + hasPreviousCalculatedGlobalScale: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + importAnimation: 1 + copyAvatar: 0 + humanDescription: + serializedVersion: 2 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + animationType: 0 + humanoidOversampling: 1 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/Models/BlackHole.fbx + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Models/Cylinder_01.fbx b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Models/Cylinder_01.fbx new file mode 100644 index 0000000..f0264f2 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Models/Cylinder_01.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfff8d800ef8120f1694d286751c192ea8f77f383cfd0fd660d3290037fb623f +size 12828 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Models/Cylinder_01.fbx.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Models/Cylinder_01.fbx.meta new file mode 100644 index 0000000..bc639da --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Models/Cylinder_01.fbx.meta @@ -0,0 +1,104 @@ +fileFormatVersion: 2 +guid: 34a79e3062c48b541931c7a1a3be49f4 +ModelImporter: + serializedVersion: 23 + fileIDToRecycleName: + 100000: //RootNode + 400000: //RootNode + 2100000: No Name + 2300000: //RootNode + 3300000: //RootNode + 4300000: Cylinder_01 + externalObjects: {} + materials: + importMaterials: 1 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 1 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 1 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + optimizeMeshForGPU: 1 + keepQuads: 0 + weldVertices: 1 + preserveHierarchy: 0 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVPackMargin: 4 + useFileScale: 1 + previousCalculatedGlobalScale: 1 + hasPreviousCalculatedGlobalScale: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + importAnimation: 1 + copyAvatar: 0 + humanDescription: + serializedVersion: 2 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + animationType: 0 + humanoidOversampling: 1 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/Models/Cylinder_01.fbx + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Models/Halfsphare.fbx b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Models/Halfsphare.fbx new file mode 100644 index 0000000..96cf857 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Models/Halfsphare.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15156fecc28a7c18f800214299000ad0d17e0f1527e1cbf8746f706ac3c95260 +size 24236 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Models/Halfsphare.fbx.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Models/Halfsphare.fbx.meta new file mode 100644 index 0000000..5536862 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Models/Halfsphare.fbx.meta @@ -0,0 +1,104 @@ +fileFormatVersion: 2 +guid: 465687908dca84f408c953b5829654e6 +ModelImporter: + serializedVersion: 23 + fileIDToRecycleName: + 100000: //RootNode + 400000: //RootNode + 2100000: No Name + 2300000: //RootNode + 3300000: //RootNode + 4300000: HalfSphere + externalObjects: {} + materials: + importMaterials: 1 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 1 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 1 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + optimizeMeshForGPU: 1 + keepQuads: 0 + weldVertices: 1 + preserveHierarchy: 0 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVPackMargin: 4 + useFileScale: 1 + previousCalculatedGlobalScale: 1 + hasPreviousCalculatedGlobalScale: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + importAnimation: 1 + copyAvatar: 0 + humanDescription: + serializedVersion: 2 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + animationType: 0 + humanoidOversampling: 1 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/Models/Halfsphare.fbx + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Models/Line_01.fbx b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Models/Line_01.fbx new file mode 100644 index 0000000..2bd075b --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Models/Line_01.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48c3299e9f9ad028592c9f3e93daa2a7a72b2e619c4544f2330e4a40dc88c30 +size 18380 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Models/Line_01.fbx.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Models/Line_01.fbx.meta new file mode 100644 index 0000000..7eaf8d0 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Models/Line_01.fbx.meta @@ -0,0 +1,104 @@ +fileFormatVersion: 2 +guid: 754d1cfc325e52c44a87f61dd84186d6 +ModelImporter: + serializedVersion: 23 + fileIDToRecycleName: + 100000: //RootNode + 400000: //RootNode + 2100000: No Name + 2300000: //RootNode + 3300000: //RootNode + 4300000: Line_01 + externalObjects: {} + materials: + importMaterials: 1 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 1 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 1 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + optimizeMeshForGPU: 1 + keepQuads: 0 + weldVertices: 1 + preserveHierarchy: 0 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVPackMargin: 4 + useFileScale: 1 + previousCalculatedGlobalScale: 1 + hasPreviousCalculatedGlobalScale: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + importAnimation: 1 + copyAvatar: 0 + humanDescription: + serializedVersion: 2 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + animationType: 0 + humanoidOversampling: 1 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/Models/Line_01.fbx + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Models/Line_02.fbx b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Models/Line_02.fbx new file mode 100644 index 0000000..d1440e7 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Models/Line_02.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6a2a5571a6c44b6f05bf52fda06da74d810be411286f10a05b9d200ce29de0b +size 18556 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Models/Line_02.fbx.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Models/Line_02.fbx.meta new file mode 100644 index 0000000..09d0934 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Models/Line_02.fbx.meta @@ -0,0 +1,104 @@ +fileFormatVersion: 2 +guid: f6c5683176673814891e1453f706efc6 +ModelImporter: + serializedVersion: 23 + fileIDToRecycleName: + 100000: //RootNode + 400000: //RootNode + 2100000: No Name + 2300000: //RootNode + 3300000: //RootNode + 4300000: Line_02 + externalObjects: {} + materials: + importMaterials: 1 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 1 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 1 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + optimizeMeshForGPU: 1 + keepQuads: 0 + weldVertices: 1 + preserveHierarchy: 0 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVPackMargin: 4 + useFileScale: 1 + previousCalculatedGlobalScale: 1 + hasPreviousCalculatedGlobalScale: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + importAnimation: 1 + copyAvatar: 0 + humanDescription: + serializedVersion: 2 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + animationType: 0 + humanoidOversampling: 1 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/Models/Line_02.fbx + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Models/LongSlide.fbx b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Models/LongSlide.fbx new file mode 100644 index 0000000..12f7ff4 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Models/LongSlide.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef0e78ef9aeb67c6f70e46b3c8c26216b1638ebf6edfb32de09ed16488d4e69c +size 11900 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Models/LongSlide.fbx.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Models/LongSlide.fbx.meta new file mode 100644 index 0000000..4cbcbff --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Models/LongSlide.fbx.meta @@ -0,0 +1,104 @@ +fileFormatVersion: 2 +guid: 03ca77aae3dfa74448635f505731b06d +ModelImporter: + serializedVersion: 23 + fileIDToRecycleName: + 100000: //RootNode + 400000: //RootNode + 2100000: No Name + 2300000: //RootNode + 3300000: //RootNode + 4300000: LongSlide + externalObjects: {} + materials: + importMaterials: 1 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 1 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 1 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + optimizeMeshForGPU: 1 + keepQuads: 0 + weldVertices: 1 + preserveHierarchy: 0 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVPackMargin: 4 + useFileScale: 1 + previousCalculatedGlobalScale: 1 + hasPreviousCalculatedGlobalScale: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + importAnimation: 1 + copyAvatar: 0 + humanDescription: + serializedVersion: 2 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + animationType: 0 + humanoidOversampling: 1 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/Models/LongSlide.fbx + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Models/Ring_2.fbx b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Models/Ring_2.fbx new file mode 100644 index 0000000..a214a19 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Models/Ring_2.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2fc2f14590952bfd4c03cdbdd1874ecb4094f319f4a74c6fad6357d220c0d81 +size 13052 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Models/Ring_2.fbx.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Models/Ring_2.fbx.meta new file mode 100644 index 0000000..4ec7d38 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Models/Ring_2.fbx.meta @@ -0,0 +1,104 @@ +fileFormatVersion: 2 +guid: fdfc131c9d90df948955fbad04f7738b +ModelImporter: + serializedVersion: 23 + fileIDToRecycleName: + 100000: //RootNode + 400000: //RootNode + 2100000: No Name + 2300000: //RootNode + 3300000: //RootNode + 4300000: ringmesh_2 + externalObjects: {} + materials: + importMaterials: 1 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 1 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 1 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + optimizeMeshForGPU: 1 + keepQuads: 0 + weldVertices: 1 + preserveHierarchy: 0 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVPackMargin: 4 + useFileScale: 1 + previousCalculatedGlobalScale: 1 + hasPreviousCalculatedGlobalScale: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + importAnimation: 1 + copyAvatar: 0 + humanDescription: + serializedVersion: 2 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + animationType: 0 + humanoidOversampling: 1 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/Models/Ring_2.fbx + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Models/Tornado.fbx b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Models/Tornado.fbx new file mode 100644 index 0000000..b50f614 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Models/Tornado.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bc4575bd74deac65ba68f78f9e0400772d747935601b6f0d2ed651c20de0e1b +size 24044 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Models/Tornado.fbx.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Models/Tornado.fbx.meta new file mode 100644 index 0000000..d076f52 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Models/Tornado.fbx.meta @@ -0,0 +1,104 @@ +fileFormatVersion: 2 +guid: a2b0e97338753bf4da65fa5204eafcd9 +ModelImporter: + serializedVersion: 23 + fileIDToRecycleName: + 100000: //RootNode + 400000: //RootNode + 2100000: No Name + 2300000: //RootNode + 3300000: //RootNode + 4300000: Tornado + externalObjects: {} + materials: + importMaterials: 1 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 1 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 1 + meshes: + lODScreenPercentages: [] + globalScale: 100 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + optimizeMeshForGPU: 1 + keepQuads: 0 + weldVertices: 1 + preserveHierarchy: 0 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVPackMargin: 4 + useFileScale: 1 + previousCalculatedGlobalScale: 1 + hasPreviousCalculatedGlobalScale: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + importAnimation: 1 + copyAvatar: 0 + humanDescription: + serializedVersion: 2 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + animationType: 0 + humanoidOversampling: 1 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/Models/Tornado.fbx + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts.meta new file mode 100644 index 0000000..a5737e1 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d36f7048a98092548b519009db03cafd +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/ChangeSizeColor.cs b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/ChangeSizeColor.cs new file mode 100644 index 0000000..288bb95 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/ChangeSizeColor.cs @@ -0,0 +1,67 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEngine.UI; + +public class ChangeSizeColor : MonoBehaviour { + + public Gradient color; + public Color m_changeColor; + //[HideInInspector] + public GameObject m_obj; + Renderer[] m_rnds; + float color_Value; + bool isChangeColor = false; + public Image m_ColorHandler; + public Text m_intensityfactor; + float intensity = 2.0f; + + private void Update() + { + m_changeColor = color.Evaluate(color_Value); + m_ColorHandler.color = m_changeColor; + + if(isChangeColor && m_obj != null) + { + m_rnds = m_obj.GetComponentsInChildren(true); + + foreach(Renderer rend in m_rnds) + { + for (int i = 0; i < rend.materials.Length; i++) + { + rend.materials[i].SetColor("_TintColor", m_changeColor* intensity); + rend.materials[i].SetColor("_Color", m_changeColor* intensity); + rend.materials[i].SetColor("_RimColor", m_changeColor* intensity); + } + } + } + } + + public void ChangeEffectColor(float value) + { + color_Value = value; + } + + public void CheckIsColorChange(bool value) + { + isChangeColor = value; + } + + public void CheckColorState() + { + if (isChangeColor) + isChangeColor = false; + else + isChangeColor = true; + } + + public void GetIntensityFactor() + { + float m_intensity = float.Parse(m_intensityfactor.text.ToString()); + if (m_intensity > 0) + intensity = m_intensity; + else + intensity = 0; + + } +} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/ChangeSizeColor.cs.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/ChangeSizeColor.cs.meta new file mode 100644 index 0000000..fb564e5 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/ChangeSizeColor.cs.meta @@ -0,0 +1,18 @@ +fileFormatVersion: 2 +guid: 7922d6fd03f084a4589b0e0bdfd866eb +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/Scripts/ChangeSizeColor.cs + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/DelayActive.cs b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/DelayActive.cs new file mode 100644 index 0000000..6eef351 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/DelayActive.cs @@ -0,0 +1,24 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +public class DelayActive : MonoBehaviour +{ + public GameObject[] m_activeObj; + public float m_delayTime; + float m_time; + + private void Start() + { + m_time = Time.time; + } + + // Update is called once per frame + void Update() + { + if (Time.time > m_time + m_delayTime) + for(int i = 0; i< m_activeObj.Length; i++) + if(m_activeObj[i] != null) + m_activeObj[i].SetActive(true); + } +} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/DelayActive.cs.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/DelayActive.cs.meta new file mode 100644 index 0000000..a4be8d2 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/DelayActive.cs.meta @@ -0,0 +1,18 @@ +fileFormatVersion: 2 +guid: 0abfeb6d7faeeef489e7b8fa31a364fc +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/Scripts/DelayActive.cs + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/DestroyObject.cs b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/DestroyObject.cs new file mode 100644 index 0000000..daf89ad --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/DestroyObject.cs @@ -0,0 +1,22 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +public class DestroyObject : MonoBehaviour +{ + public float m_DestroytTime; + float m_Time; + + // Start is called before the first frame update + void Start() + { + m_Time = Time.time; + } + + // Update is called once per frame + void Update() + { + if (Time.time > m_Time + m_DestroytTime) + Destroy(gameObject); + } +} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/DestroyObject.cs.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/DestroyObject.cs.meta new file mode 100644 index 0000000..d5da66b --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/DestroyObject.cs.meta @@ -0,0 +1,18 @@ +fileFormatVersion: 2 +guid: 61fe273677430814fb90e92f252f7adb +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/Scripts/DestroyObject.cs + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/ForEffects.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/ForEffects.meta new file mode 100644 index 0000000..1575be3 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/ForEffects.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 30a3ce2579e790246893d8dcb25961e3 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/ForEffects/LookAtTarget.cs b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/ForEffects/LookAtTarget.cs new file mode 100644 index 0000000..ab3ddb8 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/ForEffects/LookAtTarget.cs @@ -0,0 +1,14 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +public class LookAtTarget : MonoBehaviour +{ + public Transform Target; + + // Update is called once per frame + void Update() + { + transform.LookAt(Target); + } +} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/ForEffects/LookAtTarget.cs.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/ForEffects/LookAtTarget.cs.meta new file mode 100644 index 0000000..3d98ced --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/ForEffects/LookAtTarget.cs.meta @@ -0,0 +1,18 @@ +fileFormatVersion: 2 +guid: 428747b9c5a2b3f49b82899f59c5b89d +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/Scripts/ForEffects/LookAtTarget.cs + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/ForEffects/MultipleObjectsMake.cs b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/ForEffects/MultipleObjectsMake.cs new file mode 100644 index 0000000..756b5c3 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/ForEffects/MultipleObjectsMake.cs @@ -0,0 +1,53 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +public class MultipleObjectsMake : _ObjectsMakeBase +{ + public float m_startDelay; + public int m_makeCount; + public float m_makeDelay; + public Vector3 m_randomPos; + public Vector3 m_randomRot; + public Vector3 m_randomScale; + public bool isObjectAttachToParent = true; + + float m_Time; + float m_Time2; + float m_delayTime; + float m_count; + float m_scalefactor; + + + void Start() + { + m_Time = m_Time2 = Time.time; + m_scalefactor = VariousEffectsScene.m_gaph_scenesizefactor; //transform.parent.localScale.x; + } + + + void Update() + { + if (Time.time > m_Time + m_startDelay) + { + if (Time.time > m_Time2 + m_makeDelay && m_count < m_makeCount) + { + Vector3 m_pos = transform.position + GetRandomVector(m_randomPos)* m_scalefactor; + Quaternion m_rot = transform.rotation * Quaternion.Euler(GetRandomVector(m_randomRot)); + + + for (int i = 0; i < m_makeObjs.Length; i++) + { + GameObject m_obj = Instantiate(m_makeObjs[i], m_pos, m_rot); + Vector3 m_scale = (m_makeObjs[i].transform.localScale + GetRandomVector2(m_randomScale)); + if(isObjectAttachToParent) + m_obj.transform.parent = this.transform; + m_obj.transform.localScale = m_scale; + } + + m_Time2 = Time.time; + m_count++; + } + } + } +} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/ForEffects/MultipleObjectsMake.cs.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/ForEffects/MultipleObjectsMake.cs.meta new file mode 100644 index 0000000..022cbe6 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/ForEffects/MultipleObjectsMake.cs.meta @@ -0,0 +1,18 @@ +fileFormatVersion: 2 +guid: 7994742634f09eb4a88499d7e511671d +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/Scripts/ForEffects/MultipleObjectsMake.cs + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/ForEffects/ObjectMove.cs b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/ForEffects/ObjectMove.cs new file mode 100644 index 0000000..63e849b --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/ForEffects/ObjectMove.cs @@ -0,0 +1,52 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +public class ObjectMove : MonoBehaviour +{ + public float time; + float m_time; + float m_time2; + public float MoveSpeed = 10; + public bool AbleHit; + public float HitDelay; + public GameObject m_hitObject; + GameObject m_makedObject; + public float MaxLength; + public float DestroyTime2; + float m_scalefactor; + + private void Start() + { + m_scalefactor = VariousEffectsScene.m_gaph_scenesizefactor;//transform.parent.localScale.x; + m_time = Time.time; + m_time2 = Time.time; + } + + void LateUpdate() + { + if (Time.time > m_time + time) + Destroy(gameObject); + + transform.Translate(Vector3.forward * Time.deltaTime * MoveSpeed * m_scalefactor); + if(AbleHit) + { + RaycastHit hit; + if (Physics.Raycast(transform.position, transform.forward, out hit, MaxLength)) + { + if (Time.time > m_time2 + HitDelay) + { + m_time2 = Time.time; + HitObj(hit); + } + } + } + } + + void HitObj(RaycastHit hit) + { + m_makedObject = Instantiate(m_hitObject, hit.point, Quaternion.LookRotation(hit.normal)).gameObject; + Destroy(m_makedObject, DestroyTime2); + } + +} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/ForEffects/ObjectMove.cs.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/ForEffects/ObjectMove.cs.meta new file mode 100644 index 0000000..7e7fd06 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/ForEffects/ObjectMove.cs.meta @@ -0,0 +1,18 @@ +fileFormatVersion: 2 +guid: aaa5cb770ff50fd45be824531ff122e5 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/Scripts/ForEffects/ObjectMove.cs + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/ForEffects/ObjectMoveDestroy.cs b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/ForEffects/ObjectMoveDestroy.cs new file mode 100644 index 0000000..55a4ebb --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/ForEffects/ObjectMoveDestroy.cs @@ -0,0 +1,92 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +public class ObjectMoveDestroy : MonoBehaviour +{ + public GameObject m_gameObjectMain; + public GameObject m_gameObjectTail; + GameObject m_makedObject; + public Transform m_hitObject; + public float maxLength; + public bool isDestroy; + public float ObjectDestroyTime; + public float TailDestroyTime; + public float HitObjectDestroyTime; + public float maxTime = 1; + public float MoveSpeed = 10; + public bool isCheckHitTag; + public string mtag; + public bool isShieldActive = false; + public bool isHitMake = true; + + float time; + bool ishit; + float m_scalefactor; + + private void Start() + { + m_scalefactor = VariousEffectsScene.m_gaph_scenesizefactor;//transform.parent.localScale.x; + time = Time.time; + } + + void LateUpdate() + { + transform.Translate(Vector3.forward * Time.deltaTime * MoveSpeed * m_scalefactor); + if (!ishit) + { + RaycastHit hit; + if (Physics.Raycast(transform.position, transform.forward, out hit, maxLength)) + HitObj(hit); + } + + if (isDestroy) + { + if (Time.time > time + ObjectDestroyTime) + { + MakeHitObject(transform); + Destroy(gameObject); + } + } + } + + void MakeHitObject(RaycastHit hit) + { + if (isHitMake == false) + return; + m_makedObject = Instantiate(m_hitObject, hit.point, Quaternion.LookRotation(hit.normal)).gameObject; + m_makedObject.transform.parent = transform.parent; + m_makedObject.transform.localScale = new Vector3(1, 1, 1); + } + + void MakeHitObject(Transform point) + { + if (isHitMake == false) + return; + m_makedObject = Instantiate(m_hitObject, point.transform.position, point.rotation).gameObject; + m_makedObject.transform.parent = transform.parent; + m_makedObject.transform.localScale = new Vector3(1, 1, 1); + } + + void HitObj(RaycastHit hit) + { + if (isCheckHitTag) + if (hit.transform.tag != mtag) + return; + ishit = true; + if(m_gameObjectTail) + m_gameObjectTail.transform.parent = null; + MakeHitObject(hit); + + if (isShieldActive) + { + ShieldActivate m_sc = hit.transform.GetComponent(); + if(m_sc) + m_sc.AddHitObject(hit.point); + } + + Destroy(this.gameObject); + Destroy(m_gameObjectTail, TailDestroyTime); + Destroy(m_makedObject, HitObjectDestroyTime); + } +} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/ForEffects/ObjectMoveDestroy.cs.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/ForEffects/ObjectMoveDestroy.cs.meta new file mode 100644 index 0000000..bd4f901 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/ForEffects/ObjectMoveDestroy.cs.meta @@ -0,0 +1,18 @@ +fileFormatVersion: 2 +guid: 56e17d10c4e020147ae8b5e49a85fd67 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/Scripts/ForEffects/ObjectMoveDestroy.cs + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/ForEffects/ShieldActivate.cs b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/ForEffects/ShieldActivate.cs new file mode 100644 index 0000000..a620766 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/ForEffects/ShieldActivate.cs @@ -0,0 +1,56 @@ +using System.Collections; +using System.Collections.Generic; +using System.Linq; +using UnityEngine; + +public class ShieldActivate : MonoBehaviour +{ + public float ImpactLife; + Vector4[] points; + Material m_material; + List Hitpoints; + MeshRenderer m_meshRenderer; + float time; + + void Start() + { + time = Time.time; + points = new Vector4[30]; + Hitpoints = new List(); + m_meshRenderer = GetComponent(); + m_material = m_meshRenderer.material; + } + + void Update() + { + //Set material ( based on Shader_IntegratedEffect ) point array + m_material.SetVectorArray("_Points", points); + + //Find available points + Hitpoints = Hitpoints + .Select(s => new Vector4(s.x, s.y, s.z, s.w + Time.deltaTime / ImpactLife)) + .Where(w => w.w <= 1).ToList(); + + //Fill empty point for list circle + if (Time.time > time + 0.1f) + { + time = Time.time; + AddEmpty(); + } + + //Set array + Hitpoints.ToArray().CopyTo(points, 0); + } + + public void AddHitObject(Vector3 position) + { + position -= transform.position; + position = position.normalized/2; + Hitpoints.Add(new Vector4(position.x, position.y, position.z, 0)); + } + + public void AddEmpty() + { + Hitpoints.Add(new Vector4(0, 0, 0, 0)); + } +} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/ForEffects/ShieldActivate.cs.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/ForEffects/ShieldActivate.cs.meta new file mode 100644 index 0000000..7c1d16b --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/ForEffects/ShieldActivate.cs.meta @@ -0,0 +1,18 @@ +fileFormatVersion: 2 +guid: 0af683078061c2d4dabef0494034564f +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/Scripts/ForEffects/ShieldActivate.cs + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/ForEffects/_ObjectsMakeBase.cs b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/ForEffects/_ObjectsMakeBase.cs new file mode 100644 index 0000000..e7ef8a5 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/ForEffects/_ObjectsMakeBase.cs @@ -0,0 +1,36 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +public class _ObjectsMakeBase : MonoBehaviour +{ + public GameObject[] m_makeObjs; + + public float GetRandomValue(float value) + { + return Random.Range(-value, value); + } + + public float GetRandomValue2(float value) + { + return Random.Range(0, value); + } + + public Vector3 GetRandomVector(Vector3 value) + { + Vector3 result; + result.x = GetRandomValue(value.x); + result.y = GetRandomValue(value.y); + result.z = GetRandomValue(value.z); + return result; + } + + public Vector3 GetRandomVector2(Vector3 value) + { + Vector3 result; + result.x = GetRandomValue2(value.x); + result.y = GetRandomValue2(value.y); + result.z = GetRandomValue2(value.z); + return result; + } +} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/ForEffects/_ObjectsMakeBase.cs.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/ForEffects/_ObjectsMakeBase.cs.meta new file mode 100644 index 0000000..d6403d0 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/ForEffects/_ObjectsMakeBase.cs.meta @@ -0,0 +1,18 @@ +fileFormatVersion: 2 +guid: 08e176ba4d4040f4bb39df40a8ee47ab +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/Scripts/ForEffects/_ObjectsMakeBase.cs + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/NewMaterialChange.cs b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/NewMaterialChange.cs new file mode 100644 index 0000000..d60d29b --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/NewMaterialChange.cs @@ -0,0 +1,62 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +public class NewMaterialChange : MonoBehaviour +{ + public bool isParticleSystem; + public Material m_inputMaterial; + Material m_objectMaterial; + MeshRenderer m_meshRenderer; + ParticleSystemRenderer m_particleRenderer; + public float m_timeToReduce; + public float m_reduceFactor =0.0f; + float m_time; + float m_submitReduceFactor; + float m_cutOutFactor; + public float m_upFactor; + float upFactor; + bool isupfactor = true; + + void Awake() + { + if (isParticleSystem) + { + m_particleRenderer = gameObject.GetComponent(); + m_particleRenderer.material = m_inputMaterial; + m_objectMaterial = m_particleRenderer.material; + } + else + { + m_meshRenderer = gameObject.GetComponent(); + m_meshRenderer.material = m_inputMaterial; + m_objectMaterial = m_meshRenderer.material; + } + m_submitReduceFactor = 0.0f; + m_cutOutFactor = 1.0f; + } + + void LateUpdate() + { + m_time += Time.deltaTime; + if (m_time > m_timeToReduce) + { + m_cutOutFactor -= m_submitReduceFactor; + m_submitReduceFactor = Mathf.Lerp(m_submitReduceFactor, m_reduceFactor, Time.deltaTime / 50); + } + + m_cutOutFactor = Mathf.Clamp01(m_cutOutFactor); + if (m_cutOutFactor <= 0 && m_time > m_timeToReduce) + Destroy(gameObject); + m_objectMaterial.SetFloat("_MaskCutOut", m_cutOutFactor); + + if (m_upFactor != 0 && isupfactor != false) + { + upFactor += m_upFactor * Time.deltaTime; + upFactor = Mathf.Clamp01(upFactor); + m_objectMaterial.SetFloat("_MaskCutOut", upFactor); + if (upFactor >= 1) + isupfactor = false; + } + } +} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/NewMaterialChange.cs.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/NewMaterialChange.cs.meta new file mode 100644 index 0000000..e7093bc --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/NewMaterialChange.cs.meta @@ -0,0 +1,18 @@ +fileFormatVersion: 2 +guid: f875761d9a11f1b448dda0f9ee26e0f0 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/Scripts/NewMaterialChange.cs + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/ScaleFactorApplyToMaterial.cs b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/ScaleFactorApplyToMaterial.cs new file mode 100644 index 0000000..e6bd495 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/ScaleFactorApplyToMaterial.cs @@ -0,0 +1,32 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +public class ScaleFactorApplyToMaterial : MonoBehaviour +{ + ParticleSystemRenderer ps; + float value; + float m_scaleFactor; + float m_changedFactor; + + private void Awake() + { + ps = this.GetComponent(); + value = ps.material.GetFloat("_NoiseScale"); + m_scaleFactor = 1; + } + + void Update() + { + m_changedFactor = VariousEffectsScene.m_gaph_scenesizefactor; //Please change this in your actual project + + if(m_scaleFactor != m_changedFactor && m_changedFactor <= 1) + { + m_scaleFactor = m_changedFactor; + if (m_scaleFactor <= 0.5f) + ps.material.SetFloat("_NoiseScale", value * 0.25f); + else + ps.material.SetFloat("_NoiseScale", value * m_scaleFactor); + } + } +} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/ScaleFactorApplyToMaterial.cs.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/ScaleFactorApplyToMaterial.cs.meta new file mode 100644 index 0000000..e1acedd --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/ScaleFactorApplyToMaterial.cs.meta @@ -0,0 +1,18 @@ +fileFormatVersion: 2 +guid: 3de6923c0c6c4164193436b82af45485 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/Scripts/ScaleFactorApplyToMaterial.cs + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/VariousEffectsScene.cs b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/VariousEffectsScene.cs new file mode 100644 index 0000000..dea047a --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/VariousEffectsScene.cs @@ -0,0 +1,98 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEngine.UI; + +public class VariousEffectsScene : MonoBehaviour { + + public Transform[] m_effects; + public GameObject scaleform; + public GameObject[] m_destroyObjects = new GameObject[30]; + public GameObject FriendlyEnemyObject; + GameObject gm; + public int inputLocation; + public Text m_scalefactor; + public static float m_gaph_scenesizefactor = 1; + public Text m_effectName; + int index = 0; + + void Awake() + { + inputLocation = 0; + m_effectName.text = m_effects[index].name.ToString(); + MakeObject(); + + } + + void Update () + { + InputKey(); + if (index < 70) + FriendlyEnemyObject.SetActive(false); + else + FriendlyEnemyObject.SetActive(true); + + } + + void InputKey() + { + if (Input.GetKeyDown(KeyCode.Z)) + { + if (index <= 0) + index = m_effects.Length - 1; + else + index--; + + MakeObject(); + } + + if (Input.GetKeyDown(KeyCode.X)) + { + if (index >= m_effects.Length-1) + index = 0; + else + index++; + + MakeObject(); + } + + if (Input.GetKeyDown(KeyCode.C)) + MakeObject(); + } + + void MakeObject() + { + DestroyGameObject(); + gm = Instantiate(m_effects[index], + m_effects[index].transform.position, + m_effects[index].transform.rotation).gameObject; + m_effectName.text = (index+1) +" : "+m_effects[index].name.ToString(); + scaleform.transform.position = gm.transform.position; + gm.transform.parent = scaleform.transform; + gm.transform.localScale = new Vector3(1,1,1); + float submit_scalefactor = m_gaph_scenesizefactor; + if (index < 70) + submit_scalefactor *= 0.5f; + gm.transform.localScale = new Vector3(submit_scalefactor, submit_scalefactor, submit_scalefactor); + m_destroyObjects[inputLocation] = gm; + inputLocation++; + } + + void DestroyGameObject() + { + for(int i = 0; i < inputLocation; i++) + { + Destroy(m_destroyObjects[i]); + } + inputLocation = 0; + } + + public void GetSizeFactor() + { + m_gaph_scenesizefactor = float.Parse(m_scalefactor.text.ToString()); + float submit_scalefactor = m_gaph_scenesizefactor; + if (index < 70) + submit_scalefactor *= 0.5f; + gm.transform.localScale = new Vector3(submit_scalefactor, submit_scalefactor, submit_scalefactor); + } +} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/VariousEffectsScene.cs.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/VariousEffectsScene.cs.meta new file mode 100644 index 0000000..b07ff3b --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/VariousEffectsScene.cs.meta @@ -0,0 +1,18 @@ +fileFormatVersion: 2 +guid: 2e52beb180dd3474e9c353e1ad5103ea +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/Scripts/VariousEffectsScene.cs + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/VariousMouseOrbit.cs b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/VariousMouseOrbit.cs new file mode 100644 index 0000000..a7d8145 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/VariousMouseOrbit.cs @@ -0,0 +1,85 @@ +using UnityEngine; +using System.Collections; + +public class VariousMouseOrbit : MonoBehaviour +{ + + Transform Target; + public Transform[] Targets; + int i = 0; + public float distance; + + public float xSpeed = 250.0f; + public float ySpeed = 120.0f; + + public float yMinLimit = -20.0f; + public float yMaxLimit = 80.0f; + + private float x = 0.0f; + private float y = 0.0f; + public float CameraDist = 10; + + // Use this for initialization + void Start() + { + Vector3 angles = transform.eulerAngles; + x = angles.x+50; + y = angles.y; + distance = 30; + Target = Targets[0]; + if (this.GetComponent() == true) + GetComponent().freezeRotation = true; + } + + // Update is called once per frame + void LateUpdate() + { + if(Input.GetKeyDown(KeyCode.V)) + { + if (i < Targets.Length-1) + i++; + else if (i >= Targets.Length-1) + i = 0; + Target = Targets[i]; + } + + + if (Input.GetKey(KeyCode.Mouse1)) + { + if (Target) + { + x += Input.GetAxis("Mouse X") * xSpeed * 0.02f; + y += Input.GetAxis("Mouse Y") * ySpeed * 0.05f; + + y = ClampAngle(y, yMinLimit, yMaxLimit); + + Quaternion rotation = Quaternion.Euler(y, x, 0); + Vector3 position = rotation * new Vector3(0, 0, -distance) + Target.position; + + transform.rotation = rotation; + transform.position = position; + distance = CameraDist; + + if (Input.GetKey(KeyCode.W)) + { + CameraDist -= Time.deltaTime * 20f; + CameraDist = Mathf.Clamp(CameraDist,2,80); + } + if (Input.GetKey(KeyCode.S)) + { + CameraDist += Time.deltaTime * 20f; + CameraDist = Mathf.Clamp(CameraDist, 2, 80); + } + } + } + } + + float ClampAngle(float ag, float min, float max) + { + if (ag < -360) + ag += 360; + if (ag > 360) + ag -= 360; + return Mathf.Clamp(ag, min, max); + } +} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/VariousMouseOrbit.cs.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/VariousMouseOrbit.cs.meta new file mode 100644 index 0000000..1414f86 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/VariousMouseOrbit.cs.meta @@ -0,0 +1,18 @@ +fileFormatVersion: 2 +guid: 97b9bd758e22b2a4b87e8b1077adfbe5 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/Scripts/VariousMouseOrbit.cs + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/VariousRotateObject.cs b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/VariousRotateObject.cs new file mode 100644 index 0000000..c1f4eb4 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/VariousRotateObject.cs @@ -0,0 +1,26 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +public class VariousRotateObject : MonoBehaviour { + + public Vector3 RotateOffset; + Vector3 RotateMulti; + public float m_delay; + float m_Time; + + void Awake() + { + m_Time = Time.time; + } + + // Update is called once per frame + void Update () + { + if (Time.time < m_Time + m_delay) + return; + RotateMulti = Vector3.Lerp(RotateMulti,RotateOffset,Time.deltaTime); + + transform.rotation *= Quaternion.Euler(RotateMulti); + } +} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/VariousRotateObject.cs.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/VariousRotateObject.cs.meta new file mode 100644 index 0000000..ce63f0f --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/VariousRotateObject.cs.meta @@ -0,0 +1,18 @@ +fileFormatVersion: 2 +guid: c60185437c0b10a459916383991063f9 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/Scripts/VariousRotateObject.cs + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/VariousTranslateMove.cs b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/VariousTranslateMove.cs new file mode 100644 index 0000000..c72b53c --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/VariousTranslateMove.cs @@ -0,0 +1,38 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +public class VariousTranslateMove : MonoBehaviour { + + public float m_power; + public float m_reduceTime; + public bool m_fowardMove; + public bool m_rightMove; + public bool m_upMove; + public float m_changedFactor; + float m_Time; + + void Start() + { + m_Time = Time.time; + } + + void Update () { + m_changedFactor = VariousEffectsScene.m_gaph_scenesizefactor; + + if (m_fowardMove) + transform.Translate(transform.forward * m_power * m_changedFactor * Time.deltaTime * 150); + if (m_rightMove) + transform.Translate(transform.right * m_power* m_changedFactor * Time.deltaTime * 150); + if (m_upMove) + transform.Translate(transform.up * m_power* m_changedFactor * Time.deltaTime * 150); + + //transform.LookAt(Vector3.zero); + + /*if (m_Time + m_reduceTime < Time.time && m_reduceTime != 0) + { + m_power -= Time.deltaTime; + m_power = Mathf.Clamp01(m_power); + }*/ + } +} diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/VariousTranslateMove.cs.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/VariousTranslateMove.cs.meta new file mode 100644 index 0000000..a6c4f37 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Scripts/VariousTranslateMove.cs.meta @@ -0,0 +1,18 @@ +fileFormatVersion: 2 +guid: 8b7e4542b8b17544db0decd919ea64b1 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/Scripts/VariousTranslateMove.cs + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Shader_ForEffects.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Shader_ForEffects.meta new file mode 100644 index 0000000..43c6651 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Shader_ForEffects.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 225874495cfe643468f2236ebd4b0a63 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Shader_ForEffects/Shader_Decal.shader b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Shader_ForEffects/Shader_Decal.shader new file mode 100644 index 0000000..fb36eae --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Shader_ForEffects/Shader_Decal.shader @@ -0,0 +1,183 @@ +Shader "GAPH Custom Shader/Shader_Decal"{ + Properties{ + [Header(Main Settings)] + [Space] + [HDR]_TintColor("TintColor",Color) = (1,1,1,1) + [Toggle(IS_USE_SECOND_TINTCOLOR)]_SecondTintColor("Is Use Second Tintcolor",int) = 0 + [HDR]_TintColor2("TintColor2",Color) = (1,1,1,1) + _MainTex("MainTexture",2D) = "white" {} + _ColorFactor("Color Factor", float) = 1 + [Toggle(IS_TEXTURE_ANIMATE)]_TextureAnimate("Is Texture Animate",int) = 0 + _TextureAnimateSpeed("Texture Animate Speed",float) = 1.0 + [Toggle(IS_NORMAL_DISTORTION)]_NormalDistortion("Is Normal Distortion",int) = 0 + _NormalTex("Normal Tex",2D) = "white"{} + _NormalDistortionFactor("Normal Distortion Factor",float) = 1.0 + [Toggle(IS_NORMAL_ANIMATE)]_NormalAnimate("Is Normal Animate",int) = 0 + _NormalAnimateSpeed("Normal Animate Speed",float) = 1.0 + [Toggle(IS_MASK_FADE)]_MaskFade("Is Mask Fade",int) = 0 + _MaskTex("Mask Tex",2D) = "white"{} + _MaskCutOut("Mask CutOut",Range(0,1)) = 1 + [Header(Render)] + [Space] + [Toggle]_ZWrite("ZWrite On/Off", int) = 0 + [Enum(Culling Off,0, Culling Front, 1, Culling Back, 2)]_Culling("Culling",float) = 2 + [Enum(UnityEngine.Rendering.BlendMode)]_BlendSrc("BlendSrc", float) = 1 + [Enum(UnityEngine.Rendering.BlendMode)]_BlendDst("BlendDst", float) = 1 + _ZTest1("_ZTest1", int) = 5 + } + + Category{ + Tags{ "Queue" = "Transparent" "IgnoreProjector" = "True" "RenderType" = "Transparent"} + Blend[_BlendSrc][_BlendDst] + Cull Front + ZTest[_ZTest1] + ZWrite Off + + + SubShader{ + Pass{ + CGPROGRAM + #pragma vertex vert + #pragma fragment frag + #pragma multi_compile_instancing + + #pragma shader_feature IS_USE_SECOND_TINTCOLOR + #pragma shader_feature IS_MASK_FADE + #pragma shader_feature IS_TEXTURE_ANIMATE + #pragma shader_feature IS_NORMAL_ANIMATE + #pragma shader_feature IS_NORMAL_DISTORTION + + #include "UnityCG.cginc" + + sampler2D _MainTex; + sampler2D _NormalTex; + sampler2D _MaskTex; + + sampler2D _CameraDepthTexture; + + float4 _MainTex_ST; + float4 _NormalTex_ST; + float4 _MaskTex_ST; + float4 _MainTex_NextFrame; + float _MaskCutOut; + + UNITY_INSTANCING_BUFFER_START(data) + UNITY_DEFINE_INSTANCED_PROP(float4x4, _InverseTransformMatrix) + #define _InverseTransformMatrix_arr data + UNITY_DEFINE_INSTANCED_PROP(half4, _TintColor) + #define _TintColor_arr data + #ifdef IS_USE_SECOND_TINTCOLOR + UNITY_DEFINE_INSTANCED_PROP(half4, _TintColor2) + #define _TintColor2_arr data + #endif + UNITY_DEFINE_INSTANCED_PROP(half, _NormalAnimateSpeed) + #define _NormalAnimateSpeed_arr data + UNITY_DEFINE_INSTANCED_PROP(half, _TextureAnimateSpeed) + #define _TextureAnimateSpeed_arr data + UNITY_DEFINE_INSTANCED_PROP(half, _NormalDistortionFactor) + #define _NormalDistortionFactor_arr data + UNITY_DEFINE_INSTANCED_PROP(half, _ColorFactor) + #define _ColorFactor_arr data + UNITY_INSTANCING_BUFFER_END(data) + + struct appdata_t { + float4 vertex : POSITION; + float4 normal : NORMAL; + half4 color : COLOR; + float2 texcoord : TEXCOORD0; + UNITY_VERTEX_INPUT_INSTANCE_ID + }; + + struct v2f { + float4 vertex : SV_POSITION; + half4 color : COLOR; + float4 screenUV : TEXCOORD0; + float3 ray : TEXCOODR1; + float2 texcoord : TEXCOORD2; + float2 texcoord2 : TEXCOORD3; + float2 texcoord3 : TEXCOORD4; + float3 normal : TEXCOORD5; + UNITY_FOG_COORDS(7) + UNITY_VERTEX_INPUT_INSTANCE_ID + UNITY_VERTEX_OUTPUT_STEREO + }; + + v2f vert(appdata_t v) + { + v2f o; + UNITY_INITIALIZE_OUTPUT(v2f, o); + UNITY_SETUP_INSTANCE_ID(v); + UNITY_TRANSFER_INSTANCE_ID(v, o); + UNITY_INITIALIZE_VERTEX_OUTPUT_STEREO(o); + + o.vertex = UnityObjectToClipPos(v.vertex); + o.color = v.color; + + o.ray = UnityObjectToViewPos(v.vertex) * float3(-1, -1, 1); + o.screenUV = ComputeScreenPos(o.vertex); + o.normal = UnityObjectToWorldNormal(o.vertex); + + UNITY_TRANSFER_FOG(o, o.vertex); + return o; + } + + half4 frag(v2f i) : SV_Target + { + UNITY_SETUP_INSTANCE_ID(i); + i.ray = i.ray* (_ProjectionParams.z / i.ray.z); + + float depth = Linear01Depth(tex2Dproj(_CameraDepthTexture,i.screenUV)); + float4 vpos = float4(i.ray * depth, 1); + float3 wpos = mul(unity_CameraToWorld, vpos).xyz; + float3 opos = mul(unity_WorldToObject, float4(wpos,1)).xyz; + float3 objAbs = abs(opos); + clip(0.5f - objAbs); + + + i.texcoord = saturate(opos.xz + 0.5) * _MainTex_ST.xy + _MainTex_ST.zw; + i.texcoord2 = saturate(opos.xz + 0.5) * _NormalTex_ST.xy + _NormalTex_ST.zw; + i.texcoord3 = saturate(opos.xz + 0.5) * _MaskTex_ST.xy + _MaskTex_ST.zw; + + + #ifdef IS_NORMAL_DISTORTION + half2 distort = UnpackNormal(tex2D(_NormalTex, i.texcoord2 * 1.0f + (UNITY_ACCESS_INSTANCED_PROP(_NormalAnimateSpeed_arr, _NormalAnimateSpeed) * _Time / 20))).rg; + distort += UnpackNormal(tex2D(_NormalTex, i.texcoord2 * 1.0f - (UNITY_ACCESS_INSTANCED_PROP(_NormalAnimateSpeed_arr, _NormalAnimateSpeed)*_Time / 20) + float2(0.5f, 0.15f))).rg; + distort += UnpackNormal(tex2D(_NormalTex, i.texcoord2 * 0.5f - (UNITY_ACCESS_INSTANCED_PROP(_NormalAnimateSpeed_arr, _NormalAnimateSpeed)*_Time / 10) + float2(0.15f, 0.5f))).rg; + distort += UnpackNormal(tex2D(_NormalTex, i.texcoord2 * 0.5f - (UNITY_ACCESS_INSTANCED_PROP(_NormalAnimateSpeed_arr, _NormalAnimateSpeed)*_Time / 10) + float2(-0.5f, -0.15f))).rg; + i.texcoord.xy += distort.xy * UNITY_ACCESS_INSTANCED_PROP(_NormalDistortionFactor_arr, _NormalDistortionFactor); + #endif + + #ifdef IS_TEXTURE_ANIMATE + half4 tex = tex2D(_MainTex, i.texcoord.xy - (UNITY_ACCESS_INSTANCED_PROP(_TextureAnimateSpeed_arr, _TextureAnimateSpeed) * _Time / 10)); + tex *= tex2D(_MainTex, i.texcoord.xy - (UNITY_ACCESS_INSTANCED_PROP(_TextureAnimateSpeed_arr, _TextureAnimateSpeed) * _Time / 10) + float2(0.25f, -0.25f)); + half4 tex2 = tex2D(_MainTex, i.texcoord.xy + (UNITY_ACCESS_INSTANCED_PROP(_TextureAnimateSpeed_arr, _TextureAnimateSpeed) * _Time / 10)); + tex2 *= tex2D(_MainTex, i.texcoord.xy + (UNITY_ACCESS_INSTANCED_PROP(_TextureAnimateSpeed_arr, _TextureAnimateSpeed) * _Time / 10) + float2(0.15f, -0.15f)); + tex = (tex + tex2) / 1.5f; + #else + half4 tex = tex2D(_MainTex, i.texcoord); + #endif + + #ifdef IS_MASK_FADE + half mask_a =pow( saturate(tex2D(_MaskTex, i.texcoord3) - (1-_MaskCutOut)),1.5f); + #else + half mask_a = tex.a * _MaskCutOut; + #endif + #ifdef IS_USE_SECOND_TINTCOLOR + half4 res = tex * UNITY_ACCESS_INSTANCED_PROP(_TintColor2_arr, _TintColor2) * UNITY_ACCESS_INSTANCED_PROP(_ColorFactor_arr, _ColorFactor); + half alpha = res.a * i.color.a * mask_a * UNITY_ACCESS_INSTANCED_PROP(_ColorFactor_arr, _ColorFactor) * UNITY_ACCESS_INSTANCED_PROP(_TintColor2_arr, _TintColor2).a; + #else + half4 res = tex * UNITY_ACCESS_INSTANCED_PROP(_TintColor_arr, _TintColor) * UNITY_ACCESS_INSTANCED_PROP(_ColorFactor_arr, _ColorFactor); + half alpha = res.a * i.color.a * mask_a * UNITY_ACCESS_INSTANCED_PROP(_ColorFactor_arr, _ColorFactor) * UNITY_ACCESS_INSTANCED_PROP(_TintColor_arr, _TintColor).a; + #endif + res.a = alpha; + + if (dot(vpos, i.vertex) != 0) + return res; + else + return 0; + } + ENDCG + } + } + } +} \ No newline at end of file diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Shader_ForEffects/Shader_Decal.shader.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Shader_ForEffects/Shader_Decal.shader.meta new file mode 100644 index 0000000..917d5fc --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Shader_ForEffects/Shader_Decal.shader.meta @@ -0,0 +1,16 @@ +fileFormatVersion: 2 +guid: 416d9dd6e46c1c5408e8ed3f0d48c1bc +ShaderImporter: + externalObjects: {} + defaultTextures: [] + nonModifiableTextures: [] + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/Shader_ForEffects/Shader_Decal.shader + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Shader_ForEffects/Shader_DistortionEffect.shader b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Shader_ForEffects/Shader_DistortionEffect.shader new file mode 100644 index 0000000..b45722a --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Shader_ForEffects/Shader_DistortionEffect.shader @@ -0,0 +1,124 @@ +Shader "GAPH Custom Shader/Distortion Effect" { + Properties { + _TintColor ("Tint Color", Color) = (1,1,1,1) + _Mask ("Mask",2D) = "black"{} + _NormalMap ("Normalmap", 2D) = "bump" {} + _DistortFactor ("Distortion", Float) = 10 + _InvFade ("Soft Particles Factor", Range(0,10)) = 1.0 + } + + SubShader{ + GrabPass{ + "_GrabTexture" + } + + Tags{ "Queue" = "Transparent" "IgnoreProjector" = "True" "RenderType" = "Transparent" } + Blend SrcAlpha OneMinusSrcAlpha + Cull Off + Lighting Off + ZWrite Off + + Pass{ + + CGPROGRAM + #pragma vertex vert + #pragma fragment frag + #pragma fragmentoption ARB_precision_hint_fastest + #pragma multi_compile_particles + #include "UnityCG.cginc" + + struct appdata_t { + float4 vertex : POSITION; + float2 texcoord: TEXCOORD0; + fixed4 color : COLOR; + }; + + struct v2f { + float4 vertex : POSITION; + float4 uvgrab : TEXCOORD0; + float2 uvnormal : TEXCOORD1; + float2 uvmask : TEXCOORD2; + fixed4 color : COLOR; + #ifdef SOFTPARTICLES_ON + float4 projPos : TEXCOORD3; + #endif + }; + + fixed4 _TintColor; + + sampler2D _Mask; + sampler2D _NormalMap; + sampler2D _GrabTexture; + + float _DistortFactor; + float _ColorFactor; + + float4 _NormalMap_ST; + float4 _Mask_ST; + float4 _GrabTexture_TexelSize; + + v2f vert (appdata_t v) + { + v2f o; + o.vertex = UnityObjectToClipPos(v.vertex); + + #ifdef SOFTPARTICLES_ON + o.projPos = ComputeScreenPos (o.vertex); + COMPUTE_EYEDEPTH(o.projPos.z); + #endif + o.color = v.color; + + #if UNITY_UV_STARTS_AT_TOP + float scale = -1.0; + #else + float scale = 1.0; + #endif + + //Set uvgrab value + o.uvgrab.xy = (float2(o.vertex.x, o.vertex.y * scale) + o.vertex.w) * 0.5; + o.uvgrab.zw = o.vertex.zw; + + o.uvnormal = TRANSFORM_TEX( v.texcoord, _NormalMap ); + o.uvmask = TRANSFORM_TEX(v.texcoord,_Mask); + UNITY_TRANSFER_FOG(o, o.vertex); + return o; + } + + sampler2D _CameraDepthTexture; + float _InvFade; + + half4 frag( v2f i ) : COLOR + { + #ifdef SOFTPARTICLES_ON + float sceneZ = LinearEyeDepth(UNITY_SAMPLE_DEPTH(tex2Dproj(_CameraDepthTexture, UNITY_PROJ_COORD(i.projPos)))); + float partZ = i.projPos.z; + float fade = saturate(_InvFade * (sceneZ - partZ)); + i.color.a *= fade; + #endif + + //Set normal tex + half2 normal = UnpackNormal(tex2D(_NormalMap, i.uvnormal)).rg; + //Set distort factor using normal, GrabTexture + half2 distortValue = normal * _DistortFactor * _GrabTexture_TexelSize.xy; + //Amplify distort offset factor if graphic API is DX11 or METAL. + //OpenGLCore or OpenGL don't need this + #if defined(SHADER_API_D3D11) || defined(SHADER_API_METAL) + distortValue *= 10; + #endif + //Add new distort data to original grab value + i.uvgrab.xy = (distortValue * i.uvgrab.z) + i.uvgrab.xy; + + //Sample GrabTexture using updated grab value + half4 distort = tex2Dproj(_GrabTexture, UNITY_PROJ_COORD(i.uvgrab)); + half4 mask = tex2D(_Mask, i.uvmask); + + half4 res = distort; + //Compose all + res.a = _TintColor.a * i.color.a * mask.a; + UNITY_APPLY_FOG(i.fogCoord, res); + return res; + } + ENDCG + } + } +} \ No newline at end of file diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Shader_ForEffects/Shader_DistortionEffect.shader.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Shader_ForEffects/Shader_DistortionEffect.shader.meta new file mode 100644 index 0000000..d648623 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Shader_ForEffects/Shader_DistortionEffect.shader.meta @@ -0,0 +1,16 @@ +fileFormatVersion: 2 +guid: d5fe0e4073f9dee4dbe96b37559868ea +ShaderImporter: + externalObjects: {} + defaultTextures: [] + nonModifiableTextures: [] + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/Shader_ForEffects/Shader_DistortionEffect.shader + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Shader_ForEffects/Shader_IntegratedEffect.shader b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Shader_ForEffects/Shader_IntegratedEffect.shader new file mode 100644 index 0000000..1f94107 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Shader_ForEffects/Shader_IntegratedEffect.shader @@ -0,0 +1,565 @@ +Shader "GAPH Custom Shader/Shader_IntegradedEffect" +{ + Properties { + [Header(Main)] + [Space] + [HDR]_TintColor("Color",Color) = (1,1,1,1) + [Toggle(IS_USE_SECOND_COLOR)]_SecondColor("Is use second color",int) = 0 + [HDR]_TintColor2("Color2",Color) = (1,1,1,1) + _MainTex ("Main Tex", 2D) = "white" {} + _ColorFactor("Color Factor", float) = 1 + [Toggle(IS_TEXTURE_ANIMATE)]_TextureAnimate("Is Texture Animate",int) = 0 + _TextureAnimateSpeed("Texture Animate Speed",float) = 1.0 + _TextureAnimateStyle("Texture Animate Style", Range(0,2)) = 1 + [Toggle(IS_TEXTURE_ANIMATE_ADVANCED)]_TextureAnimateAdvanced("Is Texture Animate Advanced",int) = 0 //Need to check 'Is Texture Animate' + _MaxIndex("Texture Mix Count",int) = 2 + [Toggle(IS_TEXTURE_BLEND)]_TextureBlend("Is Texture Blend",int) = 0 + [Toggle(IS_UNITY_PARTICLE_INSTANCING_ENABLED)]_ParticleInstancing("Is Unity Paticle Instancing Enable",int) = 0 + [Toggle(IS_ALL_TEXTURE_STRAIGHT_MOVE)]_MixedMove("Is All Texture Straight Move",int) = 0 + _TexPosMove("xPosMove", Range(-1,1)) = 0 + [Toggle(IS_USE_ROTATE_UV)]_IsRotateAngle("Is Rotate Angle", int) = 0 + _RotateAngle("RotateAngle", Range(-1,1)) = 0 + [Header(Soft Particle)] + [Space] + [Toggle(IS_SOFT_PARTICLES)]_SoftParticle("Is Soft Particles",int) = 1 + _InvFade("Soft Particle Factor",float) = 1 + [Header(Normal)] + [Space] + [Toggle(IS_NORMAL_DISTORTION)]_NormalDistortion("Is Normal Distortion",int) = 0 + _NormalTex("Normal Tex",2D) = "white"{} + _NormalDistortionFactor("Normal Distortion Factor",float) = 1.0 + [Toggle(IS_NORMAL_ANIMATE)]_NormalAnimate("Is Normal Animate",int) = 0 + _NormalAnimateSpeed("Normal Animate Speed",float) = 1.0 + [Toggle(IS_TEXTURE_NOISE)]_TextureNoise("Is Texture Noise", int)= 0 + _NoiseNormal("Noise Normal",2D) = "white"{} + _NoiseNormalFactor("NoiseNormalFactor",float) = 1.0 + [Header(Mask Fade)] + [Space] + [Toggle(IS_MASK_FADE)]_MaskFade("Is Mask Fade",int) = 0 + [Toggle(IS_USE_TEXANIMATION)]_UseTexAnimation("Is UseTexAnimation",int) = 0 + _FixedMaskTex("Fixed Mask Tex",2D) = "white"{} + _MaskTex("Mask Tex",2D) = "white"{} + _MaskOffsetFactor("Mask Offset Factor",float) = 1.0 + _MaskDistortion("Mask Distortion Tex",2D) = "white"{} + _MaskAnimatedSpeed("_MaskAnimatedSpeed",float) = 1.0 + _MaskCutOut("Mask CutOut",Range(0,1)) = 1 + [Header(Render)] + [Space] + [Toggle]_ZWrite("ZWrite On/Off", int) = 0 + [Enum(Culling Off,0, Culling Front, 1, Culling Back, 2)]_Culling("Culling",float) = 2 + [Enum(UnityEngine.Rendering.BlendMode)]_BlendSrc("BlendSrc", float) = 1 + [Enum(UnityEngine.Rendering.BlendMode)]_BlendDst("BlendDst", float) = 1 + _ZTest2("_ZTest2", int) = 2 + [Header(VertexAnimation)] + [Space] + [Toggle(IS_VERTEXANIMATION)]_VertexAnimation("Is Vertex Animation", int) = 0 + _NoiseTex("Vertex Animation Noise Map",2D) = "black"{} + _NoiseValue("Noise Value", Vector) = (1,1,1,0) + _NoiseScale("Noise Scale", float) = 1 + [Header(RimLight)] + [Space] + [Toggle(IS_RIMLIGHT)]_RimLight("Is Rim Light",int) = 0 + [HDR]_RimColor("RimColor",Color) = (1,1,1,1) + _RimScale("Rim Light Power",float) = 1 + _RimStrength("Rim Light Strength",float) = 1 + [Header(Impact)] + [Space] + [Toggle(IS_IMPACT)]_Impact("Is Impact",int) = 0 + _ImpactSize("Impact Size",float) = 0.5 + _ImpactFactor("Impact Factor",float) = 1 + [Header(Texcoord)] + [Space] + [Toggle(IS_TEXCOORD_MOVE)]_TexcoordMove("Is Texcoord Move",int) = 0 + _xTexcoordMove("xTexcoordMove", Range(-1,1)) = 0 + _yTexcoordMove("yTexcoordMove", Range(-1,1)) = 0 + _TexcoordMoveStrength("TexcoordMoveStrength",float) = 0 + [Toggle(IS_TEXCOORD_MOVE_USING_CUSTOM)]_TexcoordMoveUsingCustom("Is Texcoord Move Using Custom",int) = 0 + [Header(LinePass)] + [Space] + [Toggle(IS_LINEPASS)]_LinePass("Is LinePass", int) = 0 + _TexLength("TexLength",Range(0,1)) = 1.0 + _LinePassTex("LinePassTex", 2D) = "white" {} + + + } + Category{ + Tags { "Queue" = "Transparent" "RenderType" = "Transparent" } + Blend[_BlendSrc][_BlendDst] + Cull [_Culling] + ZWrite[_ZWrite] + Lighting Off + ZTest[_ZTest2] + + SubShader { + Pass{ + + CGPROGRAM + #pragma vertex vert + #pragma fragment frag + #pragma multi_compile_particles + #pragma multi_compile_fog + #pragma multi_compile_instancing + + #pragma shader_feature IS_SOFT_PARTICLES + #pragma shader_feature IS_USE_SECOND_COLOR + #pragma shader_feature IS_NORMAL_DISTORTION + #pragma shader_feature IS_TEXCOORD_MOVE_USING_CUSTOM + #pragma shader_feature IS_TEXTURE_NOISE + #pragma shader_feature IS_MASK_FADE + #pragma shader_feature IS_TEXTURE_BLEND + #pragma shader_feature IS_TEXTURE_ANIMATE + #pragma shader_feature IS_TEXTURE_ANIMATE_ADVANCED + #pragma shader_feature IS_ALL_TEXTURE_STRAIGHT_MOVE + #pragma shader_feature IS_TEXCOORD_MOVE + #pragma shader_feature IS_NORMAL_ANIMATE + #pragma shader_feature IS_VERTEXANIMATION + #pragma shader_feature IS_RIMLIGHT + #pragma shader_feature IS_IMPACT + #pragma shader_feature UNITY_PARTICLE_INSTANCING_ENABLED + #pragma shader_feature IS_LINEPASS + #pragma shader_feature IS_USE_TEXANIMATION + #pragma shader_feature IS_USE_ROTATE_UV + + #include "UnityCG.cginc" + #include "UnityStandardParticleInstancing.cginc" + + sampler2D _MainTex; + half4 _MainTex_ST; + sampler2D _CameraDepthTexture; + + #ifdef IS_TEXTURE_ANIMATE_ADVANCED + int _MaxIndex; + #endif + + #ifdef IS_NORMAL_DISTORTION + sampler2D _NormalTex; + half4 _NormalTex_ST; + half _NormalDistortionFactor; + #endif + + #ifdef IS_TEXTURE_NOISE + sampler2D _NoiseNormal; + half4 _NoiseNormal_ST; + half _NoiseNormalFactor; + #endif + + #ifdef IS_MASK_FADE + sampler2D _FixedMaskTex; + half4 _FixedMaskTex_ST; + sampler2D _MaskTex; + half4 _MaskTex_ST; + half _MaskOffsetFactor; + sampler2D _MaskDistortion; + half4 _MaskDistortion_ST; + #endif + half _MaskCutOut; + + #ifdef IS_ALL_TEXTURE_STRAIGHT_MOVE + half _TexPosMove; + #endif + + #ifdef IS_VERTEXANIMATION + sampler2D _NoiseTex; + half4 _NoiseTex_ST; + half _NoiseScale; + #endif + + #ifdef IS_RIMLIGHT + half _RimScale; + half _RimStrength; + #endif + + #ifdef IS_IMPACT + half _ImpactSize; + half _ImpactFactor; + int _PointSize; + fixed4 _Points[30]; + #endif + + #ifdef IS_TEXCOORD_MOVE + half _xTexcoordMove; + half _yTexcoordMove; + half _TexcoordMoveStrength; + #endif + + #ifdef IS_LINEPASS + sampler2D _LinePassTex; + half4 _LinePassTex_ST; + half _TexLength; + half _TexLength2; + #endif + + #ifdef IS_USE_ROTATE_UV + half _RotateAngle; + #endif + + + UNITY_INSTANCING_BUFFER_START(data) + UNITY_DEFINE_INSTANCED_PROP(half4, _TintColor) + #define _TintColor_arr data + #ifdef IS_USE_SECOND_COLOR + UNITY_DEFINE_INSTANCED_PROP(half4, _TintColor2) + #define _TintColor2_arr data + #endif + UNITY_DEFINE_INSTANCED_PROP(half, _ColorFactor) + #define _ColorFactor_arr data + #ifdef IS_RIMLIGHT + UNITY_DEFINE_INSTANCED_PROP(half4,_RimColor) + #define _RimColor_arr data + #endif + #ifdef IS_VERTEXANIMATION + UNITY_DEFINE_INSTANCED_PROP(half4,_NoiseValue) + #define _NoiseValue_arr data + #endif + #ifdef IS_TEXTURE_ANIMATE + UNITY_DEFINE_INSTANCED_PROP(half, _TextureAnimateSpeed) + #define _TextureAnimateSpeed_arr data + UNITY_DEFINE_INSTANCED_PROP(int, _TextureAnimateStyle) + #define _TextureAnimateStyle_arr data + #endif + #ifdef IS_NORMAL_ANIMATE + UNITY_DEFINE_INSTANCED_PROP(half, _NormalAnimateSpeed) + #define _NormalAnimateSpeed_arr data + #endif + #ifdef IS_MASK_FADE + UNITY_DEFINE_INSTANCED_PROP(half,_MaskAnimatedSpeed) + #define _MaskAnimatedSpeed_arr data + #endif + UNITY_INSTANCING_BUFFER_END(data) + + half _InvFade; + + struct appdata_t { + float4 vertex : POSITION; + float3 normal : NORMAL; + half4 color : COLOR; + #ifdef IS_TEXTURE_BLEND + half4 texcoord : TEXCOORD0; + half texcoordBlend : TEXCOORD1; + #else + half4 texcoord : TEXCOORD0; + #ifdef IS_TEXCOORD_MOVE_USING_CUSTOM + half2 texcoord2 : TEXCOORD1; + #endif + #endif + UNITY_VERTEX_INPUT_INSTANCE_ID + }; + + struct v2f { + float4 vertex : SV_POSITION; + half4 color : COLOR; + half2 maintex : TEXCOORD0; + #ifdef IS_TEXTURE_BLEND + half3 maintexBlend : TEXCOORD1; + #endif + #ifdef IS_NORMAL_DISTORTION + half2 normaltex : TEXCOORD2; + #endif + #ifdef IS_MASK_FADE + half2 fixedmasktex : TEXCOORD3; + half2 masktex : TEXCOORD4; + half2 masknormaltex: TEXCOORD5; + #endif + #ifdef IS_TEXTURE_NOISE + half2 noisetex : TEXCOORD6; + #endif + #ifdef SOFTPARTICLES_ON + half4 projPos : TEXCOORD7; + #endif + UNITY_FOG_COORDS(8) + #ifdef IS_RIMLIGHT + half3 viewDir : TEXCOORD9; + half3 normal : TEXCOORD10; + #endif + #ifdef IS_IMPACT + float3 worldPos : TEXCOORD11; + #endif + #ifdef IS_LINEPASS + float2 linepasscoord : TEXCOORD12; + #endif + + UNITY_VERTEX_INPUT_INSTANCE_ID + UNITY_VERTEX_OUTPUT_STEREO + }; + + v2f vert (appdata_t i) + { + v2f o; + UNITY_SETUP_INSTANCE_ID(i); + UNITY_INITIALIZE_OUTPUT(v2f, o); + UNITY_TRANSFER_INSTANCE_ID(i, o); + UNITY_INITIALIZE_VERTEX_OUTPUT_STEREO(o); + + #ifdef IS_VERTEXANIMATION + float4 Noise = mul(UNITY_MATRIX_M, i.vertex) * UNITY_ACCESS_INSTANCED_PROP(_NoiseValue_arr, _NoiseValue) * float4(0.1f, 0.1f, 1.5f, 1); + //Set noiseTex with normal tex using time & scale info. time is for animate vertex + float4 NoiseTex = tex2Dlod(_NoiseTex, Noise + float4(float3(_Time.x / 2, _Time.y / 2, _Time.z * 2) * _NoiseScale * 10, 0)); + //NoiseTex *= tex2Dlod(_NoiseTex, Noise - float4(float3(_Time.x / 2, _Time.y / 2, _Time.z * 2) * _NoiseScale * 10, 0)); + i.vertex = i.vertex * UNITY_ACCESS_INSTANCED_PROP(_NoiseValue_arr, _NoiseValue).w + + //Add changed noise info with normal value to original object vertex. + (saturate(NoiseTex) - 0.5f) * ( + //Additionally trigonometric value to original object vertex. + sin((i.vertex.x + _Time * UNITY_ACCESS_INSTANCED_PROP(_NoiseValue_arr, _NoiseValue).x)* UNITY_ACCESS_INSTANCED_PROP(_NoiseValue_arr, _NoiseValue).y) + + cos((i.vertex.y + _Time * UNITY_ACCESS_INSTANCED_PROP(_NoiseValue_arr, _NoiseValue).x)* UNITY_ACCESS_INSTANCED_PROP(_NoiseValue_arr, _NoiseValue).y) + + sin((i.vertex.z + _Time * UNITY_ACCESS_INSTANCED_PROP(_NoiseValue_arr, _NoiseValue).x)* UNITY_ACCESS_INSTANCED_PROP(_NoiseValue_arr, _NoiseValue).y) + )* UNITY_ACCESS_INSTANCED_PROP(_NoiseValue_arr, _NoiseValue).z*_NoiseScale * 10; + #endif + + o.vertex = UnityObjectToClipPos(i.vertex); + + half4 originaltex = i.texcoord; + + #ifdef IS_TEXCOORD_MOVE + #ifdef IS_TEXCOORD_MOVE_USING_CUSTOM + i.texcoord.y += i.texcoord2.y; + #else + i.texcoord.x += _Time * _xTexcoordMove * _TexcoordMoveStrength; + i.texcoord.y += _Time * _yTexcoordMove * _TexcoordMoveStrength; + #endif + #endif + + #ifdef IS_UNITY_PARTICLE_INSTANCING_ENABLED //GPU Rendering + #ifdef IS_TEXTURE_BLEND + vertInstancingUVs(i.texcoord.xy, o.maintex, o.,maintexBlend); + #else + vertInstancingUVs(i.texcoord, o.maintex); + o.maintex = TRANSFORM_TEX(o.texcoord, _MainTex); + #endif + #else + #ifdef IS_TEXTURE_BLEND + o.maintex = i.texcoord.xy; + o.maintexBlend.xy = i.texcoord.zw; + o.maintexBlend.z = i.texcoordBlend; + #else + o.maintex = TRANSFORM_TEX(i.texcoord, _MainTex); + #endif + #endif + + #ifdef IS_NORMAL_DISTORTION + o.normaltex = TRANSFORM_TEX(i.texcoord, _NormalTex); + #endif + #ifdef IS_MASK_FADE + half4 masktexcoord; + #ifdef IS_USE_TEXANIMATION + masktexcoord = i.texcoord; + #else + masktexcoord = originaltex; + #endif + o.fixedmasktex = TRANSFORM_TEX(masktexcoord, _FixedMaskTex); + o.masktex = TRANSFORM_TEX(masktexcoord, _MaskTex); + o.masknormaltex = TRANSFORM_TEX(masktexcoord, _MaskDistortion); + #endif + #ifdef IS_TEXTURE_NOISE + o.noisetex = TRANSFORM_TEX(i.texcoord, _NoiseNormal); + #endif + + #ifdef IS_SOFTPARTICLES + #ifdef SOFTPARTICLES_ON + o.projPos = ComputeNonStereoScreenPos(o.vertex); + COMPUTE_EYEDEPTH(o.projPos.z); + #endif + #endif + + #ifdef IS_RIMLIGHT + o.viewDir = WorldSpaceViewDir(i.vertex); + o.normal = UnityObjectToWorldNormal(i.vertex); + #endif + + #ifdef IS_IMPACT + o.worldPos = i.vertex; + #endif + + #ifdef IS_LINEPASS + half4 originaltexcoord = i.texcoord; + float length = i.texcoord.z; + length = lerp(1.0f, 3.0f, length); + i.texcoord.x *= length; + + float length2 = i.texcoord.w * _TexLength * 2; + length2 = lerp(1, 0, length2); + + i.texcoord.x -= length2; + + i.texcoord.x = clamp(i.texcoord.x, 0, 1); + i.texcoord.y = clamp(i.texcoord.y, 0, 1); + + o.linepasscoord = TRANSFORM_TEX(i.texcoord, _LinePassTex); + i.texcoord = originaltexcoord; + #endif + + #ifdef IS_USE_ROTATE_UV + float2 center = float2(0.5, 0.5); + float cosA = cos(_RotateAngle); + float sinA = sin(_RotateAngle); + float2x2 rt = float2x2(cosA, -sinA, sinA, cosA); + + //main_tex uv + float2 uv = o.maintex - center; + o.maintex = mul(rt, uv); + o.maintex += uv; + #endif + + o.color = i.color; + + UNITY_TRANSFER_FOG(o, o.vertex); + return o; + } + + half4 frag(v2f i): SV_Target + { + UNITY_SETUP_INSTANCE_ID(i); + UNITY_SETUP_STEREO_EYE_INDEX_POST_VERTEX(i); + #ifdef IS_SOFTPARTICLES + half sceneZ = LinearEyeDepth(UNITY_SAMPLE_DEPTH(tex2Dproj(_CameraDepthTexture, UNITY_PROJ_COORD(i.projPos)))); + half partZ = i.projPos.z; + half fade = saturate(_InvFade * (sceneZ - partZ)); + i.color.a *= fade; + #endif + + #ifdef IS_TEXTURE_NOISE + half2 noiseTex = tex2D(_NoiseNormal, i.noisetex); + half2 offset = (noiseTex * 2 - 1) * _NoiseNormalFactor; + i.maintex.xy += offset; + #endif + + #ifdef IS_NORMAL_DISTORTION + #ifdef IS_NORMAL_ANIMATE + //Mixed Distort Move + #ifdef IS_ALL_TEXTURE_STRAIGHT_MOVE + half2 distort = UnpackNormal(tex2D(_NormalTex, i.normaltex +(float(UNITY_ACCESS_INSTANCED_PROP(_NormalAnimateSpeed_arr, _NormalAnimateSpeed)) * _Time / 10)*_TexPosMove)).rg; + distort *= UnpackNormal(tex2D(_NormalTex, i.normaltex +((float(UNITY_ACCESS_INSTANCED_PROP(_NormalAnimateSpeed_arr, _NormalAnimateSpeed))*_Time / 10) + float2(0.5f, 0.15f))*_TexPosMove)).rg; + distort *= UnpackNormal(tex2D(_NormalTex, i.normaltex +((float(UNITY_ACCESS_INSTANCED_PROP(_NormalAnimateSpeed_arr, _NormalAnimateSpeed))*_Time / 10) + float2(0.15f, 0.5f))*_TexPosMove)).rg; + #else + half2 distort = UnpackNormal(tex2D(_NormalTex, i.normaltex - (float(UNITY_ACCESS_INSTANCED_PROP(_NormalAnimateSpeed_arr, _NormalAnimateSpeed)) * _Time / 10))).rg; + distort *= UnpackNormal(tex2D(_NormalTex, i.normaltex + (float(UNITY_ACCESS_INSTANCED_PROP(_NormalAnimateSpeed_arr, _NormalAnimateSpeed))*_Time / 10) - float2(-0.25f, -0.15f))).rg; + #endif + #else + half2 distort = UnpackNormal(tex2D(_NormalTex, i.normaltex)).rg; + #endif + #ifdef IS_TEXTURE_BLEND + i.maintex.xy += distort.xy* _NormalDistortionFactor; + i.maintexBlend.xy += distort.xy* _NormalDistortionFactor; + #else + i.maintex.xy += distort.xy* _NormalDistortionFactor; + #endif + #endif + + #ifdef IS_TEXTURE_ANIMATE + #ifdef IS_ALL_TEXTURE_STRAIGHT_MOVE + half4 tex = tex2D(_MainTex, i.maintex.xy + (float(UNITY_ACCESS_INSTANCED_PROP(_TextureAnimateSpeed_arr, _TextureAnimateSpeed)) * _Time / 10)*_TexPosMove); + tex *= tex2D(_MainTex, i.maintex.xy + ((float(UNITY_ACCESS_INSTANCED_PROP(_TextureAnimateSpeed_arr, _TextureAnimateSpeed)) * _Time / 10) + float2(0.25f, -0.25f))*_TexPosMove); + half4 tex2 = tex2D(_MainTex, i.maintex.xy + ((float(UNITY_ACCESS_INSTANCED_PROP(_TextureAnimateSpeed_arr, _TextureAnimateSpeed)) * _Time / 10) + float2(-0.5f, 0.5f))*_TexPosMove) * 2.5f; + tex = (tex) / 1.5f; + #else + #ifdef IS_TEXTURE_ANIMATE_ADVANCED + half4 tex = half4(1, 1, 1, 1); + half reversefactor = -1; + + for (uint j = 1; j < uint(_MaxIndex); j++) { + half movefactor = ( uint(j) / _MaxIndex); + half timefactor; + + reversefactor *= -1; + timefactor = (_Time.x + movefactor) *reversefactor; + tex *= tex2D(_MainTex, i.maintex + movefactor + (float(UNITY_ACCESS_INSTANCED_PROP(_TextureAnimateSpeed_arr, _TextureAnimateSpeed))) * float2(timefactor, 0) ); + tex *= tex2D(_MainTex, i.maintex + movefactor + (float(UNITY_ACCESS_INSTANCED_PROP(_TextureAnimateSpeed_arr, _TextureAnimateSpeed))) * float2(0, timefactor)); + } + tex = saturate(pow(tex, 1.0f/_MaxIndex)); + #else + half4 tex = half4(0, 0, 0, 0); + if (UNITY_ACCESS_INSTANCED_PROP(_TextureAnimateStyle_arr, _TextureAnimateStyle) == 0) + { + tex = tex2D(_MainTex, i.maintex.xy - (float(UNITY_ACCESS_INSTANCED_PROP(_TextureAnimateSpeed_arr, _TextureAnimateSpeed)) * _Time / 10)); + tex *= tex2D(_MainTex, i.maintex.xy - (float(UNITY_ACCESS_INSTANCED_PROP(_TextureAnimateSpeed_arr, _TextureAnimateSpeed)) * _Time / 10) + float2(0.25f, -0.25f)); + half4 tex2 = tex2D(_MainTex, i.maintex.xy + (float(UNITY_ACCESS_INSTANCED_PROP(_TextureAnimateSpeed_arr, _TextureAnimateSpeed)) * _Time / 10)); + tex2 *= tex2D(_MainTex, i.maintex.xy + (float(UNITY_ACCESS_INSTANCED_PROP(_TextureAnimateSpeed_arr, _TextureAnimateSpeed)) * _Time / 10) + float2(0.15f, -0.15f)); + tex = (tex + tex2) / 1.5f; + } + else if (UNITY_ACCESS_INSTANCED_PROP(_TextureAnimateStyle_arr, _TextureAnimateStyle) == 1) + { + tex = tex2D(_MainTex, i.maintex.xy - (float(UNITY_ACCESS_INSTANCED_PROP(_TextureAnimateSpeed_arr, _TextureAnimateSpeed)) * _Time / 10)); + tex *= tex2D(_MainTex, i.maintex.xy - (float(UNITY_ACCESS_INSTANCED_PROP(_TextureAnimateSpeed_arr, _TextureAnimateSpeed)) * _Time / 10) + float2(-0.25f, -0.25f)); + half4 tex2 = tex2D(_MainTex, i.maintex.xy + (float(UNITY_ACCESS_INSTANCED_PROP(_TextureAnimateSpeed_arr, _TextureAnimateSpeed)) * _Time / 10)); + tex2 *= tex2D(_MainTex, i.maintex.xy + (float(UNITY_ACCESS_INSTANCED_PROP(_TextureAnimateSpeed_arr, _TextureAnimateSpeed)) * _Time / 10) + float2(0.15f, -0.15f)); + tex *= tex2 * 3.5f; + } + else + { + tex = tex2D(_MainTex, i.maintex.xy - (float(UNITY_ACCESS_INSTANCED_PROP(_TextureAnimateSpeed_arr, _TextureAnimateSpeed)) * _Time / 10) + float2(0.25f, -0.25f)); + half4 tex2 = tex2D(_MainTex, i.maintex.xy + (float(UNITY_ACCESS_INSTANCED_PROP(_TextureAnimateSpeed_arr, _TextureAnimateSpeed)) * _Time / 10) + float2(0.15f, -0.15f)); + tex = (tex * tex2)*1.25f + (tex + tex2)*0.5f; + } + #endif + #endif + #else + half4 tex = tex2D(_MainTex, i.maintex); + #ifdef IS_TEXTURE_BLEND + half4 tex2 = tex2D(_MainTex, i.maintexBlend.xy); + tex = lerp(tex, tex2, i.maintexBlend.z); + #endif + #endif + + #ifdef IS_MASK_FADE + half fixed_mask = tex2D(_FixedMaskTex, i.fixedmasktex); + #ifdef IS_ALL_TEXTURE_STRAIGHT_MOVE + half2 mask_noise = tex2D(_MaskDistortion, i.masknormaltex.xy + ((float(UNITY_ACCESS_INSTANCED_PROP(_MaskAnimatedSpeed_arr, _MaskAnimatedSpeed)) * _Time / 5) + float2(0.25f, 0.25f))*_TexPosMove); + mask_noise *= tex2D(_MaskDistortion, i.masknormaltex.xy + ((float(UNITY_ACCESS_INSTANCED_PROP(_MaskAnimatedSpeed_arr, _MaskAnimatedSpeed)) * _Time / 4) - float2(0.25f, 0.25f))*_TexPosMove); + mask_noise *= tex2D(_MaskDistortion, i.masknormaltex.xy + ((float(UNITY_ACCESS_INSTANCED_PROP(_MaskAnimatedSpeed_arr, _MaskAnimatedSpeed))* _Time / 20) - float2(0.25f, 0.25f))*_TexPosMove); + half2 mask_offset = mask_noise * _MaskOffsetFactor; + #else + half2 mask_noise = tex2D(_MaskDistortion, i.masknormaltex.xy - (float(UNITY_ACCESS_INSTANCED_PROP(_MaskAnimatedSpeed_arr, _MaskAnimatedSpeed)) * _Time / 10) + float2(0.25f, 0.25f)); + mask_noise *= tex2D(_MaskDistortion, i.masknormaltex.xy + (float(UNITY_ACCESS_INSTANCED_PROP(_MaskAnimatedSpeed_arr, _MaskAnimatedSpeed)) * _Time / 10) - float2(0.5f, 0.5f)); + half2 mask_offset = mask_noise * _MaskOffsetFactor; + #endif + i.masktex.xy += mask_offset; + #ifdef IS_USE_SECOND_COLOR + half mask_a = saturate(tex2D(_MaskTex, i.masktex) - (1- saturate(i.color.a*_MaskCutOut))) * fixed_mask * (float(UNITY_ACCESS_INSTANCED_PROP(_TintColor2_arr, _TintColor2).a)); + #else + half mask_a = saturate(tex2D(_MaskTex, i.masktex) - (1 - saturate(i.color.a*_MaskCutOut))) * fixed_mask * (float(UNITY_ACCESS_INSTANCED_PROP(_TintColor_arr, _TintColor).a)); + #endif + #else + #ifdef IS_USE_SECOND_COLOR + half mask_a = tex.a *_MaskCutOut * i.color.a * float(UNITY_ACCESS_INSTANCED_PROP(_TintColor2_arr, _TintColor2).a); + #else + half mask_a = tex.a *_MaskCutOut * i.color.a * float(UNITY_ACCESS_INSTANCED_PROP(_TintColor_arr, _TintColor).a); + #endif + #endif + + #ifdef IS_USE_SECOND_COLOR + half4 res = tex * float4(i.color.rgb, 1) * float4(UNITY_ACCESS_INSTANCED_PROP(_TintColor2_arr, _TintColor2).rgb, 1) * float(UNITY_ACCESS_INSTANCED_PROP(_ColorFactor_arr, _ColorFactor)); + #else + half4 res = tex * float4(i.color.rgb,1) * float4(UNITY_ACCESS_INSTANCED_PROP(_TintColor_arr, _TintColor).rgb,1) * float(UNITY_ACCESS_INSTANCED_PROP(_ColorFactor_arr, _ColorFactor)); + #endif + half alpha = mask_a * float(UNITY_ACCESS_INSTANCED_PROP(_ColorFactor_arr, _ColorFactor)); + res.a = saturate(pow(alpha, 2.0f)); + + #ifdef IS_RIMLIGHT + half rim = 1.0 - saturate(dot(normalize(i.viewDir), i.normal)); + res.rgb += float3(UNITY_ACCESS_INSTANCED_PROP(_RimColor_arr, _RimColor).rgb * pow(rim, _RimScale) * _RimStrength); + #endif + + #ifdef IS_IMPACT + float3 objPos =i.worldPos; + float Impact_alpha = 0.0f; + for (unsigned int index = 0; index < _Points.Length; ++index) + { + float Impact = pow(saturate(frac(1.0 - saturate((_Points[index].w*_ImpactSize) - distance(_Points[index].xyz, objPos.xyz))))*saturate(1.0 - _Points[index].w),2); + Impact_alpha += Impact * _ImpactFactor; + Impact_alpha = pow(Impact_alpha, 1.1f); + } + + res.a += Impact_alpha * 5.0f; + #endif + + #ifdef IS_LINEPASS + half4 linepasstex = tex2D(_LinePassTex, i.linepasscoord.xy); + return res *= linepasstex; + #endif + UNITY_APPLY_FOG_COLOR(i.fogCoord, res, half4(0, 0, 0, 0)); + return res; + } + ENDCG + } + } + } +} \ No newline at end of file diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Shader_ForEffects/Shader_IntegratedEffect.shader.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Shader_ForEffects/Shader_IntegratedEffect.shader.meta new file mode 100644 index 0000000..582d184 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Shader_ForEffects/Shader_IntegratedEffect.shader.meta @@ -0,0 +1,16 @@ +fileFormatVersion: 2 +guid: 1d58a8e283100ea4f8435e923e54553e +ShaderImporter: + externalObjects: {} + defaultTextures: [] + nonModifiableTextures: [] + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/Shader_ForEffects/Shader_IntegratedEffect.shader + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures.meta new file mode 100644 index 0000000..c6006af --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0e9b94164fd9c3d488c93b2bc3635bbb +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/Explosions.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/Explosions.meta new file mode 100644 index 0000000..719a027 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/Explosions.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9ae6653ae61be9648839b04f1c76ac6d +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/Explosions/Explosion_1.png b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/Explosions/Explosion_1.png new file mode 100644 index 0000000..362a21a --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/Explosions/Explosion_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16c0e5640946092a601dddb5e434ea56a6e1d16be174559778fc6431d7114d05 +size 952154 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/Explosions/Explosion_1.png.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/Explosions/Explosion_1.png.meta new file mode 100644 index 0000000..4ea6b7b --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/Explosions/Explosion_1.png.meta @@ -0,0 +1,106 @@ +fileFormatVersion: 2 +guid: 9064114c999c2ed468fef5ddd82bd85d +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 9 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/Textures/Explosions/Explosion_1.png + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/Rings.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/Rings.meta new file mode 100644 index 0000000..9b3a312 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/Rings.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e7b67e97c21257d40870381f59b1865a +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/Rings/Ring_1.png b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/Rings/Ring_1.png new file mode 100644 index 0000000..5b1ba05 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/Rings/Ring_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cfe10dbd3a6bf976c92c202bfa40a1c6fb12eab00b99fe8f954e90ddf730d29 +size 3093216 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/Rings/Ring_1.png.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/Rings/Ring_1.png.meta new file mode 100644 index 0000000..54827da --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/Rings/Ring_1.png.meta @@ -0,0 +1,111 @@ +fileFormatVersion: 2 +guid: e99a9bdab939cc84396941770a4d4aa1 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/Textures/Rings/Ring_1.png + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/Rings/Ring_3.png b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/Rings/Ring_3.png new file mode 100644 index 0000000..5883d6b --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/Rings/Ring_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38d250d01eade896fa39fbcfe68d0211cde94e30aebdc9787fe6a1e1b08a77b1 +size 4404392 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/Rings/Ring_3.png.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/Rings/Ring_3.png.meta new file mode 100644 index 0000000..c2b2720 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/Rings/Ring_3.png.meta @@ -0,0 +1,111 @@ +fileFormatVersion: 2 +guid: d9a7b93c2989d3f4faf3caab3d7bc5c7 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/Textures/Rings/Ring_3.png + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/ShockWaves.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/ShockWaves.meta new file mode 100644 index 0000000..93f4f17 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/ShockWaves.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b6c4df7128b6e7946b958654bdc544f9 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/ShockWaves/ShockWave_2.png b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/ShockWaves/ShockWave_2.png new file mode 100644 index 0000000..ceb53ee --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/ShockWaves/ShockWave_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3546467071020a7b68c308b8335b081d5136055bd087749d67c96299dda0bafc +size 3386787 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/ShockWaves/ShockWave_2.png.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/ShockWaves/ShockWave_2.png.meta new file mode 100644 index 0000000..fc6b557 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/ShockWaves/ShockWave_2.png.meta @@ -0,0 +1,111 @@ +fileFormatVersion: 2 +guid: a3df194275fec5743941e5363ee96e6c +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/Textures/ShockWaves/ShockWave_2.png + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/ShockWaves/ShockWave_3.png b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/ShockWaves/ShockWave_3.png new file mode 100644 index 0000000..fea25f5 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/ShockWaves/ShockWave_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4d79fb69da8ad783ae5e24f7d5722fa078e608fe337e4de96978c712b7374f5 +size 4186399 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/ShockWaves/ShockWave_3.png.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/ShockWaves/ShockWave_3.png.meta new file mode 100644 index 0000000..5d6ea8f --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/ShockWaves/ShockWave_3.png.meta @@ -0,0 +1,111 @@ +fileFormatVersion: 2 +guid: 9930bb9d99db3a64586577b4f1935f9d +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/Textures/ShockWaves/ShockWave_3.png + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/ShockWaves/ShockWave_5.png b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/ShockWaves/ShockWave_5.png new file mode 100644 index 0000000..01dc292 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/ShockWaves/ShockWave_5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:358cb3f608e4ce8ce6063007f7a38f600ebf70a290bf8dcf38268b5e2531a5b7 +size 2871241 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/ShockWaves/ShockWave_5.png.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/ShockWaves/ShockWave_5.png.meta new file mode 100644 index 0000000..40a4e44 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/ShockWaves/ShockWave_5.png.meta @@ -0,0 +1,111 @@ +fileFormatVersion: 2 +guid: 9905f0bfba91aa94598123af22a8beb1 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/Textures/ShockWaves/ShockWave_5.png + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures.meta new file mode 100644 index 0000000..a62571d --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1a929292a3d2bd0479bd9b9809a1ae42 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Crack.png b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Crack.png new file mode 100644 index 0000000..13c6d96 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Crack.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53b855156567139e46e3b8df85e8f0c2a169cefa75a88dec06ecc34618160337 +size 182697 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Crack.png.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Crack.png.meta new file mode 100644 index 0000000..bfdb9e7 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Crack.png.meta @@ -0,0 +1,95 @@ +fileFormatVersion: 2 +guid: 62f7d3d5517e2504b8afc94e091397e1 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 9 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/Textures/SimpleTextures/Crack.png + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Mark.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Mark.meta new file mode 100644 index 0000000..9529013 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Mark.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5970f2feb86663a46b2a097f555c3a61 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Mark/LongHand.png b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Mark/LongHand.png new file mode 100644 index 0000000..a08dc05 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Mark/LongHand.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fbab048c06df25841848e72b6937421295ceec32474088b75eaa8cc54547672 +size 3046 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Mark/LongHand.png.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Mark/LongHand.png.meta new file mode 100644 index 0000000..8846463 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Mark/LongHand.png.meta @@ -0,0 +1,95 @@ +fileFormatVersion: 2 +guid: 6b3c400d03adedb40bf5888014ea770c +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 9 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/Textures/SimpleTextures/Mark/LongHand.png + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Mark/Mark_1.png b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Mark/Mark_1.png new file mode 100644 index 0000000..774221e --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Mark/Mark_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79f510a838d104e0b3dc46674b7105463d4060834d10a02862015b60905625fe +size 19602 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Mark/Mark_1.png.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Mark/Mark_1.png.meta new file mode 100644 index 0000000..a46eb1c --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Mark/Mark_1.png.meta @@ -0,0 +1,99 @@ +fileFormatVersion: 2 +guid: ec743a9b30e51bf4ea436ffbf6ffe397 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/Textures/SimpleTextures/Mark/Mark_1.png + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Mark/Mark_2.png b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Mark/Mark_2.png new file mode 100644 index 0000000..a4d91bd --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Mark/Mark_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4b40d10a4ec442e6f97fe52713d9e4b0bbd1ec618e7e87d8ce5cbdc577c6ee2 +size 26666 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Mark/Mark_2.png.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Mark/Mark_2.png.meta new file mode 100644 index 0000000..fd97a79 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Mark/Mark_2.png.meta @@ -0,0 +1,99 @@ +fileFormatVersion: 2 +guid: 3472824716c9c154ea51bbbea1317189 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/Textures/SimpleTextures/Mark/Mark_2.png + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Mark/Mark_3.png b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Mark/Mark_3.png new file mode 100644 index 0000000..53d64c6 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Mark/Mark_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b933deb6dd10a26eec216b583a4326d0939ddb6906460239eb4dc9d02778cf4a +size 17329 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Mark/Mark_3.png.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Mark/Mark_3.png.meta new file mode 100644 index 0000000..37bf5dc --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Mark/Mark_3.png.meta @@ -0,0 +1,99 @@ +fileFormatVersion: 2 +guid: c37da87625a94f44a9c1a2c86ea56682 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/Textures/SimpleTextures/Mark/Mark_3.png + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Mark/Mark_5.png b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Mark/Mark_5.png new file mode 100644 index 0000000..1c36816 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Mark/Mark_5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5d680889498644c9bbdf564663010b7627af56212cc04edf5496ef410c6dd58 +size 68108 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Mark/Mark_5.png.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Mark/Mark_5.png.meta new file mode 100644 index 0000000..4ca5cd9 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Mark/Mark_5.png.meta @@ -0,0 +1,95 @@ +fileFormatVersion: 2 +guid: 6d0b74839d655764184290a3e6fc8ee3 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 9 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/Textures/SimpleTextures/Mark/Mark_5.png + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Noise.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Noise.meta new file mode 100644 index 0000000..da227cf --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Noise.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 49ea6b6e5fd8ceb4a974110cf2a896d7 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Noise/GausianNoise_1.png b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Noise/GausianNoise_1.png new file mode 100644 index 0000000..79d81b8 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Noise/GausianNoise_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd542c901041fda7cc27b68f3561a8ed44b4044ce45254442d28f66a170ec501 +size 252253 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Noise/GausianNoise_1.png.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Noise/GausianNoise_1.png.meta new file mode 100644 index 0000000..a6a28e7 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Noise/GausianNoise_1.png.meta @@ -0,0 +1,95 @@ +fileFormatVersion: 2 +guid: a4aa9178b66bffe4aa9a34ec77c358d8 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 9 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/Textures/SimpleTextures/Noise/GausianNoise_1.png + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Noise/GausianNoise_3.png b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Noise/GausianNoise_3.png new file mode 100644 index 0000000..e400482 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Noise/GausianNoise_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e02b8acd22a7da7903cc70b525d7c60ace74d8ea7f20db01b53cbdcc52aced2 +size 318776 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Noise/GausianNoise_3.png.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Noise/GausianNoise_3.png.meta new file mode 100644 index 0000000..3817863 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Noise/GausianNoise_3.png.meta @@ -0,0 +1,95 @@ +fileFormatVersion: 2 +guid: 708d24fa8e8cc804aba4ce74d4e6a1b1 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 9 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/Textures/SimpleTextures/Noise/GausianNoise_3.png + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Noise/PerlinMap_1.png b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Noise/PerlinMap_1.png new file mode 100644 index 0000000..9534119 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Noise/PerlinMap_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ef44108636b48a6a957f2a450bb979e8e1fd268fd68503ccc93682a2a3a53d4 +size 144373 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Noise/PerlinMap_1.png.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Noise/PerlinMap_1.png.meta new file mode 100644 index 0000000..1a7d9ad --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Noise/PerlinMap_1.png.meta @@ -0,0 +1,99 @@ +fileFormatVersion: 2 +guid: ced23a9040cdc9341b98674e347b4844 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/Textures/SimpleTextures/Noise/PerlinMap_1.png + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Noise/PerlinMap_2.png b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Noise/PerlinMap_2.png new file mode 100644 index 0000000..47aff47 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Noise/PerlinMap_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3a4af476799981c655ba3e70e8e5b12eed527eab34007101a6d6354f3e4b7e9 +size 128958 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Noise/PerlinMap_2.png.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Noise/PerlinMap_2.png.meta new file mode 100644 index 0000000..4b5c0b7 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Noise/PerlinMap_2.png.meta @@ -0,0 +1,99 @@ +fileFormatVersion: 2 +guid: 1dd87d263698bdd489172bf9aa265da1 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/Textures/SimpleTextures/Noise/PerlinMap_2.png + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Noise/PerlinMap_3.png b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Noise/PerlinMap_3.png new file mode 100644 index 0000000..af3355a --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Noise/PerlinMap_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ad2b118d12883e23370f07a9cb533cd49daf53c24ba8266dedfda49a1f1098e +size 158950 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Noise/PerlinMap_3.png.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Noise/PerlinMap_3.png.meta new file mode 100644 index 0000000..592c693 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Noise/PerlinMap_3.png.meta @@ -0,0 +1,99 @@ +fileFormatVersion: 2 +guid: 67b8806fa9373774088013c2e7a9a59c +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/Textures/SimpleTextures/Noise/PerlinMap_3.png + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Noise/PerlinMap_4.png b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Noise/PerlinMap_4.png new file mode 100644 index 0000000..e5fd6d6 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Noise/PerlinMap_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:906531b79ce01092d22bf53d07ebe62c32a420e7f9ad66abde77a4504badc7a2 +size 156996 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Noise/PerlinMap_4.png.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Noise/PerlinMap_4.png.meta new file mode 100644 index 0000000..991beb0 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Noise/PerlinMap_4.png.meta @@ -0,0 +1,99 @@ +fileFormatVersion: 2 +guid: 3cb02bf457cde1b48af42b67ee413532 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/Textures/SimpleTextures/Noise/PerlinMap_4.png + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal.meta new file mode 100644 index 0000000..2e42b9a --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b931695542ba00f49bdd2336a12dc187 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_1.png b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_1.png new file mode 100644 index 0000000..e8f0e9d --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bbad4a0dc0aa7eeabd4e5d5f53744ad7d2b89cc6caeb5ec337d73b1ad36b04f +size 28453 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_1.png.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_1.png.meta new file mode 100644 index 0000000..48b94f4 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_1.png.meta @@ -0,0 +1,106 @@ +fileFormatVersion: 2 +guid: 3791c7758be5e794cb38246523166a2b +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 9 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 1 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_1.png + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_10.png b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_10.png new file mode 100644 index 0000000..3047694 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b137f06629ec206019e40f690c3595c67fdf05e27463f915fc85cadf690522a +size 382552 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_10.png.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_10.png.meta new file mode 100644 index 0000000..c135f62 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_10.png.meta @@ -0,0 +1,106 @@ +fileFormatVersion: 2 +guid: b1df31c32ef1d4f428c40f70fa84a503 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 9 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 1 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_10.png + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_11.png b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_11.png new file mode 100644 index 0000000..456572a --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7575e20a5f88bd358ee265198ce3e502e6a21b3c281f1122fc3c141e730408da +size 384204 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_11.png.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_11.png.meta new file mode 100644 index 0000000..d24f297 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_11.png.meta @@ -0,0 +1,106 @@ +fileFormatVersion: 2 +guid: 794ee3411258ee44197c6443fd028cfc +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 9 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 1 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_11.png + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_12.png b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_12.png new file mode 100644 index 0000000..32b9b80 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0fddd01d7f7b8038028ad615e036d12f36e29600bbf66b3d4bd2df95a70e23f +size 593984 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_12.png.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_12.png.meta new file mode 100644 index 0000000..47afef4 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_12.png.meta @@ -0,0 +1,95 @@ +fileFormatVersion: 2 +guid: ce980884c1c08aa43b5b6ff52e35f249 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 9 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 1 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_12.png + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_2.png b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_2.png new file mode 100644 index 0000000..160cf56 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ba10224e46a5cc86197f8e18bb3d3153725ab9c30941bf8640d7446e328eb34 +size 255229 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_2.png.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_2.png.meta new file mode 100644 index 0000000..62211c4 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_2.png.meta @@ -0,0 +1,95 @@ +fileFormatVersion: 2 +guid: b7be54e9e31a54a4186c5d249c987d21 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 9 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 1 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_2.png + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_4.png b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_4.png new file mode 100644 index 0000000..9b27227 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60213907e3496383250b1d8dd7fb052b1405387a4452cf2489d5b43901dd38ec +size 387924 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_4.png.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_4.png.meta new file mode 100644 index 0000000..0814ce2 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_4.png.meta @@ -0,0 +1,106 @@ +fileFormatVersion: 2 +guid: 9a9498ac1b0e2484dbe7cdeee7973e50 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 9 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 1 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_4.png + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_5.png b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_5.png new file mode 100644 index 0000000..68418ec --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b909f90fc90a557051c112132d753ebaa5ad768f128dacced7afcaad572dd5f7 +size 320555 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_5.png.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_5.png.meta new file mode 100644 index 0000000..f890b51 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_5.png.meta @@ -0,0 +1,106 @@ +fileFormatVersion: 2 +guid: 4ae76b5c814071640a85ca797f484323 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 9 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 1 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_5.png + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_6.png b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_6.png new file mode 100644 index 0000000..4f8e8a0 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08cec38440b9061b0ea7f7bc34e5e6051fc5cb7e86dccfd7b3db5b0dab5255c6 +size 383865 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_6.png.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_6.png.meta new file mode 100644 index 0000000..1ec399f --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_6.png.meta @@ -0,0 +1,106 @@ +fileFormatVersion: 2 +guid: 6ff533708a654f048a86aebdf9a39df5 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 9 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 1 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_6.png + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_8.png b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_8.png new file mode 100644 index 0000000..0dbd80d --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bf0188a5b6f601ccb97c814e959b51e94b69d6cc6464daff16577523383db86 +size 388056 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_8.png.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_8.png.meta new file mode 100644 index 0000000..2bca9fc --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_8.png.meta @@ -0,0 +1,106 @@ +fileFormatVersion: 2 +guid: c8620e029366c5c4eb99569cc94a6564 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 9 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 1 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_8.png + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_9.png b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_9.png new file mode 100644 index 0000000..e637b60 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69f539d5b46e206ec8a9bbc5d1de1145ab05726268d58271c8cfde3a3b06f665 +size 320515 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_9.png.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_9.png.meta new file mode 100644 index 0000000..c4dac3d --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_9.png.meta @@ -0,0 +1,106 @@ +fileFormatVersion: 2 +guid: 1e9cc99abd098fe48a103984a0c8bbc1 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 9 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 1 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/Textures/SimpleTextures/Normal/Normal_9.png + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Particle_01.png b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Particle_01.png new file mode 100644 index 0000000..2ef027a --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Particle_01.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79a4ab26d27888f878ba80bd44e432d1ed9fc230327b00db0a91ff0d825deee5 +size 26082 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Particle_01.png.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Particle_01.png.meta new file mode 100644 index 0000000..0c6bd01 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Particle_01.png.meta @@ -0,0 +1,95 @@ +fileFormatVersion: 2 +guid: 1071ab01a543d1c4a91150e2ed7bbb08 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 9 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/Textures/SimpleTextures/Particle_01.png + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Ring.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Ring.meta new file mode 100644 index 0000000..2b57a16 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Ring.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3382e5a63d0f4664080ce2284092f41b +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Ring/Ring_2.png b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Ring/Ring_2.png new file mode 100644 index 0000000..046176f --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Ring/Ring_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7732f8960e21e2498a3c71a3c700ff21ce4216af3dd2e6cd50a48acbb79fe84 +size 25399 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Ring/Ring_2.png.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Ring/Ring_2.png.meta new file mode 100644 index 0000000..d353e41 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Ring/Ring_2.png.meta @@ -0,0 +1,95 @@ +fileFormatVersion: 2 +guid: 72389a8f0765f984c9e63a00214df658 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 9 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/Textures/SimpleTextures/Ring/Ring_2.png + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Smoke.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Smoke.meta new file mode 100644 index 0000000..0cf0180 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Smoke.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 628e34b5ed80d2749b6f9bc3796d5699 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Smoke/Smoke_4.png b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Smoke/Smoke_4.png new file mode 100644 index 0000000..91c8d0c --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Smoke/Smoke_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3efaa73124655d3d59b91e1ac94beb02aaecab944a3ddecb8f52e19458d95c04 +size 243128 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Smoke/Smoke_4.png.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Smoke/Smoke_4.png.meta new file mode 100644 index 0000000..87d3273 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/Smoke/Smoke_4.png.meta @@ -0,0 +1,95 @@ +fileFormatVersion: 2 +guid: a1e4bc17d92703c46b85af820c49f976 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 9 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/Textures/SimpleTextures/Smoke/Smoke_4.png + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/mask_1.png b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/mask_1.png new file mode 100644 index 0000000..69f31bf --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/mask_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b574ac376ffe3b690ee67c7a49203467d2284af4c6223720c56285d6f73b27c8 +size 3515 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/mask_1.png.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/mask_1.png.meta new file mode 100644 index 0000000..90ce5c8 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/mask_1.png.meta @@ -0,0 +1,95 @@ +fileFormatVersion: 2 +guid: 67e0d98570f0e144e96fec27ccbaffc4 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 9 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/Textures/SimpleTextures/mask_1.png + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/mask_3.png b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/mask_3.png new file mode 100644 index 0000000..f372699 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/mask_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bec0cf7cd4e0b29672bb3138dac5c779708f059f7883c6bfc02d419f0fdb903 +size 1991 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/mask_3.png.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/mask_3.png.meta new file mode 100644 index 0000000..d73308c --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/mask_3.png.meta @@ -0,0 +1,95 @@ +fileFormatVersion: 2 +guid: 66f2f832bbd3e5e449cfd48127deabd1 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 9 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/Textures/SimpleTextures/mask_3.png + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/spark.png b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/spark.png new file mode 100644 index 0000000..59b7244 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/spark.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a23d982fd85ef8671b37033bd41647f01db99f563d9c8b08f58865f3a569054 +size 1961 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/spark.png.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/spark.png.meta new file mode 100644 index 0000000..a91ec6d --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/SimpleTextures/spark.png.meta @@ -0,0 +1,95 @@ +fileFormatVersion: 2 +guid: a56198dae5bb8384d818c961477337e6 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 9 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/Textures/SimpleTextures/spark.png + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/Slashs.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/Slashs.meta new file mode 100644 index 0000000..0674257 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/Slashs.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: dfaaae675c6fb9d4c802f2ce7d30c019 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/Slashs/Slash_2.png b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/Slashs/Slash_2.png new file mode 100644 index 0000000..3a65383 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/Slashs/Slash_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e16f759f7876e261071f7e808c3a332c273a03d142b516e17597f7ff3b9f56aa +size 807760 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/Slashs/Slash_2.png.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/Slashs/Slash_2.png.meta new file mode 100644 index 0000000..122020b --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/Slashs/Slash_2.png.meta @@ -0,0 +1,111 @@ +fileFormatVersion: 2 +guid: de6ff9a5be8bc0145b015443b85f061a +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/Textures/Slashs/Slash_2.png + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/Slashs/Slash_3.png b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/Slashs/Slash_3.png new file mode 100644 index 0000000..85899d0 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/Slashs/Slash_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84b066d9b358da257b9a4a814e258748717aeb5b053f1dcbce96423be491fa72 +size 1192120 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/Slashs/Slash_3.png.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/Slashs/Slash_3.png.meta new file mode 100644 index 0000000..0b9b007 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/Slashs/Slash_3.png.meta @@ -0,0 +1,111 @@ +fileFormatVersion: 2 +guid: 3c539ed9d767fd1408bec7c1a98590aa +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/Textures/Slashs/Slash_3.png + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/Slashs/Slash_5.png b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/Slashs/Slash_5.png new file mode 100644 index 0000000..5e3052c --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/Slashs/Slash_5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fd93ee14336986d369e64b557cba3a4b73c65cd0a8bdb70960fc1c5642a1a83 +size 859183 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/Slashs/Slash_5.png.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/Slashs/Slash_5.png.meta new file mode 100644 index 0000000..2497f6b --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/Slashs/Slash_5.png.meta @@ -0,0 +1,111 @@ +fileFormatVersion: 2 +guid: 3b28dc0705e39bd4e8329169d834f55a +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/Textures/Slashs/Slash_5.png + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/Smokes.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/Smokes.meta new file mode 100644 index 0000000..d092b85 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/Smokes.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 08a9db0e7a04c304387329ebc7ee3d35 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/Smokes/Smoke_2.png b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/Smokes/Smoke_2.png new file mode 100644 index 0000000..d3974e1 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/Smokes/Smoke_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b37bdb22d5bb63672a55afb7198eed72ec89b66579309e90dd65a93295a30872 +size 2386678 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/Smokes/Smoke_2.png.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/Smokes/Smoke_2.png.meta new file mode 100644 index 0000000..dbc583b --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/Smokes/Smoke_2.png.meta @@ -0,0 +1,111 @@ +fileFormatVersion: 2 +guid: 0325c37a65550e749bb9b131e6d8a1f5 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/Textures/Smokes/Smoke_2.png + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/Smokes/Smoke_3.png b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/Smokes/Smoke_3.png new file mode 100644 index 0000000..4e01425 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/Smokes/Smoke_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7153c73b6667634889a5e8ec7428b94b4f8b6661295f298d410765b2be3e7424 +size 2556976 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/Smokes/Smoke_3.png.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/Smokes/Smoke_3.png.meta new file mode 100644 index 0000000..f7e6ba4 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/Smokes/Smoke_3.png.meta @@ -0,0 +1,111 @@ +fileFormatVersion: 2 +guid: 671295aebdbc0564db4de71d9f1dca47 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/Textures/Smokes/Smoke_3.png + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/Smokes/Smoke_4.png b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/Smokes/Smoke_4.png new file mode 100644 index 0000000..d9ed519 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/Smokes/Smoke_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:707f76a6a2ec29b1d0ea723d2815f4c9a3bf4e1fb922646fc00e800de64909d4 +size 2938098 diff --git a/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/Smokes/Smoke_4.png.meta b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/Smokes/Smoke_4.png.meta new file mode 100644 index 0000000..e9110a0 --- /dev/null +++ b/Assets/06_Skills/VFX/SpecialSkillsEffectsPack/Textures/Smokes/Smoke_4.png.meta @@ -0,0 +1,111 @@ +fileFormatVersion: 2 +guid: 3eed06b33b3f2a14e8740685c6ce348b +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 171146 + packageName: 100 Special Skills Effects Pack + packageVersion: 26.2 + assetPath: Assets/SpecialSkillsEffectsPack/Textures/Smokes/Smoke_4.png + uploadId: 865912 diff --git a/Assets/06_Skills/VFX/Zyncope.meta b/Assets/06_Skills/VFX/Zyncope.meta new file mode 100644 index 0000000..0eb168f --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 05b3ec1e5c3cc9247a9399fa0f26830c +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/Zyncope/materials.meta b/Assets/06_Skills/VFX/Zyncope/materials.meta new file mode 100644 index 0000000..6760609 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 390d5f07c38bcc943a047a0e43bcf6bc +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_bubbles_green_2x2.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_bubbles_green_2x2.mat new file mode 100644 index 0000000..70cee58 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_bubbles_green_2x2.mat @@ -0,0 +1,92 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-4036206763962517147 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_bubbles_green_2x2 + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: c66f4d36e5baf014b8a9d33945ed0a4e, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 0 + - _CastShadows: 1 + - _Cull: 2 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 10 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_bubbles_green_2x2.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_bubbles_green_2x2.mat.meta new file mode 100644 index 0000000..32d3047 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_bubbles_green_2x2.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: b6e72cc426c84a943ae6f7f62c8b20b3 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_bubbles_green_2x2.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_droplet_blood_ab.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_droplet_blood_ab.mat new file mode 100644 index 0000000..b3023ab --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_droplet_blood_ab.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_droplet_blood_ab + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: d342a2943b113ba44bfa08d7bb8a7bee, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 0 + - _CastShadows: 0 + - _Cull: 0 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 10 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_droplet_blood_ab.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_droplet_blood_ab.mat.meta new file mode 100644 index 0000000..d448370 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_droplet_blood_ab.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: b95ee4e50f20d6849beb8409f39272d4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_droplet_blood_ab.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_droplet_poison_ab.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_droplet_poison_ab.mat new file mode 100644 index 0000000..73bb68e --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_droplet_poison_ab.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_droplet_poison_ab + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: 7878655974d37074dbb1ee48263ad8cc, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 0 + - _CastShadows: 0 + - _Cull: 0 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 10 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_droplet_poison_ab.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_droplet_poison_ab.mat.meta new file mode 100644 index 0000000..14e40e4 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_droplet_poison_ab.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 0e610dd5dd0506f439e555522ff02506 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_droplet_poison_ab.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_droplet_water_ab.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_droplet_water_ab.mat new file mode 100644 index 0000000..6a664d6 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_droplet_water_ab.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_droplet_water_ab + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: 320b78e1e3900334ab1672d40e68afb2, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 0 + - _CastShadows: 0 + - _Cull: 0 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 10 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_droplet_water_ab.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_droplet_water_ab.mat.meta new file mode 100644 index 0000000..f4ad35e --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_droplet_water_ab.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 886e52b464540754792dece9e120c0ac +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_droplet_water_ab.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_dust_02_add.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_dust_02_add.mat new file mode 100644 index 0000000..a041387 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_dust_02_add.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_dust_02_add + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 2800000, guid: 5039867e295193d4a8904b2dcb833608, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: e6c9d2e38532d6b4283b4dde5d7e4f65, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 2 + - _CastShadows: 0 + - _Cull: 0 + - _Depth_Fade_Factor: 0.32 + - _Distort: 0 + - _DstBlend: 1 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_dust_02_add.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_dust_02_add.mat.meta new file mode 100644 index 0000000..b2b6038 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_dust_02_add.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: dce63f711a2821b4b8450c32d23661f0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_dust_02_add.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_dust_03_add.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_dust_03_add.mat new file mode 100644 index 0000000..be79afd --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_dust_03_add.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_dust_03_add + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 2800000, guid: 1c310c211fd69254d84debfb44625ffc, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: 654d1d700baf2794aae900f7223dabfa, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 2 + - _CastShadows: 0 + - _Cull: 0 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 1 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_dust_03_add.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_dust_03_add.mat.meta new file mode 100644 index 0000000..ded093d --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_dust_03_add.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: bde271abc25895441a943e221af332c0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_dust_03_add.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glow_horizontal_01_add.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glow_horizontal_01_add.mat new file mode 100644 index 0000000..309a6f3 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glow_horizontal_01_add.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_glow_horizontal_01_add + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: 9d2742900a2c423409d82659ff33181b, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 2 + - _CastShadows: 0 + - _Cull: 0 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 1 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glow_horizontal_01_add.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glow_horizontal_01_add.mat.meta new file mode 100644 index 0000000..fe0acd5 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glow_horizontal_01_add.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 367049ec6a71901449cbba4a9917efa5 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_glow_horizontal_01_add.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowhard_ab.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowhard_ab.mat new file mode 100644 index 0000000..40c5971 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowhard_ab.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_glowhard_ab + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 10307, guid: 0000000000000000f000000000000000, type: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: 75acfe63e6938ee469f03bef017751a2, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 0 + - _CastShadows: 0 + - _Cull: 2 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 10 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowhard_ab.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowhard_ab.mat.meta new file mode 100644 index 0000000..8c3289a --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowhard_ab.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 52cde171214c3664692231630e7cdcba +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_glowhard_ab.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_ab.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_ab.mat new file mode 100644 index 0000000..60de89a --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_ab.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_glowsoft_ab + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 10307, guid: 0000000000000000f000000000000000, type: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: f7b97393870dfcc48b60123336abe597, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 0 + - _CastShadows: 0 + - _Cull: 2 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 10 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_ab.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_ab.mat.meta new file mode 100644 index 0000000..5b41cdd --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_ab.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 7f18710d02187f64aa00bfb8b2a17c9a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_glowsoft_ab.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_add.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_add.mat new file mode 100644 index 0000000..0d47948 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_add.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_glowsoft_add + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 10307, guid: 0000000000000000f000000000000000, type: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: f7b97393870dfcc48b60123336abe597, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 2 + - _CastShadows: 0 + - _Cull: 0 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 1 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_add.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_add.mat.meta new file mode 100644 index 0000000..dda02b7 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_add.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: f927f43b9fbe21e42b1aacf850dd2db7 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_glowsoft_add.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_add_depth.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_add_depth.mat new file mode 100644 index 0000000..54bcf33 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_add_depth.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_glowsoft_add_depth + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 10307, guid: 0000000000000000f000000000000000, type: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: f7b97393870dfcc48b60123336abe597, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 2 + - _CastShadows: 0 + - _Cull: 0 + - _Depth_Fade_Factor: 1 + - _Distort: 0 + - _DstBlend: 1 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_add_depth.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_add_depth.mat.meta new file mode 100644 index 0000000..c6384a7 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_add_depth.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: a48096c3243281548b3b2a26eaabc6cd +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_glowsoft_add_depth.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_blue_add.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_blue_add.mat new file mode 100644 index 0000000..c697e26 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_blue_add.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_glowsoft_blue_add + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 10307, guid: 0000000000000000f000000000000000, type: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: 3b93774a0232dfa45af34c64ca9ab58b, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 2 + - _CastShadows: 0 + - _Cull: 2 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 1 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_blue_add.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_blue_add.mat.meta new file mode 100644 index 0000000..de7d72c --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_blue_add.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: ee2f686e5a3f2084ca21b000b319c65e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_glowsoft_blue_add.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_green_add.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_green_add.mat new file mode 100644 index 0000000..19bf26d --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_green_add.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_glowsoft_green_add + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 10307, guid: 0000000000000000f000000000000000, type: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: d83f97d016b35e64d9a5e5825241aa53, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 2 + - _CastShadows: 0 + - _Cull: 2 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 1 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_green_add.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_green_add.mat.meta new file mode 100644 index 0000000..0b0e416 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_green_add.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 598d846be1ee27c4495525bc2d74b299 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_glowsoft_green_add.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_purple_add.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_purple_add.mat new file mode 100644 index 0000000..f2ad66d --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_purple_add.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_glowsoft_purple_add + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 10307, guid: 0000000000000000f000000000000000, type: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: 7313069236677ca4c94de17ab6b22e52, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 2 + - _CastShadows: 0 + - _Cull: 2 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 1 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_purple_add.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_purple_add.mat.meta new file mode 100644 index 0000000..91e06a2 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_purple_add.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: b95b6f00ab2c4444ba0c7c2bd048044d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_glowsoft_purple_add.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_purpledark_ab.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_purpledark_ab.mat new file mode 100644 index 0000000..02f7ab0 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_purpledark_ab.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_glowsoft_purpledark_ab + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 10307, guid: 0000000000000000f000000000000000, type: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: 55a14143fb0e26140bf99af289e30dc0, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 0 + - _CastShadows: 0 + - _Cull: 2 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 10 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_purpledark_ab.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_purpledark_ab.mat.meta new file mode 100644 index 0000000..8c52d3c --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_purpledark_ab.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 6192991748c24c74e845fa0471b46b01 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_glowsoft_purpledark_ab.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_rainbow_ab.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_rainbow_ab.mat new file mode 100644 index 0000000..1b7e983 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_rainbow_ab.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_glowsoft_rainbow_ab + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 10307, guid: 0000000000000000f000000000000000, type: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: c00c0825919beb84d8a0ba045d6ade7f, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 0 + - _CastShadows: 0 + - _Cull: 0 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 10 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_rainbow_ab.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_rainbow_ab.mat.meta new file mode 100644 index 0000000..3c07657 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_rainbow_ab.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: dbe7684186b009547b17c476405487fb +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_glowsoft_rainbow_ab.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_rainbow_add.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_rainbow_add.mat new file mode 100644 index 0000000..f5e7c49 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_rainbow_add.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_glowsoft_rainbow_add + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 10307, guid: 0000000000000000f000000000000000, type: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: c00c0825919beb84d8a0ba045d6ade7f, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 2 + - _CastShadows: 0 + - _Cull: 0 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 1 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_rainbow_add.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_rainbow_add.mat.meta new file mode 100644 index 0000000..564daf0 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_rainbow_add.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: e437e280fbd218e44ac9619540fc876a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_glowsoft_rainbow_add.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_rainbow_linear_add.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_rainbow_linear_add.mat new file mode 100644 index 0000000..9a4a6cd --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_rainbow_linear_add.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_glowsoft_rainbow_linear_add + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 10307, guid: 0000000000000000f000000000000000, type: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: 9a5abd1c796d7e542b4e968729381ad1, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 2 + - _CastShadows: 0 + - _Cull: 0 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 1 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_rainbow_linear_add.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_rainbow_linear_add.mat.meta new file mode 100644 index 0000000..b4e4a40 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_rainbow_linear_add.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: f2a1fedd919a42c48b4971581ac71251 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_glowsoft_rainbow_linear_add.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_red_add.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_red_add.mat new file mode 100644 index 0000000..c950ce3 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_red_add.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_glowsoft_red_add + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 10307, guid: 0000000000000000f000000000000000, type: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: ef8ae1625c5afee4ebb6b69282a3e670, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 2 + - _CastShadows: 0 + - _Cull: 2 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 1 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_red_add.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_red_add.mat.meta new file mode 100644 index 0000000..24c9d08 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_red_add.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 21e08e5c643a1594ba6d6948df4eba01 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_glowsoft_red_add.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_teal_add.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_teal_add.mat new file mode 100644 index 0000000..ca7871e --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_teal_add.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_glowsoft_teal_add + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 10307, guid: 0000000000000000f000000000000000, type: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: 65677aadfad83b644b3334b4b96857a3, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 2 + - _CastShadows: 0 + - _Cull: 2 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 1 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_teal_add.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_teal_add.mat.meta new file mode 100644 index 0000000..96fbb00 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_teal_add.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 19025950bda70c94987432d619380e59 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_glowsoft_teal_add.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_yellowcoreorange_add.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_yellowcoreorange_add.mat new file mode 100644 index 0000000..6de4b58 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_yellowcoreorange_add.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_glowsoft_yellowcoreorange_add + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 10307, guid: 0000000000000000f000000000000000, type: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: da258b94c85ca6247ac350bc30b05dad, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 2 + - _CastShadows: 0 + - _Cull: 2 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 1 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_yellowcoreorange_add.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_yellowcoreorange_add.mat.meta new file mode 100644 index 0000000..f6c6b7c --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_glowsoft_yellowcoreorange_add.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: ebe13852478e7624e96863ec20026d12 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_glowsoft_yellowcoreorange_add.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_groundgrid.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_groundgrid.mat new file mode 100644 index 0000000..2da84c1 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_groundgrid.mat @@ -0,0 +1,70 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-6753710429030465155 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_groundgrid + m_Shader: {fileID: -6465566751694194690, guid: 5a2526b215923be439bf0987135b281a, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: + - _EMISSION + m_LightmapFlags: 2 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Main_Tex: + m_Texture: {fileID: 2800000, guid: e935b85594b3fbb459e59f04785b4f6c, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _Metalness: 0 + - _QueueControl: 0 + - _QueueOffset: 0 + - _Smoothness: 0 + - _Timed_Offset: 0 + m_Colors: + - _Additive_Color_Overlay: {r: 0, g: 0, b: 0, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _Offset_Amount: {r: 0, g: 0, b: 0, a: 0} + - _Tiling_Amount: {r: 60, g: 10, b: 0, a: 0} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_groundgrid.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_groundgrid.mat.meta new file mode 100644 index 0000000..436dce6 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_groundgrid.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 8f7d74a5f1ba37346a8f2abd9dc90410 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_groundgrid.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_leaves_2x2_ab.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_leaves_2x2_ab.mat new file mode 100644 index 0000000..ef7e1e3 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_leaves_2x2_ab.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_leaves_2x2_ab + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - SHADOWCASTER + - DepthOnly + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 10307, guid: 0000000000000000f000000000000000, type: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: 3a4baefb6008e1447a9e54d6a23fed2e, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 0 + - _CastShadows: 0 + - _Cull: 2 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 10 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_leaves_2x2_ab.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_leaves_2x2_ab.mat.meta new file mode 100644 index 0000000..aca4329 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_leaves_2x2_ab.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 55b33a9fc96b80e40b8ab1260b985a39 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_leaves_2x2_ab.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_lightningbolts_long_yellow_1x4.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_lightningbolts_long_yellow_1x4.mat new file mode 100644 index 0000000..d220ee4 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_lightningbolts_long_yellow_1x4.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_lightningbolts_long_yellow_1x4 + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 10307, guid: 0000000000000000f000000000000000, type: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: 0ff7b340d4ca06b4e8084d60964b78b4, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 2 + - _CastShadows: 0 + - _Cull: 2 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 1 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_lightningbolts_long_yellow_1x4.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_lightningbolts_long_yellow_1x4.mat.meta new file mode 100644 index 0000000..b25efff --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_lightningbolts_long_yellow_1x4.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: bac71c9669c700647989060b9f847e3d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_lightningbolts_long_yellow_1x4.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_lightningsparks_long_yellow_2x2.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_lightningsparks_long_yellow_2x2.mat new file mode 100644 index 0000000..2e35f49 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_lightningsparks_long_yellow_2x2.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_lightningsparks_long_yellow_2x2 + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 10307, guid: 0000000000000000f000000000000000, type: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: 7b31d440f0a97d444862aabfaff7ae8d, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 2 + - _CastShadows: 0 + - _Cull: 2 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 1 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_lightningsparks_long_yellow_2x2.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_lightningsparks_long_yellow_2x2.mat.meta new file mode 100644 index 0000000..f1d5f48 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_lightningsparks_long_yellow_2x2.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 9dd4f10bb0ed3ed449f66cabf7ef8d7d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_lightningsparks_long_yellow_2x2.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_lightray_01_add.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_lightray_01_add.mat new file mode 100644 index 0000000..1acdb09 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_lightray_01_add.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_lightray_01_add + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 2800000, guid: b137d6010ed4a2f49ae52f291e1252be, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: 71f2214ed6a32944781cfb5333b5d22f, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 2 + - _CastShadows: 0 + - _Cull: 2 + - _Depth_Fade_Factor: 1.5 + - _Distort: 0 + - _DstBlend: 1 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_lightray_01_add.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_lightray_01_add.mat.meta new file mode 100644 index 0000000..e0f1dbb --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_lightray_01_add.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: b95217badb046c247bd6121b0bd79ca5 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_lightray_01_add.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_lightray_03_add.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_lightray_03_add.mat new file mode 100644 index 0000000..0dca953 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_lightray_03_add.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_lightray_03_add + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 2800000, guid: b137d6010ed4a2f49ae52f291e1252be, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: 4099d9bbe375ca64b90af810fc990a94, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 2 + - _CastShadows: 0 + - _Cull: 2 + - _Depth_Fade_Factor: 1.5 + - _Distort: 0 + - _DstBlend: 1 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_lightray_03_add.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_lightray_03_add.mat.meta new file mode 100644 index 0000000..702b1f8 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_lightray_03_add.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 6a95127c7664c85489246c3c1449df72 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_lightray_03_add.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_lightray_04_ab.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_lightray_04_ab.mat new file mode 100644 index 0000000..68b7bb6 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_lightray_04_ab.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_lightray_04_ab + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 2800000, guid: b137d6010ed4a2f49ae52f291e1252be, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: e145935d5a471ec4caa3aeacd3810ded, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 0 + - _CastShadows: 0 + - _Cull: 2 + - _Depth_Fade_Factor: 1.5 + - _Distort: 0 + - _DstBlend: 10 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_lightray_04_ab.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_lightray_04_ab.mat.meta new file mode 100644 index 0000000..dd6a256 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_lightray_04_ab.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: bb6d82bd1bf740342b0dd5e28d4065b6 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_lightray_04_ab.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_lightray_05_add.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_lightray_05_add.mat new file mode 100644 index 0000000..810431e --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_lightray_05_add.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_lightray_05_add + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 2800000, guid: b137d6010ed4a2f49ae52f291e1252be, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: 3e991a5dad5e56c4692fdbc79759aefe, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 2 + - _CastShadows: 0 + - _Cull: 2 + - _Depth_Fade_Factor: 1.5 + - _Distort: 0 + - _DstBlend: 1 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_lightray_05_add.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_lightray_05_add.mat.meta new file mode 100644 index 0000000..da3d323 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_lightray_05_add.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 065b99ec0d02dcf4290e2d5cfe5aa00f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_lightray_05_add.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_arcane_core.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_arcane_core.mat new file mode 100644 index 0000000..a7fc765 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_arcane_core.mat @@ -0,0 +1,87 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-9187061896174500474 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_magiccircle_arcane_core + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Dissolve_Texture: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: 6fc133030a95c96499791ca0d4dffa88, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 0 + - _CastShadows: 1 + - _Cull: 2 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 10 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: [] + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_arcane_core.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_arcane_core.mat.meta new file mode 100644 index 0000000..e2812f3 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_arcane_core.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 23caa6a637f0fcb408536f00cd405853 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_magiccircle_arcane_core.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_arcane_outer.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_arcane_outer.mat new file mode 100644 index 0000000..383c156 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_arcane_outer.mat @@ -0,0 +1,87 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-2895943276680254779 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_magiccircle_arcane_outer + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Dissolve_Texture: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: 5b2ead3ec07f49c48a47aa79a9a292e8, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 0 + - _CastShadows: 1 + - _Cull: 2 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 10 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: [] + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_arcane_outer.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_arcane_outer.mat.meta new file mode 100644 index 0000000..d08e76f --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_arcane_outer.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 20f29bdce6342034db31cf45aa32aa84 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_magiccircle_arcane_outer.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_arcane_star.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_arcane_star.mat new file mode 100644 index 0000000..a316926 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_arcane_star.mat @@ -0,0 +1,87 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-3659600896185753291 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_magiccircle_arcane_star + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Dissolve_Texture: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: 590e95a89646e9d41921e7bad28b330d, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 0 + - _CastShadows: 1 + - _Cull: 2 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 10 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: [] + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_arcane_star.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_arcane_star.mat.meta new file mode 100644 index 0000000..1ce903f --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_arcane_star.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 8377fef767e9cbf4192d47c11b963932 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_magiccircle_arcane_star.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_blood_core.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_blood_core.mat new file mode 100644 index 0000000..ac2f9a1 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_blood_core.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_magiccircle_blood_core + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: 3fbf7b6fdff0e81438213379ff787087, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 2 + - _CastShadows: 0 + - _Cull: 0 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 1 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_blood_core.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_blood_core.mat.meta new file mode 100644 index 0000000..5451d38 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_blood_core.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: d3dcbe8c15111244c8d5d5e2ea79be8b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_magiccircle_blood_core.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_blood_outer.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_blood_outer.mat new file mode 100644 index 0000000..f689494 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_blood_outer.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_magiccircle_blood_outer + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: 2329e1e6e291acb4da527a201f84fb9d, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 2 + - _CastShadows: 0 + - _Cull: 0 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 1 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_blood_outer.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_blood_outer.mat.meta new file mode 100644 index 0000000..f06cb78 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_blood_outer.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 8b8c2d706eeac504b8b836e5e4f6a59b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_magiccircle_blood_outer.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_blood_secondary.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_blood_secondary.mat new file mode 100644 index 0000000..ed1d1e6 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_blood_secondary.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_magiccircle_blood_secondary + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: 66c00946dc1cb8f4a9bc23958815534c, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 2 + - _CastShadows: 0 + - _Cull: 0 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 1 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_blood_secondary.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_blood_secondary.mat.meta new file mode 100644 index 0000000..e492bf2 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_blood_secondary.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 578d9754885bbe046bc357285ab1445e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_magiccircle_blood_secondary.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_dark_core.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_dark_core.mat new file mode 100644 index 0000000..2242084 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_dark_core.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_magiccircle_dark_core + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: 70418af84a299dd419c242fa81f5da00, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 2 + - _CastShadows: 0 + - _Cull: 0 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 1 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_dark_core.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_dark_core.mat.meta new file mode 100644 index 0000000..992822b --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_dark_core.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 3fa8c214d65a6fe4388abb1c5afe08df +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_magiccircle_dark_core.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_dark_outer.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_dark_outer.mat new file mode 100644 index 0000000..7dfc3e3 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_dark_outer.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_magiccircle_dark_outer + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: 269f8d93b323851458f925591014de3a, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 2 + - _CastShadows: 0 + - _Cull: 0 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 1 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_dark_outer.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_dark_outer.mat.meta new file mode 100644 index 0000000..f0984a0 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_dark_outer.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 6be8c3b68a395174483a2c9109baac55 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_magiccircle_dark_outer.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_dark_star.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_dark_star.mat new file mode 100644 index 0000000..be16c42 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_dark_star.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_magiccircle_dark_star + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: 20af25ad47bcc434c92ff6362f15a8ca, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 2 + - _CastShadows: 0 + - _Cull: 0 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 1 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_dark_star.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_dark_star.mat.meta new file mode 100644 index 0000000..af82cc5 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_dark_star.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: b8a5e74b9a3c2a74d8ac4b585759d44a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_magiccircle_dark_star.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_death_core.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_death_core.mat new file mode 100644 index 0000000..ea1f6b6 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_death_core.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_magiccircle_death_core + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: 73fb95fa148463b48878d323fa64f7f2, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 0 + - _CastShadows: 0 + - _Cull: 0 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 10 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_death_core.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_death_core.mat.meta new file mode 100644 index 0000000..2c0a2be --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_death_core.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: f9581de9ccf3f9546bf581a4f863abf2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_magiccircle_death_core.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_death_outer.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_death_outer.mat new file mode 100644 index 0000000..bbf147c --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_death_outer.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_magiccircle_death_outer + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: 0af1bc684468de8419f6b4f690d96cea, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 0 + - _CastShadows: 0 + - _Cull: 0 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 10 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_death_outer.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_death_outer.mat.meta new file mode 100644 index 0000000..f9a43f3 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_death_outer.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: b8315b302a8c1074cb3185288bb67be7 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_magiccircle_death_outer.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_death_star.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_death_star.mat new file mode 100644 index 0000000..67d19ee --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_death_star.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_magiccircle_death_star + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: f7357cb8cfbcc6641a20a8da611901db, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 0 + - _CastShadows: 0 + - _Cull: 0 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 10 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_death_star.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_death_star.mat.meta new file mode 100644 index 0000000..1239bf2 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_death_star.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 00f8cd98f858ba2488e5d6de9da463ae +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_magiccircle_death_star.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_earth_core.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_earth_core.mat new file mode 100644 index 0000000..84f73db --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_earth_core.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_magiccircle_earth_core + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: 50484cbb58af41943859e78574219b59, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 2 + - _CastShadows: 0 + - _Cull: 0 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 1 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_earth_core.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_earth_core.mat.meta new file mode 100644 index 0000000..1288872 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_earth_core.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 43a5f605fb0c2c245b2da729e5f27231 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_magiccircle_earth_core.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_earth_innersecondary.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_earth_innersecondary.mat new file mode 100644 index 0000000..507cd7c --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_earth_innersecondary.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_magiccircle_earth_innersecondary + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: 031244d7569e645409b9dd327a90e176, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 2 + - _CastShadows: 0 + - _Cull: 0 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 1 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_earth_innersecondary.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_earth_innersecondary.mat.meta new file mode 100644 index 0000000..4099441 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_earth_innersecondary.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: f7c8f192ebd961e41a74112a8e621f66 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_magiccircle_earth_innersecondary.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_earth_outer.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_earth_outer.mat new file mode 100644 index 0000000..3fd5c38 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_earth_outer.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_magiccircle_earth_outer + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: 49a65df1630279848a41642730093d1b, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 2 + - _CastShadows: 0 + - _Cull: 0 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 1 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_earth_outer.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_earth_outer.mat.meta new file mode 100644 index 0000000..53ba452 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_earth_outer.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 466e9dc43d941094196d920d6cf88749 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_magiccircle_earth_outer.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_earth_outersecondary.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_earth_outersecondary.mat new file mode 100644 index 0000000..12d365c --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_earth_outersecondary.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_magiccircle_earth_outersecondary + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: df8a99fa745e4fc4c912eececf5c1d00, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 2 + - _CastShadows: 0 + - _Cull: 0 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 1 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_earth_outersecondary.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_earth_outersecondary.mat.meta new file mode 100644 index 0000000..7bf277d --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_earth_outersecondary.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 4a075726af831ff4ca9224c5460439a7 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_magiccircle_earth_outersecondary.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_flame_core.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_flame_core.mat new file mode 100644 index 0000000..506bd3b --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_flame_core.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_magiccircle_flame_core + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: 2021f53293bba6f448fcf458373a363e, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 2 + - _CastShadows: 0 + - _Cull: 0 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 1 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_flame_core.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_flame_core.mat.meta new file mode 100644 index 0000000..88ce634 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_flame_core.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 8bde5ab8a1432f544b32b6f121573de4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_magiccircle_flame_core.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_flame_outer.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_flame_outer.mat new file mode 100644 index 0000000..d3fbff7 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_flame_outer.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_magiccircle_flame_outer + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: 8a4d5519d64f6374c90ccc72cff14118, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 2 + - _CastShadows: 0 + - _Cull: 0 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 1 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_flame_outer.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_flame_outer.mat.meta new file mode 100644 index 0000000..246a967 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_flame_outer.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 4428c5fa429162f4ba5173078629eb8b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_magiccircle_flame_outer.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_flame_secondary.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_flame_secondary.mat new file mode 100644 index 0000000..b81f8a6 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_flame_secondary.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_magiccircle_flame_secondary + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: 253c5128d3245e04fbb5f0ace19a043a, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 2 + - _CastShadows: 0 + - _Cull: 0 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 1 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_flame_secondary.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_flame_secondary.mat.meta new file mode 100644 index 0000000..f697a59 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_flame_secondary.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 33f13407ed874654bbeead9506e1a03f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_magiccircle_flame_secondary.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_ice_core.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_ice_core.mat new file mode 100644 index 0000000..8370463 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_ice_core.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_magiccircle_ice_core + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: 12b41c773c3519545889848665923722, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 2 + - _CastShadows: 0 + - _Cull: 0 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 1 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_ice_core.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_ice_core.mat.meta new file mode 100644 index 0000000..71cc5be --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_ice_core.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 2cf318558db189341a11dd26e0c2e045 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_magiccircle_ice_core.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_ice_outer.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_ice_outer.mat new file mode 100644 index 0000000..86b787b --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_ice_outer.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_magiccircle_ice_outer + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: de61739c819186e4f92bab1e7586c199, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 2 + - _CastShadows: 0 + - _Cull: 0 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 1 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_ice_outer.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_ice_outer.mat.meta new file mode 100644 index 0000000..095e7e4 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_ice_outer.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: b4521a9b00fa0a542afb4a38b7d320d1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_magiccircle_ice_outer.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_ice_secondary.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_ice_secondary.mat new file mode 100644 index 0000000..1f9e1e3 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_ice_secondary.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_magiccircle_ice_secondary + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: ad1c64ed2c140364e9c0ff8dce4226e5, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 2 + - _CastShadows: 0 + - _Cull: 0 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 1 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_ice_secondary.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_ice_secondary.mat.meta new file mode 100644 index 0000000..a81d98e --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_ice_secondary.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: ffe48a2af484c624b8a704e7e0512ef1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_magiccircle_ice_secondary.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_life_core.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_life_core.mat new file mode 100644 index 0000000..945b26d --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_life_core.mat @@ -0,0 +1,87 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_magiccircle_life_core + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Dissolve_Texture: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: ea71e9f5364e5844da4cef723ef47f8f, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 0 + - _CastShadows: 1 + - _Cull: 2 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 10 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: [] + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &5779084073064348305 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_life_core.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_life_core.mat.meta new file mode 100644 index 0000000..ab7f1ba --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_life_core.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 1443949959c08594ca4e4f08009c73d4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_magiccircle_life_core.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_life_mid.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_life_mid.mat new file mode 100644 index 0000000..4d92728 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_life_mid.mat @@ -0,0 +1,87 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-6543290406053829637 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_magiccircle_life_mid + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Dissolve_Texture: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: 70d101ac6e1693646926e85d2e8678ac, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 0 + - _CastShadows: 1 + - _Cull: 2 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 10 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: [] + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_life_mid.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_life_mid.mat.meta new file mode 100644 index 0000000..37b2580 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_life_mid.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 4896209183da85247b71c6da75a8520b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_magiccircle_life_mid.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_life_outer.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_life_outer.mat new file mode 100644 index 0000000..ffcb62e --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_life_outer.mat @@ -0,0 +1,87 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-6493430130157315502 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_magiccircle_life_outer + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Dissolve_Texture: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: 5d89abca7bc16f04194d8483cde6c379, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 0 + - _CastShadows: 1 + - _Cull: 2 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 10 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: [] + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_life_outer.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_life_outer.mat.meta new file mode 100644 index 0000000..09d2876 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_life_outer.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 1b6fd8b31ad6bd3419046861cd682488 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_magiccircle_life_outer.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_light_core.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_light_core.mat new file mode 100644 index 0000000..b38ee2e --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_light_core.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_magiccircle_light_core + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: 4339a6694f8de9642b386ea61ba8b12a, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 2 + - _CastShadows: 0 + - _Cull: 0 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 1 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_light_core.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_light_core.mat.meta new file mode 100644 index 0000000..d2f32d1 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_light_core.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: b115e03f89dd1d947801c1de966a7a4b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_magiccircle_light_core.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_light_outer.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_light_outer.mat new file mode 100644 index 0000000..d4c5da2 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_light_outer.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_magiccircle_light_outer + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: 8ce193253846ace4eb8f78942cdc61af, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 2 + - _CastShadows: 0 + - _Cull: 0 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 1 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_light_outer.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_light_outer.mat.meta new file mode 100644 index 0000000..40e37b4 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_light_outer.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: a9e3af0e87173c94d80a50f5ccc0db07 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_magiccircle_light_outer.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_light_secondary.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_light_secondary.mat new file mode 100644 index 0000000..44e643b --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_light_secondary.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_magiccircle_light_secondary + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: 5d427bba543c2044a87c3580a45136f8, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 2 + - _CastShadows: 0 + - _Cull: 0 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 1 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_light_secondary.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_light_secondary.mat.meta new file mode 100644 index 0000000..5ffff42 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_light_secondary.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 358da38af2f5e70488e43f43a6eb5956 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_magiccircle_light_secondary.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_lightning_core.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_lightning_core.mat new file mode 100644 index 0000000..6c1bc07 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_lightning_core.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_magiccircle_lightning_core + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: ae8e11d53186ba04fae8a62150427fea, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 2 + - _CastShadows: 0 + - _Cull: 0 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 1 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_lightning_core.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_lightning_core.mat.meta new file mode 100644 index 0000000..35e3070 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_lightning_core.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 64f7a3dce27cf0f46b010b3c91dadc11 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_magiccircle_lightning_core.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_lightning_outer.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_lightning_outer.mat new file mode 100644 index 0000000..8d63823 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_lightning_outer.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_magiccircle_lightning_outer + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: f175f956663a1e74fa0efcb5cdc8df91, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 2 + - _CastShadows: 0 + - _Cull: 0 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 1 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_lightning_outer.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_lightning_outer.mat.meta new file mode 100644 index 0000000..6f7eff2 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_lightning_outer.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: c97189d2061c6624c9824482ba4949fc +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_magiccircle_lightning_outer.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_music_core.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_music_core.mat new file mode 100644 index 0000000..9dae724 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_music_core.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_magiccircle_music_core + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: e50de9c4c45acd44893490622eb3f2e0, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 2 + - _CastShadows: 0 + - _Cull: 0 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 1 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_music_core.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_music_core.mat.meta new file mode 100644 index 0000000..1eeb2ae --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_music_core.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 906628587026d674a85c288be59b3fa6 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_magiccircle_music_core.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_music_outer.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_music_outer.mat new file mode 100644 index 0000000..04f55f0 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_music_outer.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_magiccircle_music_outer + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: 4b4f0fc2ea2661c488ce32bdd1a6995f, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 2 + - _CastShadows: 0 + - _Cull: 0 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 1 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_music_outer.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_music_outer.mat.meta new file mode 100644 index 0000000..e25be80 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_music_outer.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 8cab30131b122624ab3a001ec93e2ed8 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_magiccircle_music_outer.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_music_secondary.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_music_secondary.mat new file mode 100644 index 0000000..6b33fab --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_music_secondary.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_magiccircle_music_secondary + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: d64dfe7901e07cb4f81843e1b359e120, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 2 + - _CastShadows: 0 + - _Cull: 0 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 1 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_music_secondary.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_music_secondary.mat.meta new file mode 100644 index 0000000..65af46b --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_music_secondary.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 6e92cfa57cdf51d47896400a7ccadfb2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_magiccircle_music_secondary.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_plant_outer.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_plant_outer.mat new file mode 100644 index 0000000..bbc2bb0 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_plant_outer.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_magiccircle_plant_outer + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: 39cd9a80025696740a3d1db8b7bd8b53, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 2 + - _CastShadows: 0 + - _Cull: 0 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 1 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_plant_outer.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_plant_outer.mat.meta new file mode 100644 index 0000000..30918f3 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_plant_outer.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: ac1fb3fe4506fb04cbae174674dea4cf +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_magiccircle_plant_outer.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_plant_rootsleaves.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_plant_rootsleaves.mat new file mode 100644 index 0000000..662707f --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_plant_rootsleaves.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_magiccircle_plant_rootsleaves + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: 27e3e606fba42c0449d4982211273f5c, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 2 + - _CastShadows: 0 + - _Cull: 0 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 1 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_plant_rootsleaves.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_plant_rootsleaves.mat.meta new file mode 100644 index 0000000..130aa9e --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_plant_rootsleaves.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: aa2f3e38478608844a89c4e531935b58 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_magiccircle_plant_rootsleaves.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_plant_rosecore.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_plant_rosecore.mat new file mode 100644 index 0000000..04ab3e9 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_plant_rosecore.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_magiccircle_plant_rosecore + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: 137d2e114bed25046a6c5e260c18c8f4, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 2 + - _CastShadows: 0 + - _Cull: 0 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 1 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_plant_rosecore.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_plant_rosecore.mat.meta new file mode 100644 index 0000000..83181be --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_plant_rosecore.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 56e342e38e2729d449bd8ffdc730d3f9 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_magiccircle_plant_rosecore.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_poison_core.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_poison_core.mat new file mode 100644 index 0000000..9aec35f --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_poison_core.mat @@ -0,0 +1,87 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_magiccircle_poison_core + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Dissolve_Texture: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: d26798c7082a01e4c960181128ca9cb8, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 0 + - _CastShadows: 1 + - _Cull: 2 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 10 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: [] + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &5779084073064348305 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_poison_core.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_poison_core.mat.meta new file mode 100644 index 0000000..ec61b03 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_poison_core.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 215cf75b181e5a842a4d4dbb99199a55 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_magiccircle_poison_core.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_poison_mid.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_poison_mid.mat new file mode 100644 index 0000000..fcdcc5f --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_poison_mid.mat @@ -0,0 +1,87 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-6543290406053829637 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_magiccircle_poison_mid + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Dissolve_Texture: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: 7a5a5404ce0b3dd44ad9ae9995a8b92b, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 0 + - _CastShadows: 1 + - _Cull: 2 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 10 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: [] + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_poison_mid.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_poison_mid.mat.meta new file mode 100644 index 0000000..586afda --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_poison_mid.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: fe49ba4e6142a4b42a3153b0ba5697b6 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_magiccircle_poison_mid.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_poison_outer.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_poison_outer.mat new file mode 100644 index 0000000..d866abb --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_poison_outer.mat @@ -0,0 +1,87 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-6493430130157315502 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_magiccircle_poison_outer + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Dissolve_Texture: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: d21916581c02af546bd598a4c9e2691c, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 0 + - _CastShadows: 1 + - _Cull: 2 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 10 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: [] + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_poison_outer.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_poison_outer.mat.meta new file mode 100644 index 0000000..653ca5f --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_poison_outer.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 595689a2d19a1e24db8a8caa429c8113 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_magiccircle_poison_outer.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_water_core.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_water_core.mat new file mode 100644 index 0000000..b7018d3 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_water_core.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_magiccircle_water_core + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: 46f807e430f70b141a74e68213fa3c85, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 2 + - _CastShadows: 0 + - _Cull: 0 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 1 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_water_core.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_water_core.mat.meta new file mode 100644 index 0000000..874a076 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_water_core.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: f32602ac330499f4f87a4937054bab86 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_magiccircle_water_core.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_water_outer.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_water_outer.mat new file mode 100644 index 0000000..6b76ba5 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_water_outer.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_magiccircle_water_outer + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: 11b22bc8746d263479c480597f3f3fd8, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 2 + - _CastShadows: 0 + - _Cull: 0 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 1 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_water_outer.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_water_outer.mat.meta new file mode 100644 index 0000000..14a87ff --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_water_outer.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 2039d932a28ab1e4ebd28006174b97fc +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_magiccircle_water_outer.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_water_secondary.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_water_secondary.mat new file mode 100644 index 0000000..9362759 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_water_secondary.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_magiccircle_water_secondary + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: 462410147f21af74e9fa3bdacada4a1b, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 2 + - _CastShadows: 0 + - _Cull: 0 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 1 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_water_secondary.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_water_secondary.mat.meta new file mode 100644 index 0000000..8951983 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_water_secondary.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: d38c14f48b199d340b42cc09fee47ab4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_magiccircle_water_secondary.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_wind_core.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_wind_core.mat new file mode 100644 index 0000000..eb0e3b1 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_wind_core.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_magiccircle_wind_core + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: a8e2de51e6c9a8f4f9e8dfc60c7854bf, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 2 + - _CastShadows: 0 + - _Cull: 0 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 1 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_wind_core.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_wind_core.mat.meta new file mode 100644 index 0000000..4e792a0 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_wind_core.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 09bbc6b43a8325949bc3b471016a06c4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_magiccircle_wind_core.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_wind_outer.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_wind_outer.mat new file mode 100644 index 0000000..4416aa6 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_wind_outer.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_magiccircle_wind_outer + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: 479fe2eb9a8219347beec3e7b567c1a7, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 2 + - _CastShadows: 0 + - _Cull: 0 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 1 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_wind_outer.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_wind_outer.mat.meta new file mode 100644 index 0000000..7335dd1 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_wind_outer.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: d7846ab789db3aa419f03a44d90375ac +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_magiccircle_wind_outer.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_wind_secondary.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_wind_secondary.mat new file mode 100644 index 0000000..c343e9c --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_wind_secondary.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_magiccircle_wind_secondary + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: fb5fdca4184871449915e98ac2288572, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 2 + - _CastShadows: 0 + - _Cull: 0 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 1 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_wind_secondary.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_wind_secondary.mat.meta new file mode 100644 index 0000000..efeecdc --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_magiccircle_wind_secondary.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: a2c378811911d224fa9f77aef876d5fe +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_magiccircle_wind_secondary.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_multibits_2x2_ab.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_multibits_2x2_ab.mat new file mode 100644 index 0000000..7dcce86 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_multibits_2x2_ab.mat @@ -0,0 +1,87 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-8111541777202567560 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_multibits_2x2_ab + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Dissolve_Texture: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: bf6d8c973b217054bae2049c7e0e2e73, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 0 + - _CastShadows: 1 + - _Cull: 2 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 10 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: [] + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_multibits_2x2_ab.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_multibits_2x2_ab.mat.meta new file mode 100644 index 0000000..f4b984a --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_multibits_2x2_ab.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 17645553af86a31439a6533446239953 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_multibits_2x2_ab.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_musicalnotes_3x3_add.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_musicalnotes_3x3_add.mat new file mode 100644 index 0000000..3eb2d04 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_musicalnotes_3x3_add.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_musicalnotes_3x3_add + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 10307, guid: 0000000000000000f000000000000000, type: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: 12882a56496973245a69f0207e452f2c, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 2 + - _CastShadows: 0 + - _Cull: 2 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 1 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_musicalnotes_3x3_add.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_musicalnotes_3x3_add.mat.meta new file mode 100644 index 0000000..2566f1d --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_musicalnotes_3x3_add.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: b12ad2c87b76e1b4398d9a82df3ed45c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_musicalnotes_3x3_add.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_musicbar_add.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_musicbar_add.mat new file mode 100644 index 0000000..2cb6bfd --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_musicbar_add.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_musicbar_add + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 10307, guid: 0000000000000000f000000000000000, type: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: 3b4c907d9f3dea44e93bcfbd5ccb1fa6, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 2 + - _CastShadows: 0 + - _Cull: 0 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 1 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_musicbar_add.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_musicbar_add.mat.meta new file mode 100644 index 0000000..6b187eb --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_musicbar_add.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 1068f161a818fa04f90c9a35d67828a2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_musicbar_add.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_noise_02_ab_rb.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_noise_02_ab_rb.mat new file mode 100644 index 0000000..1bf954f --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_noise_02_ab_rb.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_noise_02_ab_rb + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 2800000, guid: 5039867e295193d4a8904b2dcb833608, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: b137d6010ed4a2f49ae52f291e1252be, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 2 + - _CastShadows: 0 + - _Cull: 0 + - _Depth_Fade_Factor: 1.15 + - _Distort: 0 + - _DstBlend: 1 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_noise_02_ab_rb.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_noise_02_ab_rb.mat.meta new file mode 100644 index 0000000..5fb4620 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_noise_02_ab_rb.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 3869b6d99255ad4469a7a8b6e1d1870f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_noise_02_ab_rb.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_noise_10_add_rb_nodepth.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_noise_10_add_rb_nodepth.mat new file mode 100644 index 0000000..d6bba51 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_noise_10_add_rb_nodepth.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_noise_10_add_rb_nodepth + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 2800000, guid: 1246ed301dcc8294485d18f446d96007, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: c62d4151e068863409b79312c1e7bc95, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 2 + - _CastShadows: 0 + - _Cull: 0 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 1 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_noise_10_add_rb_nodepth.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_noise_10_add_rb_nodepth.mat.meta new file mode 100644 index 0000000..893d8ea --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_noise_10_add_rb_nodepth.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: cb97a52f0266143449cb0265eeaf2298 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_noise_10_add_rb_nodepth.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_petals_2x2_ab.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_petals_2x2_ab.mat new file mode 100644 index 0000000..2bc919c --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_petals_2x2_ab.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_petals_2x2_ab + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - SHADOWCASTER + - DepthOnly + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 10307, guid: 0000000000000000f000000000000000, type: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: 5e108de439625e64ca78cf2b6f9c0f33, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 0 + - _CastShadows: 0 + - _Cull: 2 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 10 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_petals_2x2_ab.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_petals_2x2_ab.mat.meta new file mode 100644 index 0000000..8ba230b --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_petals_2x2_ab.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: bcdef1c563415d94ba45913dd8cb2be7 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_petals_2x2_ab.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_ringspeed_02_add.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_ringspeed_02_add.mat new file mode 100644 index 0000000..7f26265 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_ringspeed_02_add.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_ringspeed_02_add + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 10307, guid: 0000000000000000f000000000000000, type: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: c9a0c028ffcb02341b8a4fd15dcb3af2, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 2 + - _CastShadows: 0 + - _Cull: 2 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 1 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_ringspeed_02_add.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_ringspeed_02_add.mat.meta new file mode 100644 index 0000000..175c9ac --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_ringspeed_02_add.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 58f9c73fd5b657e4099ba7775e8025f7 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_ringspeed_02_add.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_rock_3x3_ab.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_rock_3x3_ab.mat new file mode 100644 index 0000000..eef9dd8 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_rock_3x3_ab.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_rock_3x3_ab + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 10307, guid: 0000000000000000f000000000000000, type: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: 5dad249779d803d45b49963ef0410f45, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 0 + - _CastShadows: 0 + - _Cull: 2 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 10 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_rock_3x3_ab.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_rock_3x3_ab.mat.meta new file mode 100644 index 0000000..c9c1637 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_rock_3x3_ab.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 7eb9aed551cbc984d99455b2533bc02e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_rock_3x3_ab.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_smoke_01_ab.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_smoke_01_ab.mat new file mode 100644 index 0000000..38daa32 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_smoke_01_ab.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_smoke_01_ab + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 2800000, guid: b137d6010ed4a2f49ae52f291e1252be, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: 9ea9ed7729ada7049967c9f9508424fa, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 0 + - _CastShadows: 0 + - _Cull: 2 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 10 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_smoke_01_ab.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_smoke_01_ab.mat.meta new file mode 100644 index 0000000..96fc258 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_smoke_01_ab.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: f168409e03ff16e48a7c7dc2d9f6b295 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_smoke_01_ab.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_smoke_01_ab_rb_nodepth.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_smoke_01_ab_rb_nodepth.mat new file mode 100644 index 0000000..a906013 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_smoke_01_ab_rb_nodepth.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_smoke_01_ab_rb_nodepth + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 2800000, guid: b137d6010ed4a2f49ae52f291e1252be, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: 9ea9ed7729ada7049967c9f9508424fa, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 0 + - _CastShadows: 0 + - _Cull: 0 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 10 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_smoke_01_ab_rb_nodepth.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_smoke_01_ab_rb_nodepth.mat.meta new file mode 100644 index 0000000..0aeeb9f --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_smoke_01_ab_rb_nodepth.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 3b40a84140c28a34d81720ff59f1e148 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_smoke_01_ab_rb_nodepth.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_smoke_01_add.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_smoke_01_add.mat new file mode 100644 index 0000000..4e8a019 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_smoke_01_add.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_smoke_01_add + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 2800000, guid: b137d6010ed4a2f49ae52f291e1252be, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: 9ea9ed7729ada7049967c9f9508424fa, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 2 + - _CastShadows: 0 + - _Cull: 2 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 1 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_smoke_01_add.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_smoke_01_add.mat.meta new file mode 100644 index 0000000..e5524c6 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_smoke_01_add.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: dec905788db9b5c499c437e4a069afd0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_smoke_01_add.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_smoke_01_add_rb_nodepth.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_smoke_01_add_rb_nodepth.mat new file mode 100644 index 0000000..7e0b4d0 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_smoke_01_add_rb_nodepth.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_smoke_01_add_rb_nodepth + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 2800000, guid: b137d6010ed4a2f49ae52f291e1252be, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: 9ea9ed7729ada7049967c9f9508424fa, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 2 + - _CastShadows: 0 + - _Cull: 0 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 1 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_smoke_01_add_rb_nodepth.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_smoke_01_add_rb_nodepth.mat.meta new file mode 100644 index 0000000..671b663 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_smoke_01_add_rb_nodepth.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: b34acf89e10e77c4ba027750a3bfd5f3 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_smoke_01_add_rb_nodepth.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_snowflakes_2x2_ab.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_snowflakes_2x2_ab.mat new file mode 100644 index 0000000..5b394f5 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_snowflakes_2x2_ab.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_snowflakes_2x2_ab + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 10307, guid: 0000000000000000f000000000000000, type: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: b9bfa81798ec37540be319ff066ae3e4, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 2 + - _CastShadows: 0 + - _Cull: 2 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 1 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_snowflakes_2x2_ab.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_snowflakes_2x2_ab.mat.meta new file mode 100644 index 0000000..c339ba9 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_snowflakes_2x2_ab.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 8b4b98b5017db3f47b7ee404e47f8c55 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_snowflakes_2x2_ab.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_sparkle_01_add.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_sparkle_01_add.mat new file mode 100644 index 0000000..c99afb6 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_sparkle_01_add.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_sparkle_01_add + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 10307, guid: 0000000000000000f000000000000000, type: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: c5171001128e728459b55a6e6d215fa7, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 2 + - _CastShadows: 0 + - _Cull: 2 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 1 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_sparkle_01_add.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_sparkle_01_add.mat.meta new file mode 100644 index 0000000..e885a0c --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_sparkle_01_add.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: a670645cc88c59b42a5fbb1e3106cddd +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_sparkle_01_add.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_sparkle_01_green_add.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_sparkle_01_green_add.mat new file mode 100644 index 0000000..65d443a --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_sparkle_01_green_add.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_sparkle_01_green_add + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 10307, guid: 0000000000000000f000000000000000, type: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: 317a91c8209e1224182c283fa979b864, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 2 + - _CastShadows: 0 + - _Cull: 2 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 1 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_sparkle_01_green_add.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_sparkle_01_green_add.mat.meta new file mode 100644 index 0000000..211df11 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_sparkle_01_green_add.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 2cff42bc0b5bdc345977d173fc6227c4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_sparkle_01_green_add.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_sparkle_01_purple_add.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_sparkle_01_purple_add.mat new file mode 100644 index 0000000..8d8ca0c --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_sparkle_01_purple_add.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_sparkle_01_purple_add + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 10307, guid: 0000000000000000f000000000000000, type: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: ac9cdb368618cdf4ba7a213d05b3429d, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 2 + - _CastShadows: 0 + - _Cull: 2 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 1 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_sparkle_01_purple_add.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_sparkle_01_purple_add.mat.meta new file mode 100644 index 0000000..faaa2d6 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_sparkle_01_purple_add.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 9e5e4cb76c3d5e043aa1d7597e4bcd8c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_sparkle_01_purple_add.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_splash_01_ab.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_splash_01_ab.mat new file mode 100644 index 0000000..a0f84d7 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_splash_01_ab.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_splash_01_ab + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 2800000, guid: cb9418db250be7d4982e068711685d33, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: 581a1223d77f2804997883980dc8a4f5, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 0 + - _CastShadows: 0 + - _Cull: 0 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 10 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_splash_01_ab.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_splash_01_ab.mat.meta new file mode 100644 index 0000000..1aeb507 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_splash_01_ab.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: c6c46997763c7734c87d2e820019249c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_splash_01_ab.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_splash_03_ab.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_splash_03_ab.mat new file mode 100644 index 0000000..496c0fa --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_splash_03_ab.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_splash_03_ab + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 2800000, guid: cb9418db250be7d4982e068711685d33, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: 651267a023ccdde4cb8bc93bd2e4abd1, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 0 + - _CastShadows: 0 + - _Cull: 0 + - _Depth_Fade_Factor: 0.4 + - _Distort: 0 + - _DstBlend: 10 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_splash_03_ab.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_splash_03_ab.mat.meta new file mode 100644 index 0000000..aea33f7 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_splash_03_ab.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 3fd430bf5b981f7449d321c70ba57dc4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_splash_03_ab.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_trail_01_ab.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_trail_01_ab.mat new file mode 100644 index 0000000..17a98f0 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_trail_01_ab.mat @@ -0,0 +1,92 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_trail_01_ab + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - MOTIONVECTORS + - DepthOnly + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: b9dd34898caaed44197e4a0bab1d2ebf, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 2 + - _CastShadows: 1 + - _Cull: 2 + - _Depth_Fade_Factor: 0.35 + - _Distort: 0 + - _DstBlend: 1 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &4616625464582046864 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_trail_01_ab.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_trail_01_ab.mat.meta new file mode 100644 index 0000000..315eb96 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_trail_01_ab.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 2d95da09e35b840479f41baf247ba8b3 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_trail_01_ab.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_trail_dark.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_trail_dark.mat new file mode 100644 index 0000000..6e0c2e3 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_trail_dark.mat @@ -0,0 +1,92 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_trail_dark + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - MOTIONVECTORS + - DepthOnly + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: 7a1a04494e05cdb4f856b52116d31f89, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 0 + - _CastShadows: 1 + - _Cull: 2 + - _Depth_Fade_Factor: 0.35 + - _Distort: 0 + - _DstBlend: 10 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &4616625464582046864 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_trail_dark.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_trail_dark.mat.meta new file mode 100644 index 0000000..8c2bb10 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_trail_dark.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 898173350ef87ea4daca0e61a2fa9226 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_trail_dark.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_windlines_4x1_green_add.mat b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_windlines_4x1_green_add.mat new file mode 100644 index 0000000..e533ad3 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_windlines_4x1_green_add.mat @@ -0,0 +1,93 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_windlines_4x1_green_add + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Color_Mask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 2800000, guid: 9726d8ba98c90a7499397b3da9f57820, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: db34dfb1b83f0454186237058dc8afb5, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 2 + - _CastShadows: 0 + - _Cull: 0 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 1 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: + - _Hue_shift: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_windlines_4x1_green_add.mat.meta b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_windlines_4x1_green_add.mat.meta new file mode 100644 index 0000000..6d1bc43 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/materials/zyn_mat_windlines_4x1_green_add.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: e81c21a8fe2641f4fbd8320111778c9d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/materials/zyn_mat_windlines_4x1_green_add.mat + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/models.meta b/Assets/06_Skills/VFX/Zyncope/models.meta new file mode 100644 index 0000000..54de444 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/models.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c6ecdddc12550f94aa090bc5802db6b0 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/Zyncope/models/zyn_msh_basiccylinder.fbx b/Assets/06_Skills/VFX/Zyncope/models/zyn_msh_basiccylinder.fbx new file mode 100644 index 0000000..e735d64 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/models/zyn_msh_basiccylinder.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66ebe78be1d52553fc90619206461e28dc935dad9a2c3bfe271eec26145b7d94 +size 13356 diff --git a/Assets/06_Skills/VFX/Zyncope/models/zyn_msh_basiccylinder.fbx.meta b/Assets/06_Skills/VFX/Zyncope/models/zyn_msh_basiccylinder.fbx.meta new file mode 100644 index 0000000..9a0e443 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/models/zyn_msh_basiccylinder.fbx.meta @@ -0,0 +1,114 @@ +fileFormatVersion: 2 +guid: 6f1950ed918fd0543b0b8b27f8dae957 +ModelImporter: + serializedVersion: 22200 + internalIDToNameTable: [] + externalObjects: {} + materials: + materialImportMode: 0 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 0 + motionNodeName: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 1 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importPhysicalCameras: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 0 + importLights: 0 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 1 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 0 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 0 + humanDescription: + serializedVersion: 3 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 0 + humanoidOversampling: 1 + avatarSetup: 0 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + importBlendShapeDeformPercent: 0 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/models/zyn_msh_basiccylinder.fbx + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/models/zyn_msh_conecylinder_01_verticalunwrap.fbx b/Assets/06_Skills/VFX/Zyncope/models/zyn_msh_conecylinder_01_verticalunwrap.fbx new file mode 100644 index 0000000..1f7637b --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/models/zyn_msh_conecylinder_01_verticalunwrap.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97993bf2080da1cd962eef8dd023c7e01001b032b61c0a328753db6a05f4c181 +size 17180 diff --git a/Assets/06_Skills/VFX/Zyncope/models/zyn_msh_conecylinder_01_verticalunwrap.fbx.meta b/Assets/06_Skills/VFX/Zyncope/models/zyn_msh_conecylinder_01_verticalunwrap.fbx.meta new file mode 100644 index 0000000..d3ac33f --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/models/zyn_msh_conecylinder_01_verticalunwrap.fbx.meta @@ -0,0 +1,114 @@ +fileFormatVersion: 2 +guid: 0ecca9dc6f64bb04f9893df70b545c7f +ModelImporter: + serializedVersion: 22200 + internalIDToNameTable: [] + externalObjects: {} + materials: + materialImportMode: 0 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 0 + motionNodeName: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 1 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importPhysicalCameras: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 0 + importLights: 0 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 1 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 0 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 0 + humanDescription: + serializedVersion: 3 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 0 + humanoidOversampling: 1 + avatarSetup: 0 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + importBlendShapeDeformPercent: 0 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/models/zyn_msh_conecylinder_01_verticalunwrap.fbx + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/models/zyn_msh_cylinder_01_verticalunwrap_topedgeblur.fbx b/Assets/06_Skills/VFX/Zyncope/models/zyn_msh_cylinder_01_verticalunwrap_topedgeblur.fbx new file mode 100644 index 0000000..c0123e5 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/models/zyn_msh_cylinder_01_verticalunwrap_topedgeblur.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9719d7ae10b0e19d28fb09ab37747a4749568f147d54d7a7958a9d981a2c1be +size 20284 diff --git a/Assets/06_Skills/VFX/Zyncope/models/zyn_msh_cylinder_01_verticalunwrap_topedgeblur.fbx.meta b/Assets/06_Skills/VFX/Zyncope/models/zyn_msh_cylinder_01_verticalunwrap_topedgeblur.fbx.meta new file mode 100644 index 0000000..d013108 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/models/zyn_msh_cylinder_01_verticalunwrap_topedgeblur.fbx.meta @@ -0,0 +1,114 @@ +fileFormatVersion: 2 +guid: 100a926c57e34ae4c90445f4144de9e5 +ModelImporter: + serializedVersion: 22200 + internalIDToNameTable: [] + externalObjects: {} + materials: + materialImportMode: 0 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 0 + motionNodeName: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 1 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importPhysicalCameras: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 0 + importLights: 0 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 1 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 0 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 0 + humanDescription: + serializedVersion: 3 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 0 + humanoidOversampling: 1 + avatarSetup: 0 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + importBlendShapeDeformPercent: 0 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/models/zyn_msh_cylinder_01_verticalunwrap_topedgeblur.fbx + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/models/zyn_msh_cylinderring_02_horizontalunwrap.fbx b/Assets/06_Skills/VFX/Zyncope/models/zyn_msh_cylinderring_02_horizontalunwrap.fbx new file mode 100644 index 0000000..e723118 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/models/zyn_msh_cylinderring_02_horizontalunwrap.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8bcc0add4919f14260417ef24418ea635fbe88202c04d56ddeb47f85bc071d1 +size 17788 diff --git a/Assets/06_Skills/VFX/Zyncope/models/zyn_msh_cylinderring_02_horizontalunwrap.fbx.meta b/Assets/06_Skills/VFX/Zyncope/models/zyn_msh_cylinderring_02_horizontalunwrap.fbx.meta new file mode 100644 index 0000000..7b27d09 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/models/zyn_msh_cylinderring_02_horizontalunwrap.fbx.meta @@ -0,0 +1,114 @@ +fileFormatVersion: 2 +guid: 838733dcce007da409f39a0f7274718f +ModelImporter: + serializedVersion: 22200 + internalIDToNameTable: [] + externalObjects: {} + materials: + materialImportMode: 0 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 0 + motionNodeName: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 1 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importPhysicalCameras: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 0 + importLights: 0 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 1 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 0 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 0 + humanDescription: + serializedVersion: 3 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 0 + humanoidOversampling: 1 + avatarSetup: 0 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + importBlendShapeDeformPercent: 0 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/models/zyn_msh_cylinderring_02_horizontalunwrap.fbx + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/models/zyn_msh_edgeblurcross_01.fbx b/Assets/06_Skills/VFX/Zyncope/models/zyn_msh_edgeblurcross_01.fbx new file mode 100644 index 0000000..22fe17f --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/models/zyn_msh_edgeblurcross_01.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed3faa4902088c99d425fc4a5056f7ebd54d7a426bba0d875ce18004888ae3fe +size 13916 diff --git a/Assets/06_Skills/VFX/Zyncope/models/zyn_msh_edgeblurcross_01.fbx.meta b/Assets/06_Skills/VFX/Zyncope/models/zyn_msh_edgeblurcross_01.fbx.meta new file mode 100644 index 0000000..a54bbbd --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/models/zyn_msh_edgeblurcross_01.fbx.meta @@ -0,0 +1,114 @@ +fileFormatVersion: 2 +guid: 79e5d0befa54a10479e374d2f1d99c76 +ModelImporter: + serializedVersion: 22200 + internalIDToNameTable: [] + externalObjects: {} + materials: + materialImportMode: 0 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 0 + motionNodeName: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 1 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importPhysicalCameras: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 0 + importLights: 0 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 1 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 0 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 0 + humanDescription: + serializedVersion: 3 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 0 + humanoidOversampling: 1 + avatarSetup: 0 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + importBlendShapeDeformPercent: 0 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/models/zyn_msh_edgeblurcross_01.fbx + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/models/zyn_msh_edgeblurplane_01.fbx b/Assets/06_Skills/VFX/Zyncope/models/zyn_msh_edgeblurplane_01.fbx new file mode 100644 index 0000000..46d88f1 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/models/zyn_msh_edgeblurplane_01.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c3eba5aff188d554bd6a6a9958ea7db3a056e0e20a7080747c82ed3b04f1035 +size 13164 diff --git a/Assets/06_Skills/VFX/Zyncope/models/zyn_msh_edgeblurplane_01.fbx.meta b/Assets/06_Skills/VFX/Zyncope/models/zyn_msh_edgeblurplane_01.fbx.meta new file mode 100644 index 0000000..20e88cd --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/models/zyn_msh_edgeblurplane_01.fbx.meta @@ -0,0 +1,114 @@ +fileFormatVersion: 2 +guid: c89f157edd830504982922357e3a0c46 +ModelImporter: + serializedVersion: 22200 + internalIDToNameTable: [] + externalObjects: {} + materials: + materialImportMode: 0 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 0 + motionNodeName: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 1 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importPhysicalCameras: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 0 + importLights: 0 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 1 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 0 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 0 + humanDescription: + serializedVersion: 3 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 0 + humanoidOversampling: 1 + avatarSetup: 0 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + importBlendShapeDeformPercent: 0 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/models/zyn_msh_edgeblurplane_01.fbx + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/models/zyn_msh_flatcircle_edgeblur_outwardpan.fbx b/Assets/06_Skills/VFX/Zyncope/models/zyn_msh_flatcircle_edgeblur_outwardpan.fbx new file mode 100644 index 0000000..c19e9dc --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/models/zyn_msh_flatcircle_edgeblur_outwardpan.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4c01a032772e0ff095248bc9ce065add6fe19da8e0dd15c4d560a8c226914b5 +size 28924 diff --git a/Assets/06_Skills/VFX/Zyncope/models/zyn_msh_flatcircle_edgeblur_outwardpan.fbx.meta b/Assets/06_Skills/VFX/Zyncope/models/zyn_msh_flatcircle_edgeblur_outwardpan.fbx.meta new file mode 100644 index 0000000..d3fe255 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/models/zyn_msh_flatcircle_edgeblur_outwardpan.fbx.meta @@ -0,0 +1,114 @@ +fileFormatVersion: 2 +guid: 219ea7d4c6e6e904794162d8f897be63 +ModelImporter: + serializedVersion: 22200 + internalIDToNameTable: [] + externalObjects: {} + materials: + materialImportMode: 0 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 0 + motionNodeName: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 1 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importPhysicalCameras: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 0 + importLights: 0 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 1 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 0 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 0 + humanDescription: + serializedVersion: 3 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 0 + humanoidOversampling: 1 + avatarSetup: 0 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + importBlendShapeDeformPercent: 0 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/models/zyn_msh_flatcircle_edgeblur_outwardpan.fbx + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/models/zyn_msh_panningtwirl_02_conicalskew.fbx b/Assets/06_Skills/VFX/Zyncope/models/zyn_msh_panningtwirl_02_conicalskew.fbx new file mode 100644 index 0000000..b7bd617 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/models/zyn_msh_panningtwirl_02_conicalskew.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed252a52a1d9d0b0e5b4ec9ae5e9e658ccf2e1d10bb928412f980f35a45d06e7 +size 15900 diff --git a/Assets/06_Skills/VFX/Zyncope/models/zyn_msh_panningtwirl_02_conicalskew.fbx.meta b/Assets/06_Skills/VFX/Zyncope/models/zyn_msh_panningtwirl_02_conicalskew.fbx.meta new file mode 100644 index 0000000..f1f8c22 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/models/zyn_msh_panningtwirl_02_conicalskew.fbx.meta @@ -0,0 +1,114 @@ +fileFormatVersion: 2 +guid: 4e471c2667b9bfe4b845611817428c80 +ModelImporter: + serializedVersion: 22200 + internalIDToNameTable: [] + externalObjects: {} + materials: + materialImportMode: 0 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 0 + motionNodeName: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 1 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importPhysicalCameras: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 0 + importLights: 0 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 1 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 0 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 0 + humanDescription: + serializedVersion: 3 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 0 + humanoidOversampling: 1 + avatarSetup: 0 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + importBlendShapeDeformPercent: 0 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/models/zyn_msh_panningtwirl_02_conicalskew.fbx + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/models/zyn_msh_semicircleflower_01_uncreased_horizontalunwrap.fbx b/Assets/06_Skills/VFX/Zyncope/models/zyn_msh_semicircleflower_01_uncreased_horizontalunwrap.fbx new file mode 100644 index 0000000..0aab345 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/models/zyn_msh_semicircleflower_01_uncreased_horizontalunwrap.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8ffcd7b468571a1dea1fd4587db72380e4e5bb22adc21fef8dd1cd16e6fe697 +size 48444 diff --git a/Assets/06_Skills/VFX/Zyncope/models/zyn_msh_semicircleflower_01_uncreased_horizontalunwrap.fbx.meta b/Assets/06_Skills/VFX/Zyncope/models/zyn_msh_semicircleflower_01_uncreased_horizontalunwrap.fbx.meta new file mode 100644 index 0000000..d6bd5d0 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/models/zyn_msh_semicircleflower_01_uncreased_horizontalunwrap.fbx.meta @@ -0,0 +1,114 @@ +fileFormatVersion: 2 +guid: 65541e0ceddc5924f8511b73a793df17 +ModelImporter: + serializedVersion: 22200 + internalIDToNameTable: [] + externalObjects: {} + materials: + materialImportMode: 0 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 0 + motionNodeName: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 1 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importPhysicalCameras: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 0 + importLights: 0 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 1 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 0 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 0 + humanDescription: + serializedVersion: 3 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 0 + humanoidOversampling: 1 + avatarSetup: 0 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + importBlendShapeDeformPercent: 0 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/models/zyn_msh_semicircleflower_01_uncreased_horizontalunwrap.fbx + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/prefabs.meta b/Assets/06_Skills/VFX/Zyncope/prefabs.meta new file mode 100644 index 0000000..6005e76 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/prefabs.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f92cd67d4b80e0749b6d24e9039a4041 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle.meta b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle.meta new file mode 100644 index 0000000..76ff998 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d694b0af3d1d2af4f8033d6193b441d6 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_arcane_instant.prefab b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_arcane_instant.prefab new file mode 100644 index 0000000..8d485c1 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_arcane_instant.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e7e8d996f9406a129b20da7f18b60c13550f601b0d9333f2cbc54b53765c4c3 +size 2504963 diff --git a/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_arcane_instant.prefab.meta b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_arcane_instant.prefab.meta new file mode 100644 index 0000000..98b0938 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_arcane_instant.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 503cfa0b73c6af340ac07870baf16b23 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_arcane_instant.prefab + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_arcane_loop.prefab b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_arcane_loop.prefab new file mode 100644 index 0000000..6616fb7 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_arcane_loop.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:063b93186293d676f2e938070dc02a1da5bbf9ff88df4e12f5597369c94463a3 +size 2738661 diff --git a/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_arcane_loop.prefab.meta b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_arcane_loop.prefab.meta new file mode 100644 index 0000000..336957e --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_arcane_loop.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 0f8382f01b785694295d438a54831e6f +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_arcane_loop.prefab + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_blood_instant.prefab b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_blood_instant.prefab new file mode 100644 index 0000000..5896e70 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_blood_instant.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b8bd4db783c8e59c43643ffffeda4290ce60cfa4978a475db2abc5af937a9b4 +size 1789115 diff --git a/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_blood_instant.prefab.meta b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_blood_instant.prefab.meta new file mode 100644 index 0000000..602c3d9 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_blood_instant.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 6ca5b4a56d92f7d44bac36e459d910ff +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_blood_instant.prefab + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_blood_loop.prefab b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_blood_loop.prefab new file mode 100644 index 0000000..31a3b32 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_blood_loop.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fbfb19229cb8348c07edeb1b54cb09f11302b144aa633ff6c80e89017f88371 +size 2142172 diff --git a/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_blood_loop.prefab.meta b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_blood_loop.prefab.meta new file mode 100644 index 0000000..084c636 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_blood_loop.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: d9d0bcd1d70410a42b2663805a8c3e50 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_blood_loop.prefab + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_dark_instant.prefab b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_dark_instant.prefab new file mode 100644 index 0000000..1ce7be1 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_dark_instant.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1c3e02afe0333c19d8b90cadbbc1bb4492496ae98a73abaedad5543ebe721a3 +size 1550058 diff --git a/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_dark_instant.prefab.meta b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_dark_instant.prefab.meta new file mode 100644 index 0000000..9b2d50b --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_dark_instant.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 55a1a258fed913e4eac805ae957eb262 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_dark_instant.prefab + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_dark_loop.prefab b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_dark_loop.prefab new file mode 100644 index 0000000..3f153cc --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_dark_loop.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1df3f4dda001cd078440f5f60719561224200add0cbed32840e5a3a0ca3b8517 +size 1907342 diff --git a/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_dark_loop.prefab.meta b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_dark_loop.prefab.meta new file mode 100644 index 0000000..8896bcd --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_dark_loop.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: f6d14c8cd08e80041aa4de3951ca6ca0 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_dark_loop.prefab + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_death_instant.prefab b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_death_instant.prefab new file mode 100644 index 0000000..b55b52b --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_death_instant.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:425d2803f2ac54c83cad71ba8c9a406926b1c7e4b755f4b6301fbac2f321b895 +size 1789806 diff --git a/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_death_instant.prefab.meta b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_death_instant.prefab.meta new file mode 100644 index 0000000..339d213 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_death_instant.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: de51b0f8e5634d64fad0d7057a093a28 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_death_instant.prefab + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_death_loop.prefab b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_death_loop.prefab new file mode 100644 index 0000000..467e0e9 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_death_loop.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af4b56de77a4a0ef9349c6b07dde35b45190277e3d545cf8632cb2773f3e2ab9 +size 2024202 diff --git a/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_death_loop.prefab.meta b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_death_loop.prefab.meta new file mode 100644 index 0000000..6d57a30 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_death_loop.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 16cb078949963734cad1e92e6322d40d +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_death_loop.prefab + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_earth_instant.prefab b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_earth_instant.prefab new file mode 100644 index 0000000..c528cd7 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_earth_instant.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a2f63c1509d7cb1130fdedf7635e23dba957f148c57fed10c3f55b7a8ca9cad +size 1909017 diff --git a/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_earth_instant.prefab.meta b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_earth_instant.prefab.meta new file mode 100644 index 0000000..d34ef32 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_earth_instant.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 27eba1ae5b19acf4d9b669948b5de430 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_earth_instant.prefab + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_earth_loop.prefab b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_earth_loop.prefab new file mode 100644 index 0000000..355b911 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_earth_loop.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e46ebc5e3f1b5843278314eff2ac6d30608e2bd6fd1ed2259f30853b880bb752 +size 2026951 diff --git a/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_earth_loop.prefab.meta b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_earth_loop.prefab.meta new file mode 100644 index 0000000..e8fe4cc --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_earth_loop.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 2e0d638dc5274df41a9cf9cf97ac385b +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_earth_loop.prefab + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_flame_instant.prefab b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_flame_instant.prefab new file mode 100644 index 0000000..8b39905 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_flame_instant.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd5b414e113ccc85473ae5675b21c5b835344efcb528c3b7db4354476365e544 +size 1789770 diff --git a/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_flame_instant.prefab.meta b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_flame_instant.prefab.meta new file mode 100644 index 0000000..ccaeb73 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_flame_instant.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 8ded216169f9d0c4cb1d8d4798b398c0 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_flame_instant.prefab + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_flame_loop.prefab b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_flame_loop.prefab new file mode 100644 index 0000000..ce6dfb5 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_flame_loop.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2521449a81d2eeb357cd992cf5f86d1115bc59984fe7bd5c022d3af099dd3d71 +size 2022835 diff --git a/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_flame_loop.prefab.meta b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_flame_loop.prefab.meta new file mode 100644 index 0000000..5ea3d00 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_flame_loop.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 717864bc69ef62a449c08804b3080c5d +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_flame_loop.prefab + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_ice_instant.prefab b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_ice_instant.prefab new file mode 100644 index 0000000..af4ddb5 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_ice_instant.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12d4ccd587a286d356d9d1c2d2a9750d34eb067d7865b85d09ac3fca31e8b2e2 +size 1669236 diff --git a/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_ice_instant.prefab.meta b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_ice_instant.prefab.meta new file mode 100644 index 0000000..07c9ba8 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_ice_instant.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 4586e546b8e072749bee5047edfef2bc +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_ice_instant.prefab + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_ice_loop.prefab b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_ice_loop.prefab new file mode 100644 index 0000000..35d15f8 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_ice_loop.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba98fa6d9ce29beb7ec8335019a9444388657cbdd3d190d149dbfd2adaa6a0c9 +size 1789324 diff --git a/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_ice_loop.prefab.meta b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_ice_loop.prefab.meta new file mode 100644 index 0000000..60f643b --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_ice_loop.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: f7e03c1145234d449998d56b6308e7bd +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_ice_loop.prefab + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_life_instant.prefab b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_life_instant.prefab new file mode 100644 index 0000000..bfe9822 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_life_instant.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09b6146e65a22375350532be677bd2e980e861c3f444a34860b44dfeebc51b0d +size 1669107 diff --git a/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_life_instant.prefab.meta b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_life_instant.prefab.meta new file mode 100644 index 0000000..8146dc7 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_life_instant.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 48129010dc855f249b52f9a1b884a1f6 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_life_instant.prefab + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_life_loop.prefab b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_life_loop.prefab new file mode 100644 index 0000000..ade5b07 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_life_loop.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3ebcac7d7e57aeeefe0b482aa175c4f323065b3bdeb995015c391757496d2ea +size 1904655 diff --git a/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_life_loop.prefab.meta b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_life_loop.prefab.meta new file mode 100644 index 0000000..3e936a0 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_life_loop.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: cf1dd8ad1eaad17459bd73e90cfae4bc +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_life_loop.prefab + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_light_instant.prefab b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_light_instant.prefab new file mode 100644 index 0000000..da747a2 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_light_instant.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ce597d22d456bc8942a6da9d27e898d0787f3518826c6e4b3a1fef7c21be2fd +size 1788425 diff --git a/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_light_instant.prefab.meta b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_light_instant.prefab.meta new file mode 100644 index 0000000..f793e53 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_light_instant.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 5a9b50998dbc65d4eb2b88bfb0c45ed0 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_light_instant.prefab + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_light_loop.prefab b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_light_loop.prefab new file mode 100644 index 0000000..a5d9aed --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_light_loop.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc425fb50685556868ebd43979b006cfcd345c2e497731b9e1830e952fb2598d +size 2023898 diff --git a/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_light_loop.prefab.meta b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_light_loop.prefab.meta new file mode 100644 index 0000000..31d9f0e --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_light_loop.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 223d1d65b02e8a54aacc0e18d0f23b8d +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_light_loop.prefab + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_lightning_instant.prefab b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_lightning_instant.prefab new file mode 100644 index 0000000..f2023cb --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_lightning_instant.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e0148bd8b96a6019f63e7ef404ef014eb48cb41ee32b99dd908e59fb5e8ec31 +size 1789428 diff --git a/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_lightning_instant.prefab.meta b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_lightning_instant.prefab.meta new file mode 100644 index 0000000..49b1ef4 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_lightning_instant.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: b2ce93c792e009e439c7ddae56cc90f3 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_lightning_instant.prefab + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_lightning_loop.prefab b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_lightning_loop.prefab new file mode 100644 index 0000000..30d3f7a --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_lightning_loop.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8908da19fb3c50f875e2ba4469a9935576b4dd7893e3fb52a024046d1565401f +size 2021042 diff --git a/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_lightning_loop.prefab.meta b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_lightning_loop.prefab.meta new file mode 100644 index 0000000..4ff3a97 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_lightning_loop.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: e4cd651c8fbeddd45bc3a062434bf79d +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_lightning_loop.prefab + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_music_instant.prefab b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_music_instant.prefab new file mode 100644 index 0000000..20bd5fe --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_music_instant.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d747af122425006208f54fbe51b88af63dcfa7f67764a0d973693dffbda22a60 +size 1550188 diff --git a/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_music_instant.prefab.meta b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_music_instant.prefab.meta new file mode 100644 index 0000000..feebbcd --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_music_instant.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 8bbf571aae804b146995e5ea73ce45ab +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_music_instant.prefab + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_music_loop.prefab b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_music_loop.prefab new file mode 100644 index 0000000..0d94164 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_music_loop.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d85099ad03a909312e2991632bb94d71d0a1ae253c7124113515d54b1617050f +size 1783501 diff --git a/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_music_loop.prefab.meta b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_music_loop.prefab.meta new file mode 100644 index 0000000..ac805ca --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_music_loop.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: ef8eeceb137f9d440855638b33e383e2 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_music_loop.prefab + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_poison_instant.prefab b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_poison_instant.prefab new file mode 100644 index 0000000..927ee01 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_poison_instant.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:472e5ae386ece29b6a3ce842727650e33db455afb1f63b5fc99181ce21c61816 +size 1670318 diff --git a/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_poison_instant.prefab.meta b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_poison_instant.prefab.meta new file mode 100644 index 0000000..9d0376c --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_poison_instant.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: b543c3d1377fb2c4da64887ec4bf43cc +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_poison_instant.prefab + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_poison_loop.prefab b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_poison_loop.prefab new file mode 100644 index 0000000..bcfe4bb --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_poison_loop.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7b32b77bbcfa7834af5b302aaa1cea04c8adbebb412d331f2166981a2d7f24b +size 1786395 diff --git a/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_poison_loop.prefab.meta b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_poison_loop.prefab.meta new file mode 100644 index 0000000..d020f49 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_poison_loop.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: dfdcc2add3a515545a2713a98f9d70ff +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_poison_loop.prefab + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_rose_instant.prefab b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_rose_instant.prefab new file mode 100644 index 0000000..7a29cd2 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_rose_instant.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f762fc4e0c8550ac679ec341e4b3b8557c9c78a61aab92141d297366074b37ac +size 1669439 diff --git a/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_rose_instant.prefab.meta b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_rose_instant.prefab.meta new file mode 100644 index 0000000..e013df1 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_rose_instant.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: cfed27f65dbe82444bc3c752361c28c8 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_rose_instant.prefab + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_rose_loop.prefab b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_rose_loop.prefab new file mode 100644 index 0000000..512e45d --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_rose_loop.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79a52254a8cf10b6c063d93b80dfe6f9f4e27c533f08711e6d268558a41cb008 +size 1904477 diff --git a/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_rose_loop.prefab.meta b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_rose_loop.prefab.meta new file mode 100644 index 0000000..b8cb1ca --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_rose_loop.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 6bb2ae981611fc249960bdbc7320533e +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_rose_loop.prefab + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_water_instant.prefab b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_water_instant.prefab new file mode 100644 index 0000000..f66b3b1 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_water_instant.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33b179e65d365c5722077a76d92d1970e33ec1f7969ed622294878a26810afea +size 1909748 diff --git a/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_water_instant.prefab.meta b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_water_instant.prefab.meta new file mode 100644 index 0000000..1d8787f --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_water_instant.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 63f90cec37641df4db4f02aed71b1a48 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_water_instant.prefab + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_water_loop.prefab b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_water_loop.prefab new file mode 100644 index 0000000..f3cf170 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_water_loop.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d37929964568edf3ccc8b0315c8ede77fafdc7c598bc0b139f60d72417eeadd9 +size 2025814 diff --git a/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_water_loop.prefab.meta b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_water_loop.prefab.meta new file mode 100644 index 0000000..e60a6e1 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_water_loop.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 365921aa15e16814da0d09df9306a0f5 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_water_loop.prefab + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_wind_instant.prefab b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_wind_instant.prefab new file mode 100644 index 0000000..3aae723 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_wind_instant.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ec92b84c78abf3c3895375c3f92f0de545a39dd2cb6e39dcbc68ed716c29256 +size 1669880 diff --git a/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_wind_instant.prefab.meta b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_wind_instant.prefab.meta new file mode 100644 index 0000000..6c52405 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_wind_instant.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: b1f079093b1211e4180a2fb0ab6b2404 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_wind_instant.prefab + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_wind_loop.prefab b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_wind_loop.prefab new file mode 100644 index 0000000..c9bef21 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_wind_loop.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfa11c5cd2b187b7169fde387549f2f962bbc85d45ed261445e8051ffe93c4c2 +size 1903532 diff --git a/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_wind_loop.prefab.meta b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_wind_loop.prefab.meta new file mode 100644 index 0000000..f49ad13 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_wind_loop.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 30b33f034b824f1438482261d8cedf49 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/prefabs/magic circle/zyn_pfab_magiccircle_wind_loop.prefab + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/scripts.meta b/Assets/06_Skills/VFX/Zyncope/scripts.meta new file mode 100644 index 0000000..0ed78f7 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/scripts.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: df088627f4bb69b4a98692aed57b6521 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/Zyncope/scripts/MagicCircleManager.cs b/Assets/06_Skills/VFX/Zyncope/scripts/MagicCircleManager.cs new file mode 100644 index 0000000..f6f1be4 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/scripts/MagicCircleManager.cs @@ -0,0 +1,90 @@ +using UnityEngine; +using System.Collections.Generic; + +namespace ZyncopeVFXMagicCircleManager +{ + public class MagicCircleManager : MonoBehaviour + { + [HideInInspector] public Transform vfxDisplayLoc1, vfxDisplayLoc2; + + [HideInInspector] public List magicCircleInstant = new List(); + [HideInInspector] public List magicCircleLooping = new List(); + + List sceneMagicCircleInstant = new List(); + List sceneMagicCircleLooping = new List(); + int currentVFX = 0; + //[HideInInspector] public Text currentVFXName; + public bool autoplayVFX; + float repeatVal = 7; + + + + void Start() + { + for (int x = 0; x < magicCircleInstant.Count; x++) + { + GameObject vfxObject1 = Instantiate(magicCircleInstant[x], vfxDisplayLoc1); + vfxObject1.SetActive(false); + sceneMagicCircleInstant.Add(vfxObject1); + + + GameObject vfxObject2 = Instantiate(magicCircleLooping[x], vfxDisplayLoc2); + vfxObject2.SetActive(false); + sceneMagicCircleLooping.Add(vfxObject2); + } + DisplayCurrentVFXName(); + PlayVFXAgain(); + if (autoplayVFX) + { + InvokeRepeating("NextVFX", repeatVal, repeatVal); + } + } + + public void NextVFX() + { + HideVFX(); + currentVFX += 1; + if (currentVFX >= magicCircleInstant.Count) + currentVFX = 0; + DisplayVFX(); + DisplayCurrentVFXName(); + } + + public void PreviousVFX() + { + HideVFX(); + currentVFX -= 1; + if (currentVFX < 0) + currentVFX = magicCircleInstant.Count - 1; + DisplayVFX(); + DisplayCurrentVFXName(); + } + + public void PlayVFXAgain() + { + HideVFX(); + DisplayVFX(); + } + + void HideVFX() + { + sceneMagicCircleInstant[currentVFX].SetActive(false); + sceneMagicCircleLooping[currentVFX].SetActive(false); + } + + void DisplayVFX() + { + sceneMagicCircleInstant[currentVFX].SetActive(true); + sceneMagicCircleLooping[currentVFX].SetActive(true); + } + + void DisplayCurrentVFXName() + { + string[] displayNameSplit = sceneMagicCircleInstant[currentVFX].name.Split("_"); + string removeUnused = displayNameSplit[3].Replace("(Clone)", ""); + string capitalizedString = char.ToUpper(removeUnused[0]) + removeUnused.Substring(1) + " Magic Circle"; + string displayVFXName = capitalizedString; + //currentVFXName.text = displayVFXName; + } + } +} \ No newline at end of file diff --git a/Assets/06_Skills/VFX/Zyncope/scripts/MagicCircleManager.cs.meta b/Assets/06_Skills/VFX/Zyncope/scripts/MagicCircleManager.cs.meta new file mode 100644 index 0000000..a970122 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/scripts/MagicCircleManager.cs.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 26e1155ea8156844aa2827d7643bfb8f +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/scripts/MagicCircleManager.cs + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/settings.meta b/Assets/06_Skills/VFX/Zyncope/settings.meta new file mode 100644 index 0000000..6acfa12 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/settings.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f0851a68a991cb2459630c6bfac958b4 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/Zyncope/settings/combat attack volume.asset b/Assets/06_Skills/VFX/Zyncope/settings/combat attack volume.asset new file mode 100644 index 0000000..bf0ddca --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/settings/combat attack volume.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1552b1b0919162b6509ee29b823e77c056b9205c77eb7371482d7d3a35a1028 +size 3602 diff --git a/Assets/06_Skills/VFX/Zyncope/settings/combat attack volume.asset.meta b/Assets/06_Skills/VFX/Zyncope/settings/combat attack volume.asset.meta new file mode 100644 index 0000000..03ed72d --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/settings/combat attack volume.asset.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 4c96d0efe180c8f49841b1e45984b08c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/settings/combat attack volume.asset + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/shaders.meta b/Assets/06_Skills/VFX/Zyncope/shaders.meta new file mode 100644 index 0000000..40db7af --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/shaders.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 112f66584926eb946b0e43643ad746a4 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/Zyncope/shaders/zyn_shd_multifeature_00.shadergraph b/Assets/06_Skills/VFX/Zyncope/shaders/zyn_shd_multifeature_00.shadergraph new file mode 100644 index 0000000..1e390e6 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/shaders/zyn_shd_multifeature_00.shadergraph @@ -0,0 +1,10281 @@ +{ + "m_SGVersion": 3, + "m_Type": "UnityEditor.ShaderGraph.GraphData", + "m_ObjectId": "289f4a8be0b143dbbb39da4cb16966fb", + "m_Properties": [ + { + "m_Id": "2041ecf722ef46bf93b0a76d1e92fc3d" + }, + { + "m_Id": "d0908263538e4ee58511deaf422d16bf" + }, + { + "m_Id": "057a7cb05ae04199b5d5114b47e49d79" + }, + { + "m_Id": "b93d7390090b48ba970d4452b44cd51c" + }, + { + "m_Id": "197be477a3ab48e998f72b7d0093372b" + }, + { + "m_Id": "bbbeff3f1cd3452f9ad4fb3396380303" + }, + { + "m_Id": "43c8389c4388402c872cf9b3d740c71e" + }, + { + "m_Id": "db3b043c8f6f4ab8b4d8966b0077a838" + } + ], + "m_Keywords": [], + "m_Dropdowns": [], + "m_CategoryData": [ + { + "m_Id": "a15446fabee14b1297b0b129e07fcf24" + }, + { + "m_Id": "c30fe9a08c68416c9496a4c18ba55f74" + }, + { + "m_Id": "7b9541aba18142c4968036348659ea8a" + }, + { + "m_Id": "ead4c164db924a9aa9c9db0c8758e111" + }, + { + "m_Id": "11ac61560dc84cd4bb9f83d0cb52128e" + }, + { + "m_Id": "8de3f0d4b7ce49269678e05a868bbc4c" + } + ], + "m_Nodes": [ + { + "m_Id": "b099b68e805a43c282ee5af20fe9f912" + }, + { + "m_Id": "4d69e6e92514440c9a7c8f346a7bf8b7" + }, + { + "m_Id": "9bc00d59467142fbb0276dce0e950add" + }, + { + "m_Id": "d7e4288ff2704f36ae6e0eea3d703831" + }, + { + "m_Id": "b3e5f3e650b74a7ebeda9f74fded1b47" + }, + { + "m_Id": "88edf1e1762f4685b6a05e3c49b4a79b" + }, + { + "m_Id": "91eb236b08d74d45afd474257513386c" + }, + { + "m_Id": "e798aa3c9b40492d9adafac0357bc1ba" + }, + { + "m_Id": "3b7618a9a80f44f8937bf30595ad7e38" + }, + { + "m_Id": "7cd42a43447847d0b7e8ee5e4c015ece" + }, + { + "m_Id": "df5729978b97406b9b66908b4307adb7" + }, + { + "m_Id": "68d98cdeee9d4e3aaab24fa1a3cf5d25" + }, + { + "m_Id": "853042d666004c099fb969b9a5d646fd" + }, + { + "m_Id": "6a09d55e29c94fef8172d229eb37fff4" + }, + { + "m_Id": "c56d660d8d604b0095df913163d05636" + }, + { + "m_Id": "fb880b7ebc034f63962aa5acca39b31c" + }, + { + "m_Id": "6389079ca7fe439ba03bdd90122bb70e" + }, + { + "m_Id": "fd0f359a0f2d4ce392723ec33f4170a3" + }, + { + "m_Id": "e8a840319f5b41cdaa707f822ca3ae11" + }, + { + "m_Id": "b444b317981f46f1958301bf94b38de1" + }, + { + "m_Id": "08b1d8ed4744476d9ec27d4bfc042afe" + }, + { + "m_Id": "da8d7a9358f44c8a80013467490deb26" + }, + { + "m_Id": "755ae0396640490095bbe69901c64485" + }, + { + "m_Id": "e36a738a2910476d86e658acedbafd6c" + }, + { + "m_Id": "66fb86a088584979815762970a1803f5" + }, + { + "m_Id": "09fb4be9ffbf4d1a837e111a26a36d03" + }, + { + "m_Id": "d91e1a6788134a0db18458e2c9ffe1e2" + }, + { + "m_Id": "b99c1e3fd7b14962b22510ab822596fa" + }, + { + "m_Id": "8d3c85ef31db418187bf82aa0d05c018" + }, + { + "m_Id": "cbf4b7140c8747fba9e28c881275612c" + }, + { + "m_Id": "c8c254b7170c483f9436f2a186f2f25f" + }, + { + "m_Id": "205f8ae6662b43bd8bc6a9b7fe1df0bc" + }, + { + "m_Id": "6ebe6dd7c053473a86cc78d4af3b5456" + }, + { + "m_Id": "89c4abebb8194b988799339162560ac4" + }, + { + "m_Id": "34122799a8de408ab780fb9e5fa36601" + }, + { + "m_Id": "3bbc083856474e99bbfef605a626cedd" + }, + { + "m_Id": "32583f2525b14d90927281637ad7b962" + }, + { + "m_Id": "78804880cedc47fdbd69823b872b9e1d" + }, + { + "m_Id": "585281afb21148e8850339e89a273dd4" + }, + { + "m_Id": "f3a28f88cdd94ca8a3eee9d9c1f72ada" + }, + { + "m_Id": "f6f0ef0058fb4c49b781ba8655db5da5" + }, + { + "m_Id": "acbcfe1a53394a188eb16f2205ba5fae" + }, + { + "m_Id": "8103313577b847c28c6f3a0383795ae0" + }, + { + "m_Id": "d6542178491a4e799a39d1963f6e9d3f" + }, + { + "m_Id": "6877f251de2046bbaa2b206f8bc64b33" + }, + { + "m_Id": "ae2c4546134e4beeb5b74f0bff8400bb" + }, + { + "m_Id": "f27b0d53faa248debb4efc7ae53b003b" + }, + { + "m_Id": "11a991aacc0540b1a76963cd610bd217" + }, + { + "m_Id": "31e3651567b147e2884a11152d78a8bb" + }, + { + "m_Id": "628a67c2b76b4664b9e4696b3605c099" + }, + { + "m_Id": "a348c6c97d5c4d78b24e4f375c3dd2a7" + }, + { + "m_Id": "a1a0323848bb4e62acb8d111c3c22a73" + }, + { + "m_Id": "a85d0177ea0341d9a0a80ed35edb2c8a" + }, + { + "m_Id": "aada7780282e4134a7e2afb70cfa06d5" + }, + { + "m_Id": "9945f3b0e3d44a09928d1fafad5fd566" + }, + { + "m_Id": "40e6ccbc222c4f88b7e037fa6b200b83" + }, + { + "m_Id": "82adc655bbce4fbdbedd660755822708" + }, + { + "m_Id": "d2d103e49eac44d0b1584b206c0dc171" + }, + { + "m_Id": "209c40916111453eb1e0c580e4a9f27b" + }, + { + "m_Id": "a3bebb9cbf564bc49c85414f4893d4c1" + }, + { + "m_Id": "074f843d89ea44908b33d5cc2d28b7b8" + }, + { + "m_Id": "314475fc06764cd696bcb0f051af688d" + }, + { + "m_Id": "604dcecc3b8749e3a7a70bd8524db3c7" + }, + { + "m_Id": "013a78afb6074711a80a448e3642e406" + }, + { + "m_Id": "fd6dac2eb5684f44b017c1784bea81d7" + }, + { + "m_Id": "8a8370844fe34de7ad6269dae77ba12a" + }, + { + "m_Id": "013c8550ee754fcab89ba2a9e3ca7117" + }, + { + "m_Id": "dd61a7836c0d4dd0af69acff06b02195" + }, + { + "m_Id": "22e830f19205444ba2e6ea8e08a7d384" + }, + { + "m_Id": "79d07365e21043b38f724b8b8ef99abf" + }, + { + "m_Id": "5ddbe47697014ff59e00b3c4ef78d7b5" + }, + { + "m_Id": "7f80dbb3032c4f36ac91baa7e451d30a" + }, + { + "m_Id": "c4ba89b9c9ee4847adec7a8a5563251e" + }, + { + "m_Id": "5b1dfc466540458f9ef8535ef4b2a221" + }, + { + "m_Id": "d2412a890bef4daf877bc52848883f38" + }, + { + "m_Id": "a3558c8f5efb4581b510c889004960f7" + }, + { + "m_Id": "6b3b4c3d71ac403991dfa8448caf465d" + }, + { + "m_Id": "a95d9958091645788f9a16dc5d9309c9" + } + ], + "m_GroupDatas": [ + { + "m_Id": "fb566f5c17d447c3bcc0cc79e6a2bd8d" + }, + { + "m_Id": "7d4a4c94e2ea4400ac58a7a7aa061684" + }, + { + "m_Id": "9f756c89adba412eb77f6c89e3c79ba1" + }, + { + "m_Id": "2f53ced29e0c456fa362c73e85febf7d" + }, + { + "m_Id": "241d2d9f0799457982e049afee554b6d" + }, + { + "m_Id": "fb2955a6ed15464a96cffedc4c92d562" + }, + { + "m_Id": "abf2a667c6764cd6962500927295a09e" + }, + { + "m_Id": "2d6bcdedabd24c4abc3ee860735c5a1c" + } + ], + "m_StickyNoteDatas": [ + { + "m_Id": "de2f4eabd7e44fd9a077fe3d75020dde" + } + ], + "m_Edges": [ + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "013a78afb6074711a80a448e3642e406" + }, + "m_SlotId": 5 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "a3bebb9cbf564bc49c85414f4893d4c1" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "013c8550ee754fcab89ba2a9e3ca7117" + }, + "m_SlotId": 1 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "5ddbe47697014ff59e00b3c4ef78d7b5" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "074f843d89ea44908b33d5cc2d28b7b8" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "209c40916111453eb1e0c580e4a9f27b" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "08b1d8ed4744476d9ec27d4bfc042afe" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "b444b317981f46f1958301bf94b38de1" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "09fb4be9ffbf4d1a837e111a26a36d03" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "585281afb21148e8850339e89a273dd4" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "11a991aacc0540b1a76963cd610bd217" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "a348c6c97d5c4d78b24e4f375c3dd2a7" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "205f8ae6662b43bd8bc6a9b7fe1df0bc" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "89c4abebb8194b988799339162560ac4" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "209c40916111453eb1e0c580e4a9f27b" + }, + "m_SlotId": 1 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "acbcfe1a53394a188eb16f2205ba5fae" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "22e830f19205444ba2e6ea8e08a7d384" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "dd61a7836c0d4dd0af69acff06b02195" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "314475fc06764cd696bcb0f051af688d" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "7f80dbb3032c4f36ac91baa7e451d30a" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "314475fc06764cd696bcb0f051af688d" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "a3bebb9cbf564bc49c85414f4893d4c1" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "31e3651567b147e2884a11152d78a8bb" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "628a67c2b76b4664b9e4696b3605c099" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "32583f2525b14d90927281637ad7b962" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "89c4abebb8194b988799339162560ac4" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "34122799a8de408ab780fb9e5fa36601" + }, + "m_SlotId": 1 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "a3558c8f5efb4581b510c889004960f7" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "3b7618a9a80f44f8937bf30595ad7e38" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "e798aa3c9b40492d9adafac0357bc1ba" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "3bbc083856474e99bbfef605a626cedd" + }, + "m_SlotId": 1 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "6b3b4c3d71ac403991dfa8448caf465d" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "3bbc083856474e99bbfef605a626cedd" + }, + "m_SlotId": 1 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "fd0f359a0f2d4ce392723ec33f4170a3" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "40e6ccbc222c4f88b7e037fa6b200b83" + }, + "m_SlotId": 1 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "d6542178491a4e799a39d1963f6e9d3f" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "585281afb21148e8850339e89a273dd4" + }, + "m_SlotId": 3 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f3a28f88cdd94ca8a3eee9d9c1f72ada" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "5b1dfc466540458f9ef8535ef4b2a221" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "d2412a890bef4daf877bc52848883f38" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "5ddbe47697014ff59e00b3c4ef78d7b5" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "013a78afb6074711a80a448e3642e406" + }, + "m_SlotId": 4 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "604dcecc3b8749e3a7a70bd8524db3c7" + }, + "m_SlotId": 4 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "013a78afb6074711a80a448e3642e406" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "628a67c2b76b4664b9e4696b3605c099" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "d6542178491a4e799a39d1963f6e9d3f" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "6389079ca7fe439ba03bdd90122bb70e" + }, + "m_SlotId": 1 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "e36a738a2910476d86e658acedbafd6c" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "66fb86a088584979815762970a1803f5" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "da8d7a9358f44c8a80013467490deb26" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "6877f251de2046bbaa2b206f8bc64b33" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "ae2c4546134e4beeb5b74f0bff8400bb" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "68d98cdeee9d4e3aaab24fa1a3cf5d25" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "6a09d55e29c94fef8172d229eb37fff4" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "6a09d55e29c94fef8172d229eb37fff4" + }, + "m_SlotId": 1 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "c56d660d8d604b0095df913163d05636" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "6a09d55e29c94fef8172d229eb37fff4" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "c56d660d8d604b0095df913163d05636" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "6a09d55e29c94fef8172d229eb37fff4" + }, + "m_SlotId": 3 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "c56d660d8d604b0095df913163d05636" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "6a09d55e29c94fef8172d229eb37fff4" + }, + "m_SlotId": 4 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "6389079ca7fe439ba03bdd90122bb70e" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "6b3b4c3d71ac403991dfa8448caf465d" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "acbcfe1a53394a188eb16f2205ba5fae" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "6ebe6dd7c053473a86cc78d4af3b5456" + }, + "m_SlotId": 4 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "205f8ae6662b43bd8bc6a9b7fe1df0bc" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "755ae0396640490095bbe69901c64485" + }, + "m_SlotId": 4 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "da8d7a9358f44c8a80013467490deb26" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "78804880cedc47fdbd69823b872b9e1d" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "585281afb21148e8850339e89a273dd4" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "79d07365e21043b38f724b8b8ef99abf" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "013a78afb6074711a80a448e3642e406" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "7cd42a43447847d0b7e8ee5e4c015ece" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "68d98cdeee9d4e3aaab24fa1a3cf5d25" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "7f80dbb3032c4f36ac91baa7e451d30a" + }, + "m_SlotId": 1 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "074f843d89ea44908b33d5cc2d28b7b8" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "8103313577b847c28c6f3a0383795ae0" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "40e6ccbc222c4f88b7e037fa6b200b83" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "82adc655bbce4fbdbedd660755822708" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "d2d103e49eac44d0b1584b206c0dc171" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "853042d666004c099fb969b9a5d646fd" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "91eb236b08d74d45afd474257513386c" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "88edf1e1762f4685b6a05e3c49b4a79b" + }, + "m_SlotId": 3 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "3b7618a9a80f44f8937bf30595ad7e38" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "88edf1e1762f4685b6a05e3c49b4a79b" + }, + "m_SlotId": 4 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "3b7618a9a80f44f8937bf30595ad7e38" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "89c4abebb8194b988799339162560ac4" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "34122799a8de408ab780fb9e5fa36601" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "8a8370844fe34de7ad6269dae77ba12a" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "013c8550ee754fcab89ba2a9e3ca7117" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "8d3c85ef31db418187bf82aa0d05c018" + }, + "m_SlotId": 3 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "09fb4be9ffbf4d1a837e111a26a36d03" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "91eb236b08d74d45afd474257513386c" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "68d98cdeee9d4e3aaab24fa1a3cf5d25" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9945f3b0e3d44a09928d1fafad5fd566" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "a1a0323848bb4e62acb8d111c3c22a73" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "a1a0323848bb4e62acb8d111c3c22a73" + }, + "m_SlotId": 3 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "aada7780282e4134a7e2afb70cfa06d5" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "a348c6c97d5c4d78b24e4f375c3dd2a7" + }, + "m_SlotId": 1 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "a1a0323848bb4e62acb8d111c3c22a73" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "a3558c8f5efb4581b510c889004960f7" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "d7e4288ff2704f36ae6e0eea3d703831" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "a3bebb9cbf564bc49c85414f4893d4c1" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "074f843d89ea44908b33d5cc2d28b7b8" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "a85d0177ea0341d9a0a80ed35edb2c8a" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "a1a0323848bb4e62acb8d111c3c22a73" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "a95d9958091645788f9a16dc5d9309c9" + }, + "m_SlotId": 1 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "df5729978b97406b9b66908b4307adb7" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "aada7780282e4134a7e2afb70cfa06d5" + }, + "m_SlotId": 1 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "b099b68e805a43c282ee5af20fe9f912" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "acbcfe1a53394a188eb16f2205ba5fae" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f6f0ef0058fb4c49b781ba8655db5da5" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "ae2c4546134e4beeb5b74f0bff8400bb" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "11a991aacc0540b1a76963cd610bd217" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "b3e5f3e650b74a7ebeda9f74fded1b47" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "88edf1e1762f4685b6a05e3c49b4a79b" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "b444b317981f46f1958301bf94b38de1" + }, + "m_SlotId": 1 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "66fb86a088584979815762970a1803f5" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "b444b317981f46f1958301bf94b38de1" + }, + "m_SlotId": 1 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "da8d7a9358f44c8a80013467490deb26" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "b444b317981f46f1958301bf94b38de1" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "66fb86a088584979815762970a1803f5" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "b99c1e3fd7b14962b22510ab822596fa" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "d91e1a6788134a0db18458e2c9ffe1e2" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "c4ba89b9c9ee4847adec7a8a5563251e" + }, + "m_SlotId": 1 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "755ae0396640490095bbe69901c64485" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "c56d660d8d604b0095df913163d05636" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "3bbc083856474e99bbfef605a626cedd" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "c8c254b7170c483f9436f2a186f2f25f" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "6ebe6dd7c053473a86cc78d4af3b5456" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "cbf4b7140c8747fba9e28c881275612c" + }, + "m_SlotId": 1 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "205f8ae6662b43bd8bc6a9b7fe1df0bc" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "d2412a890bef4daf877bc52848883f38" + }, + "m_SlotId": 4 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "628a67c2b76b4664b9e4696b3605c099" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "d2d103e49eac44d0b1584b206c0dc171" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "604dcecc3b8749e3a7a70bd8524db3c7" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "d6542178491a4e799a39d1963f6e9d3f" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "ae2c4546134e4beeb5b74f0bff8400bb" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "d91e1a6788134a0db18458e2c9ffe1e2" + }, + "m_SlotId": 3 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "8d3c85ef31db418187bf82aa0d05c018" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "da8d7a9358f44c8a80013467490deb26" + }, + "m_SlotId": 3 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "e36a738a2910476d86e658acedbafd6c" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "dd61a7836c0d4dd0af69acff06b02195" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "79d07365e21043b38f724b8b8ef99abf" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "e36a738a2910476d86e658acedbafd6c" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "a95d9958091645788f9a16dc5d9309c9" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "e798aa3c9b40492d9adafac0357bc1ba" + }, + "m_SlotId": 3 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "91eb236b08d74d45afd474257513386c" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "e798aa3c9b40492d9adafac0357bc1ba" + }, + "m_SlotId": 3 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "c4ba89b9c9ee4847adec7a8a5563251e" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "e8a840319f5b41cdaa707f822ca3ae11" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "755ae0396640490095bbe69901c64485" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "f27b0d53faa248debb4efc7ae53b003b" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "11a991aacc0540b1a76963cd610bd217" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "f3a28f88cdd94ca8a3eee9d9c1f72ada" + }, + "m_SlotId": 1 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "a3558c8f5efb4581b510c889004960f7" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "f6f0ef0058fb4c49b781ba8655db5da5" + }, + "m_SlotId": 1 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "585281afb21148e8850339e89a273dd4" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "fd0f359a0f2d4ce392723ec33f4170a3" + }, + "m_SlotId": 1 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "09fb4be9ffbf4d1a837e111a26a36d03" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "fd6dac2eb5684f44b017c1784bea81d7" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "013a78afb6074711a80a448e3642e406" + }, + "m_SlotId": 0 + } + } + ], + "m_VertexContext": { + "m_Position": { + "x": 718.0, + "y": -80.00000762939453 + }, + "m_Blocks": [ + { + "m_Id": "b099b68e805a43c282ee5af20fe9f912" + }, + { + "m_Id": "4d69e6e92514440c9a7c8f346a7bf8b7" + }, + { + "m_Id": "9bc00d59467142fbb0276dce0e950add" + } + ] + }, + "m_FragmentContext": { + "m_Position": { + "x": 718.0, + "y": 107.00001525878906 + }, + "m_Blocks": [ + { + "m_Id": "d7e4288ff2704f36ae6e0eea3d703831" + }, + { + "m_Id": "df5729978b97406b9b66908b4307adb7" + }, + { + "m_Id": "fb880b7ebc034f63962aa5acca39b31c" + } + ] + }, + "m_PreviewData": { + "serializedMesh": { + "m_SerializedMesh": "{\"mesh\":{\"fileID\":10210,\"guid\":\"0000000000000000e000000000000000\",\"type\":0}}", + "m_Guid": "" + }, + "preventRotation": false + }, + "m_Path": "Shader Graphs", + "m_GraphPrecision": 1, + "m_PreviewMode": 2, + "m_OutputNode": { + "m_Id": "" + }, + "m_SubDatas": [], + "m_ActiveTargets": [ + { + "m_Id": "5c2f615cf45f4578b47104bbeeffe21d" + } + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "003f14d153ee43808a74e123d785e3a5", + "m_Id": 1, + "m_DisplayName": "", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "007e14dcff9f4607af0f259e0120649d", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.NormalFromTextureNode", + "m_ObjectId": "013a78afb6074711a80a448e3642e406", + "m_Group": { + "m_Id": "2d6bcdedabd24c4abc3ee860735c5a1c" + }, + "m_Name": "Normal From Texture", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -1508.0, + "y": -324.9999694824219, + "width": 172.0, + "height": 190.00001525878907 + } + }, + "m_Slots": [ + { + "m_Id": "1f541dec3f7b4a128e6169b432839bcc" + }, + { + "m_Id": "d6f264e030144dd9ab1dfc134a4754c3" + }, + { + "m_Id": "e82172fcaf954f51acbe95b8f3a46d92" + }, + { + "m_Id": "612e9115afac47bd8562ea0b772ec2bb" + }, + { + "m_Id": "33cf4f37343543e5be7e4307be387f44" + }, + { + "m_Id": "c861699fbdb24db8b28a1c91b6b79902" + } + ], + "synonyms": [ + "convert to normal", + "bump map" + ], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SplitNode", + "m_ObjectId": "013c8550ee754fcab89ba2a9e3ca7117", + "m_Group": { + "m_Id": "2d6bcdedabd24c4abc3ee860735c5a1c" + }, + "m_Name": "Split", + "m_DrawState": { + "m_Expanded": false, + "m_Position": { + "serializedVersion": "2", + "x": -1785.0, + "y": -191.00003051757813, + "width": 119.0, + "height": 77.00000762939453 + } + }, + "m_Slots": [ + { + "m_Id": "6272e2ac9e3b43b79e9dbcd72e876626" + }, + { + "m_Id": "15b6193b191f4a0c8d54b067d48619c9" + }, + { + "m_Id": "093f72fe71cf4629ae3c501733587cf0" + }, + { + "m_Id": "41883a9f41b145b4911b8bb57e223b20" + }, + { + "m_Id": "94b8b6bdc7aa404d92af6756587df827" + } + ], + "synonyms": [ + "separate" + ], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "0203e6ee889e46508ed6c0aade18d26b", + "m_Id": 2, + "m_DisplayName": "Strength", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Strength", + "m_StageCapability": 3, + "m_Value": 5.0, + "m_DefaultValue": 10.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "0287d8898c4f4705bb6bd573cc70ed68", + "m_Id": 2, + "m_DisplayName": "False", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "False", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "02c91c235f424c1db0154920ad1c251a", + "m_Id": 4, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.TangentMaterialSlot", + "m_ObjectId": "03a863f9bc184c02ad37ca1197c0db47", + "m_Id": 0, + "m_DisplayName": "Tangent", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Tangent", + "m_StageCapability": 1, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [], + "m_Space": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "04bbd3f8e4c64e3fae0b451520ab917b", + "m_Id": 2, + "m_DisplayName": "Y", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Y", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "05429ee471784b9595507a8936cd1ceb", + "m_Id": 0, + "m_DisplayName": "In", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "In", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "057a7cb05ae04199b5d5114b47e49d79", + "m_Guid": { + "m_GuidSerialized": "432a6d3c-280d-4abf-84b1-fed4449f2768" + }, + "m_Name": "Depth Fade Factor", + "m_DefaultRefNameVersion": 1, + "m_RefNameGeneratedByDisplayName": "Depth Fade Factor", + "m_DefaultReferenceName": "_Depth_Fade_Factor", + "m_OverrideReferenceName": "", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 3.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "0698d419188b4319a6192e3f5b9f1f9d", + "m_Id": 4, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.AddNode", + "m_ObjectId": "074f843d89ea44908b33d5cc2d28b7b8", + "m_Group": { + "m_Id": "2d6bcdedabd24c4abc3ee860735c5a1c" + }, + "m_Name": "Add", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -1162.0001220703125, + "y": -288.9999694824219, + "width": 130.0, + "height": 118.00001525878906 + } + }, + "m_Slots": [ + { + "m_Id": "e45195b723aa4bc3a914516efeeda60b" + }, + { + "m_Id": "6f848c539f8249aab0d715be4ac061e7" + }, + { + "m_Id": "3198f0ac8b6c4d94923efac50c917bf9" + } + ], + "synonyms": [ + "addition", + "sum", + "plus" + ], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVNode", + "m_ObjectId": "08b1d8ed4744476d9ec27d4bfc042afe", + "m_Group": { + "m_Id": "2f53ced29e0c456fa362c73e85febf7d" + }, + "m_Name": "UV", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -343.99993896484377, + "y": 713.0003051757813, + "width": 144.99989318847657, + "height": 129.0 + } + }, + "m_Slots": [ + { + "m_Id": "727ff1beb25440cda3904ff6f095649c" + } + ], + "synonyms": [ + "texcoords", + "coords", + "coordinates" + ], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_OutputChannel": 1 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "08be0d24b9da4e6ca72fc352cb4f9bf4", + "m_Id": 7, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "093f72fe71cf4629ae3c501733587cf0", + "m_Id": 2, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "095b021ddf92479fb0e56a17dc93cb30", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "09fb4be9ffbf4d1a837e111a26a36d03", + "m_Group": { + "m_Id": "241d2d9f0799457982e049afee554b6d" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -223.0000457763672, + "y": 87.00004577636719, + "width": 130.000244140625, + "height": 118.00009155273438 + } + }, + "m_Slots": [ + { + "m_Id": "a483e920ac214486b3253010ac49954e" + }, + { + "m_Id": "6cd4d2f87f544a93a445e0d9963ac8df" + }, + { + "m_Id": "88acb9efc9474c76902c8b2abe230d39" + } + ], + "synonyms": [ + "multiplication", + "times", + "x" + ], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "0a30f8b391234212811b6d16c6781297", + "m_Id": 1, + "m_DisplayName": "True", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "True", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "0b53042c85224362bbc2793af84c4f2d", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.10000000149011612, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "0b8b048436514ec380b3ee1382e7000a", + "m_Id": 0, + "m_DisplayName": "", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "0f54c088b56542ddb9d793ba2b511636", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "0f8bc4d72d974edeabeea4a2c67a1fa1", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.009999999776482582, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "0faa40b4a82e47b08222cd96ccbde7dc", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.AddNode", + "m_ObjectId": "11a991aacc0540b1a76963cd610bd217", + "m_Group": { + "m_Id": "abf2a667c6764cd6962500927295a09e" + }, + "m_Name": "Add", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 36.00013732910156, + "y": -671.0, + "width": 129.9999237060547, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "9b031189c90940e18245965698bd7075" + }, + { + "m_Id": "b710858b81f2428984f15916d032befd" + }, + { + "m_Id": "dda2fba85fd84561a5444e856885fc11" + } + ], + "synonyms": [ + "addition", + "sum", + "plus" + ], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.CategoryData", + "m_ObjectId": "11ac61560dc84cd4bb9f83d0cb52128e", + "m_Name": "Vertex Offset", + "m_ChildObjectList": [ + { + "m_Id": "197be477a3ab48e998f72b7d0093372b" + } + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "11b0251ae6524221b09842de1ddb76e4", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "11e86486b92f4c30a367d46982b33776", + "m_Id": 1, + "m_DisplayName": "", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "1294103fb88e4ecf8ba9e1c9d626ec42", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "132691b903f94a98982cbc3eb440a752", + "m_Id": 1, + "m_DisplayName": "", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "1361b3bba8ce484492c94df21897ed3f", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "13c79ea81a314f8fa4d5ac630e2fa851", + "m_Id": 4, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "145829df95d847cbbef1a3fef9a19760", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "15b6193b191f4a0c8d54b067d48619c9", + "m_Id": 1, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "1690ab982ff84c59bc51d2fdb6d90ed9", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "18d7d48057f14cd2802d3874642ce873", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Internal.BooleanShaderProperty", + "m_ObjectId": "197be477a3ab48e998f72b7d0093372b", + "m_Guid": { + "m_GuidSerialized": "715d6595-7486-4886-b181-e16e8e3e3f89" + }, + "m_Name": "Vertex Offset?", + "m_DefaultRefNameVersion": 1, + "m_RefNameGeneratedByDisplayName": "Vertex Offset?", + "m_DefaultReferenceName": "_Vertex_Offset", + "m_OverrideReferenceName": "", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "1a6ad0c8bea94d90bb160a85b002735d", + "m_Id": 0, + "m_DisplayName": "Time", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Time", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "1be8f2c8f91647efb3579f14ec56335d", + "m_Id": 2, + "m_DisplayName": "Offset", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Offset", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "1c2d990507f04d028c7c315cad2029af", + "m_Id": 4, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "1c8a8bce37d84ef0a36acfbef7cdaebb", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "1e2ab45907a044c5bd7fe14d2d091eb7", + "m_Id": 0, + "m_DisplayName": "In", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "In", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "1e7f1e82a3e140b2809e2f26908cc5d3", + "m_Id": 0, + "m_DisplayName": "", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "1f541dec3f7b4a128e6169b432839bcc", + "m_Id": 0, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "1f9d50a3192f431abf34183149a600e2", + "m_Id": 2, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Internal.Texture2DShaderProperty", + "m_ObjectId": "2041ecf722ef46bf93b0a76d1e92fc3d", + "m_Guid": { + "m_GuidSerialized": "3796ddd2-f52a-400c-97d4-181ca2103e8e" + }, + "m_Name": "Main Texture", + "m_DefaultRefNameVersion": 1, + "m_RefNameGeneratedByDisplayName": "Main Texture", + "m_DefaultReferenceName": "_Main_Texture", + "m_OverrideReferenceName": "", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "m_SerializedTexture": "", + "m_Guid": "" + }, + "isMainTexture": true, + "useTilingAndOffset": false, + "m_Modifiable": true, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SubtractNode", + "m_ObjectId": "205f8ae6662b43bd8bc6a9b7fe1df0bc", + "m_Group": { + "m_Id": "fb2955a6ed15464a96cffedc4c92d562" + }, + "m_Name": "Subtract", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -305.0, + "y": 321.0000305175781, + "width": 125.99989318847656, + "height": 118.00009155273438 + } + }, + "m_Slots": [ + { + "m_Id": "d788f248f4e64f1b98fe407765f4ac14" + }, + { + "m_Id": "f1bbc261bf4f4a418c8676b864fd3c61" + }, + { + "m_Id": "374a2cdc53824f0b9fa0d8ccacbe0e6f" + } + ], + "synonyms": [ + "subtraction", + "remove", + "minus", + "take away" + ], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SceneColorNode", + "m_ObjectId": "209c40916111453eb1e0c580e4a9f27b", + "m_Group": { + "m_Id": "2d6bcdedabd24c4abc3ee860735c5a1c" + }, + "m_Name": "Scene Color", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -1026.0, + "y": -288.9999694824219, + "width": 137.9998779296875, + "height": 77.00001525878906 + } + }, + "m_Slots": [ + { + "m_Id": "cb97b3cc0b1d4efdb8cca12d39ffaf29" + }, + { + "m_Id": "b1afc158f69446eb9a7cb532943790c1" + } + ], + "synonyms": [ + "screen buffer" + ], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "21f59cb5f14645e086c91fd5241acedd", + "m_Id": 1, + "m_DisplayName": "X", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "X", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVNode", + "m_ObjectId": "22e830f19205444ba2e6ea8e08a7d384", + "m_Group": { + "m_Id": "2d6bcdedabd24c4abc3ee860735c5a1c" + }, + "m_Name": "UV", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -1940.0001220703125, + "y": -324.0, + "width": 145.0, + "height": 129.0 + } + }, + "m_Slots": [ + { + "m_Id": "62c9e712f418463e8f2a813b9426855a" + } + ], + "synonyms": [ + "texcoords", + "coords", + "coordinates" + ], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_OutputChannel": 2 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot", + "m_ObjectId": "2400b89f2fb3436f99fd835bce4de911", + "m_Id": 0, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [], + "m_Channel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "241d2d9f0799457982e049afee554b6d", + "m_Title": "INTENSITY", + "m_Position": { + "x": -739.0, + "y": -52.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "25328af8b0e744c687f43de6bf28c05a", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "257d374bad1e4217a3bfbc3d2fc9c349", + "m_Id": 3, + "m_DisplayName": "Delta Time", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Delta Time", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "270122753a7148b28c205940282dc693", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BooleanMaterialSlot", + "m_ObjectId": "27ab0ef884744b40a746edcff2cebfdf", + "m_Id": 0, + "m_DisplayName": "Predicate", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Predicate", + "m_StageCapability": 3, + "m_Value": false, + "m_DefaultValue": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "2a41fd0720e745409e2abedd86f7f2c4", + "m_Id": 0, + "m_DisplayName": "In", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "In", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "2b03073d716842dbb8f8471e02307890", + "m_Id": 3, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "2b26d6b5bbc341639bd48904e567a3f3", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "2b7c0dc62aa44ee99119cf39f602c16a", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "2d6bcdedabd24c4abc3ee860735c5a1c", + "m_Title": "DISTORTION", + "m_Position": { + "x": -2175.0, + "y": -590.0000610351563 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "2ed9f5ec97df4516bc7d06e81fc4faaf", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "2f53ced29e0c456fa362c73e85febf7d", + "m_Title": "Dissolve", + "m_Position": { + "x": -369.0, + "y": 652.0001220703125 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "3004de9429df44fb85a4d4a91b853e1f", + "m_Id": 1, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.ScreenPositionNode", + "m_ObjectId": "314475fc06764cd696bcb0f051af688d", + "m_Group": { + "m_Id": "2d6bcdedabd24c4abc3ee860735c5a1c" + }, + "m_Name": "Screen Position", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -1481.0, + "y": -457.99993896484377, + "width": 145.0, + "height": 129.0 + } + }, + "m_Slots": [ + { + "m_Id": "fcfe5e3bf69946c79758a34c55d841ce" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_ScreenSpaceType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "3198f0ac8b6c4d94923efac50c917bf9", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.TimeNode", + "m_ObjectId": "31e3651567b147e2884a11152d78a8bb", + "m_Group": { + "m_Id": "abf2a667c6764cd6962500927295a09e" + }, + "m_Name": "Time", + "m_DrawState": { + "m_Expanded": false, + "m_Position": { + "serializedVersion": "2", + "x": -621.9999389648438, + "y": -599.0, + "width": 79.0, + "height": 76.0 + } + }, + "m_Slots": [ + { + "m_Id": "f106aa412a964f48acdd5cf3380e3f05" + }, + { + "m_Id": "9c83174b07fa4b22bd15bf531c93260d" + }, + { + "m_Id": "68789b03d9a34903915a14e595c0bc96" + }, + { + "m_Id": "257d374bad1e4217a3bfbc3d2fc9c349" + }, + { + "m_Id": "3dcbd49d955843ad8b6feaac7cc87c06" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "32583f2525b14d90927281637ad7b962", + "m_Group": { + "m_Id": "fb2955a6ed15464a96cffedc4c92d562" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -343.0, + "y": 506.0001220703125, + "width": 172.9999237060547, + "height": 33.99993896484375 + } + }, + "m_Slots": [ + { + "m_Id": "ad946f559e684486920ad159e96c1a67" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "057a7cb05ae04199b5d5114b47e49d79" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "33cf4f37343543e5be7e4307be387f44", + "m_Id": 4, + "m_DisplayName": "Strength", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Strength", + "m_StageCapability": 3, + "m_Value": 0.009999999776482582, + "m_DefaultValue": 8.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SaturateNode", + "m_ObjectId": "34122799a8de408ab780fb9e5fa36601", + "m_Group": { + "m_Id": "fb2955a6ed15464a96cffedc4c92d562" + }, + "m_Name": "Saturate", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -24.999874114990236, + "y": 391.0001525878906, + "width": 127.999755859375, + "height": 94.00009155273438 + } + }, + "m_Slots": [ + { + "m_Id": "05429ee471784b9595507a8936cd1ceb" + }, + { + "m_Id": "84bc8ec879394dea9b0b056686c3bce0" + } + ], + "synonyms": [ + "clamp" + ], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "36fc217a26fe4758bddbf376fde91e73", + "m_Id": 1, + "m_DisplayName": "", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "374a2cdc53824f0b9fa0d8ccacbe0e6f", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "37fbbbe200d84871927e0108aedac8d9", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "39cf56d4476e4e92b47b4f6159784b68", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2Node", + "m_ObjectId": "3b7618a9a80f44f8937bf30595ad7e38", + "m_Group": { + "m_Id": "7d4a4c94e2ea4400ac58a7a7aa061684" + }, + "m_Name": "Vector 2", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -1777.000244140625, + "y": 548.0001831054688, + "width": 128.0001220703125, + "height": 100.99993896484375 + } + }, + "m_Slots": [ + { + "m_Id": "21f59cb5f14645e086c91fd5241acedd" + }, + { + "m_Id": "ba5f61c1770841cca574516ee4461755" + }, + { + "m_Id": "095b021ddf92479fb0e56a17dc93cb30" + } + ], + "synonyms": [ + "2", + "v2", + "vec2", + "float2" + ], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Value": { + "x": 0.0, + "y": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "3b9f5981a2ef470ba9327d412a7046bf", + "m_Id": 1, + "m_DisplayName": "", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.RedirectNodeData", + "m_ObjectId": "3bbc083856474e99bbfef605a626cedd", + "m_Group": { + "m_Id": "" + }, + "m_Name": "Redirect Node", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -809.0001220703125, + "y": 116.0000228881836, + "width": 56.00006103515625, + "height": 23.99999237060547 + } + }, + "m_Slots": [ + { + "m_Id": "d33634393c73462d9ac8578ca0f3c25f" + }, + { + "m_Id": "3b9f5981a2ef470ba9327d412a7046bf" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "3dcbd49d955843ad8b6feaac7cc87c06", + "m_Id": 4, + "m_DisplayName": "Smooth Delta", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Smooth Delta", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "3e2ca701272747bcb2987b419123c930", + "m_Id": 3, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "3e58e845094846c8b7d64797fa641016", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot", + "m_ObjectId": "4047af3f70404c1bbc742b031f0b6703", + "m_Id": 3, + "m_DisplayName": "Sampler", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Sampler", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "409e16236b1f48b09b9ec56ec6d25b0a", + "m_Id": 1, + "m_DisplayName": "", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "40b56ade95b74410a4ed3681631304f4", + "m_Id": 0, + "m_DisplayName": "Main Texture", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.RedirectNodeData", + "m_ObjectId": "40e6ccbc222c4f88b7e037fa6b200b83", + "m_Group": { + "m_Id": "abf2a667c6764cd6962500927295a09e" + }, + "m_Name": "Redirect Node", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -441.9999694824219, + "y": -627.0, + "width": 56.00006103515625, + "height": 24.0 + } + }, + "m_Slots": [ + { + "m_Id": "b5e0027870e4455684599c7da9039ca2" + }, + { + "m_Id": "409e16236b1f48b09b9ec56ec6d25b0a" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "41883a9f41b145b4911b8bb57e223b20", + "m_Id": 3, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "42229d3a722e46c4a216fd59bedf38a6", + "m_Id": 1, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Internal.Texture2DShaderProperty", + "m_ObjectId": "43c8389c4388402c872cf9b3d740c71e", + "m_Guid": { + "m_GuidSerialized": "b4c03bfb-5684-41a7-955c-d4ecfa3bd4e0" + }, + "m_Name": "Color Mask", + "m_DefaultRefNameVersion": 1, + "m_RefNameGeneratedByDisplayName": "Color Mask", + "m_DefaultReferenceName": "_Color_Mask", + "m_OverrideReferenceName": "", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "m_SerializedTexture": "", + "m_Guid": "" + }, + "isMainTexture": false, + "useTilingAndOffset": false, + "m_Modifiable": true, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "4473ecb241514860b761db22a11ed5f3", + "m_Id": 4, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "49a5f930f8c94886ad7a1024eaffc75d", + "m_Id": 3, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot", + "m_ObjectId": "49a6838e43e84150894da2c3da3ee6f4", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "4aa16cf9c6bc41a6979b47eef6070b7d", + "m_Id": 2, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "4d69e6e92514440c9a7c8f346a7bf8b7", + "m_Group": { + "m_Id": "" + }, + "m_Name": "VertexDescription.Normal", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 0.0, + "y": 0.0, + "width": 0.0, + "height": 0.0 + } + }, + "m_Slots": [ + { + "m_Id": "e6f3c6782a9f4d1290a6f4eff4d5b208" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "VertexDescription.Normal" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "4fe751d6a3c642f68bd82038c9882d16", + "m_Id": 2, + "m_DisplayName": "False", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "False", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "5229eb56d843405db1251792484c1363", + "m_Id": 2, + "m_DisplayName": "Cosine Time", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Cosine Time", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "5261af153e4d4f1c85635b87e63212a5", + "m_Id": 1, + "m_DisplayName": "Tiling", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Tiling", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0 + }, + "m_DefaultValue": { + "x": 1.0, + "y": 1.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "5297c59a6cf84244813c8a12aa71bf90", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "53b5412b5947483698b0cf804941188d", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "543816df225f44d7a8b759a5d778d6b0", + "m_Id": 0, + "m_DisplayName": "Edge1", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Edge1", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BranchNode", + "m_ObjectId": "585281afb21148e8850339e89a273dd4", + "m_Group": { + "m_Id": "" + }, + "m_Name": "Branch", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -67.00025177001953, + "y": -203.99996948242188, + "width": 172.0006103515625, + "height": 142.0000762939453 + } + }, + "m_Slots": [ + { + "m_Id": "27ab0ef884744b40a746edcff2cebfdf" + }, + { + "m_Id": "0a30f8b391234212811b6d16c6781297" + }, + { + "m_Id": "4fe751d6a3c642f68bd82038c9882d16" + }, + { + "m_Id": "6b14fbae4087471cab1c3ba498f0838c" + } + ], + "synonyms": [ + "switch", + "if", + "else" + ], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BooleanMaterialSlot", + "m_ObjectId": "5a00fbefd66f40ab927a8627d786ace6", + "m_Id": 0, + "m_DisplayName": "Predicate", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Predicate", + "m_StageCapability": 3, + "m_Value": false, + "m_DefaultValue": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVNode", + "m_ObjectId": "5b1dfc466540458f9ef8535ef4b2a221", + "m_Group": { + "m_Id": "abf2a667c6764cd6962500927295a09e" + }, + "m_Name": "UV", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -815.9998779296875, + "y": -519.0, + "width": 144.99993896484376, + "height": 129.0 + } + }, + "m_Slots": [ + { + "m_Id": "2ed9f5ec97df4516bc7d06e81fc4faaf" + } + ], + "synonyms": [ + "texcoords", + "coords", + "coordinates" + ], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_OutputChannel": 1 +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.Rendering.Universal.ShaderGraph.UniversalTarget", + "m_ObjectId": "5c2f615cf45f4578b47104bbeeffe21d", + "m_Datas": [], + "m_ActiveSubTarget": { + "m_Id": "796ff3b4a5f64131997c71fc5079d09c" + }, + "m_AllowMaterialOverride": true, + "m_SurfaceType": 1, + "m_ZTestMode": 4, + "m_ZWriteControl": 0, + "m_AlphaMode": 0, + "m_RenderFace": 2, + "m_AlphaClip": false, + "m_CastShadows": true, + "m_ReceiveShadows": true, + "m_DisableTint": false, + "m_AdditionalMotionVectorMode": 0, + "m_AlembicMotionVectors": false, + "m_SupportsLODCrossFade": false, + "m_CustomEditorGUI": "", + "m_SupportVFX": true +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "5ddbe47697014ff59e00b3c4ef78d7b5", + "m_Group": { + "m_Id": "2d6bcdedabd24c4abc3ee860735c5a1c" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": false, + "m_Position": { + "serializedVersion": "2", + "x": -1656.0001220703125, + "y": -191.00003051757813, + "width": 126.0, + "height": 94.00006103515625 + } + }, + "m_Slots": [ + { + "m_Id": "963f7ac8df44466c9467b67856a57967" + }, + { + "m_Id": "0f8bc4d72d974edeabeea4a2c67a1fa1" + }, + { + "m_Id": "bfdc96b2c95d47b0b2345e5b218218d9" + } + ], + "synonyms": [ + "multiplication", + "times", + "x" + ], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "5e618a6b191346d0a1dcbc8e96038804", + "m_Id": 1, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "5fd4bd68e629420fa0f7695a69814246", + "m_Id": 3, + "m_DisplayName": "Z", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Z", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "Z" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.TwirlNode", + "m_ObjectId": "604dcecc3b8749e3a7a70bd8524db3c7", + "m_Group": { + "m_Id": "2d6bcdedabd24c4abc3ee860735c5a1c" + }, + "m_Name": "Twirl", + "m_DrawState": { + "m_Expanded": false, + "m_Position": { + "serializedVersion": "2", + "x": -1684.0001220703125, + "y": -423.0, + "width": 154.0, + "height": 94.00006103515625 + } + }, + "m_Slots": [ + { + "m_Id": "f9a742d1e8474d509050a9378258bc40" + }, + { + "m_Id": "990ee3ea5a7c4ed790ad065c9994fe82" + }, + { + "m_Id": "0203e6ee889e46508ed6c0aade18d26b" + }, + { + "m_Id": "952dd41397be492fae7d5dcc8e02efdc" + }, + { + "m_Id": "7b236534369342c093db9511020d0d28" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "6112e2bc27b6456989a07b8064e079fa", + "m_Id": 3, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "612e9115afac47bd8562ea0b772ec2bb", + "m_Id": 3, + "m_DisplayName": "Offset", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Offset", + "m_StageCapability": 3, + "m_Value": 65.0, + "m_DefaultValue": 0.5, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "6272e2ac9e3b43b79e9dbcd72e876626", + "m_Id": 0, + "m_DisplayName": "In", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "In", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "628a67c2b76b4664b9e4696b3605c099", + "m_Group": { + "m_Id": "abf2a667c6764cd6962500927295a09e" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -522.9999389648438, + "y": -580.9999389648438, + "width": 126.0, + "height": 117.99996948242188 + } + }, + "m_Slots": [ + { + "m_Id": "de511e22ca5c43b5b14371c2198ae963" + }, + { + "m_Id": "2b26d6b5bbc341639bd48904e567a3f3" + }, + { + "m_Id": "a14567cf87f248c78b4d33c2f11e70c1" + } + ], + "synonyms": [ + "multiplication", + "times", + "x" + ], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "628b66c69a64413d99fc9eac1e8ed815", + "m_Id": 0, + "m_DisplayName": "", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "628f5fa6ebef45c2bd3350c08611c195", + "m_Id": 0, + "m_DisplayName": "In", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "In", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "62c9e712f418463e8f2a813b9426855a", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.RedirectNodeData", + "m_ObjectId": "6389079ca7fe439ba03bdd90122bb70e", + "m_Group": { + "m_Id": "" + }, + "m_Name": "Redirect Node", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -950.0, + "y": 605.0001831054688, + "width": 56.0001220703125, + "height": 24.0 + } + }, + "m_Slots": [ + { + "m_Id": "1e7f1e82a3e140b2809e2f26908cc5d3" + }, + { + "m_Id": "8e5341bf25984413b508ed6b335d724b" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "656dc3797d8844dc82c6406dc269aab3", + "m_Id": 1, + "m_DisplayName": "", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.AddNode", + "m_ObjectId": "66fb86a088584979815762970a1803f5", + "m_Group": { + "m_Id": "2f53ced29e0c456fa362c73e85febf7d" + }, + "m_Name": "Add", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -49.000179290771487, + "y": 781.000244140625, + "width": 126.00050354003906, + "height": 118.0001220703125 + } + }, + "m_Slots": [ + { + "m_Id": "feae6fbc8b7d4bce8bb0b3af46037ef5" + }, + { + "m_Id": "90ecc4d06bbd408b995fb4127d4275d2" + }, + { + "m_Id": "25328af8b0e744c687f43de6bf28c05a" + } + ], + "synonyms": [ + "addition", + "sum", + "plus" + ], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot", + "m_ObjectId": "6855349904da4e52b41598446d19df49", + "m_Id": 0, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [], + "m_Channel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.NormalVectorNode", + "m_ObjectId": "6877f251de2046bbaa2b206f8bc64b33", + "m_Group": { + "m_Id": "abf2a667c6764cd6962500927295a09e" + }, + "m_Name": "Normal Vector", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -428.99993896484377, + "y": -803.0, + "width": 206.00003051757813, + "height": 131.0 + } + }, + "m_Slots": [ + { + "m_Id": "daff3128016d4a82aa82b157e459719a" + } + ], + "synonyms": [ + "surface direction" + ], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 2, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Space": 2 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "68789b03d9a34903915a14e595c0bc96", + "m_Id": 2, + "m_DisplayName": "Cosine Time", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Cosine Time", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "68d98cdeee9d4e3aaab24fa1a3cf5d25", + "m_Group": { + "m_Id": "fb566f5c17d447c3bcc0cc79e6a2bd8d" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -1259.0001220703125, + "y": 70.0002212524414, + "width": 130.0, + "height": 117.9997787475586 + } + }, + "m_Slots": [ + { + "m_Id": "37fbbbe200d84871927e0108aedac8d9" + }, + { + "m_Id": "fb7a37c95bfe46e599932e6feecb1333" + }, + { + "m_Id": "1c8a8bce37d84ef0a36acfbef7cdaebb" + } + ], + "synonyms": [ + "multiplication", + "times", + "x" + ], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot", + "m_ObjectId": "68fc6cabfde74226ae19c2fb366e1b8c", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [], + "m_Channel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SplitNode", + "m_ObjectId": "6a09d55e29c94fef8172d229eb37fff4", + "m_Group": { + "m_Id": "" + }, + "m_Name": "Split", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -1101.0001220703125, + "y": 71.00015258789063, + "width": 120.0, + "height": 148.99993896484376 + } + }, + "m_Slots": [ + { + "m_Id": "628f5fa6ebef45c2bd3350c08611c195" + }, + { + "m_Id": "3004de9429df44fb85a4d4a91b853e1f" + }, + { + "m_Id": "e59d34d7335b4db4a7b5f35a58230870" + }, + { + "m_Id": "905b32a532ee431fafe654c2f3eaabe2" + }, + { + "m_Id": "0698d419188b4319a6192e3f5b9f1f9d" + } + ], + "synonyms": [ + "separate" + ], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "6b14fbae4087471cab1c3ba498f0838c", + "m_Id": 3, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "6b2407a540714adf9577e1703309621d", + "m_Id": 4, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "6b3b4c3d71ac403991dfa8448caf465d", + "m_Group": { + "m_Id": "" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": false, + "m_Position": { + "serializedVersion": "2", + "x": -723.0001220703125, + "y": -214.9998779296875, + "width": 130.000244140625, + "height": 94.00009155273438 + } + }, + "m_Slots": [ + { + "m_Id": "c8830b7917314cbf9a9f20d351b04c69" + }, + { + "m_Id": "d0a81506bccf40d6aaebe8c4f0ccefa0" + }, + { + "m_Id": "9493939536d246eda30e41e06a6bb259" + } + ], + "synonyms": [ + "multiplication", + "times", + "x" + ], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "6cd4d2f87f544a93a445e0d9963ac8df", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "6d1139ee32934df2a528535656151dfa", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "6d2be2c6208b45d4b7680492acab31c5", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SplitNode", + "m_ObjectId": "6ebe6dd7c053473a86cc78d4af3b5456", + "m_Group": { + "m_Id": "fb2955a6ed15464a96cffedc4c92d562" + }, + "m_Name": "Split", + "m_DrawState": { + "m_Expanded": false, + "m_Position": { + "serializedVersion": "2", + "x": -447.00006103515627, + "y": 426.00006103515627, + "width": 119.0, + "height": 76.99993896484375 + } + }, + "m_Slots": [ + { + "m_Id": "98c6f6417dcc4113993a3a93b7f93607" + }, + { + "m_Id": "5e618a6b191346d0a1dcbc8e96038804" + }, + { + "m_Id": "1f9d50a3192f431abf34183149a600e2" + }, + { + "m_Id": "d713a225dbcf4d2faef2b553c34c5eca" + }, + { + "m_Id": "6b2407a540714adf9577e1703309621d" + } + ], + "synonyms": [ + "separate" + ], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "6f792da32637484db8b9fe61f0ed9d01", + "m_Id": 4, + "m_DisplayName": "Smooth Delta", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Smooth Delta", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "6f848c539f8249aab0d715be4ac061e7", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "70b5325b8da84c3a92337e2e80f194cb", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "727ff1beb25440cda3904ff6f095649c", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "7412fe4f669d4e0dab4c3bc00b1ae4e8", + "m_Id": 0, + "m_DisplayName": "", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "753541cfd2b44afab1f38d36fb271bd6", + "m_Id": 7, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode", + "m_ObjectId": "755ae0396640490095bbe69901c64485", + "m_Group": { + "m_Id": "2f53ced29e0c456fa362c73e85febf7d" + }, + "m_Name": "Sample Texture 2D", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -107.00012969970703, + "y": 911.0001831054688, + "width": 183.00021362304688, + "height": 251.00018310546876 + } + }, + "m_Slots": [ + { + "m_Id": "b886d933560b43b9b3b217b312c8f106" + }, + { + "m_Id": "ebfcef3c96de412c83a278cb53e91b9f" + }, + { + "m_Id": "d4cb76a745064e73921d1be9f3a136dc" + }, + { + "m_Id": "db8e2f4c706c4b68ac9926359142d36d" + }, + { + "m_Id": "08be0d24b9da4e6ca72fc352cb4f9bf4" + }, + { + "m_Id": "145829df95d847cbbef1a3fef9a19760" + }, + { + "m_Id": "7d7f9701de524ef09b4fae20b72a5201" + }, + { + "m_Id": "4047af3f70404c1bbc742b031f0b6703" + } + ], + "synonyms": [ + "tex2d" + ], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_TextureType": 0, + "m_NormalMapSpace": 0, + "m_EnableGlobalMipBias": true, + "m_MipSamplingMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "76d7e05ff5a64a63aa11d7cd794b53e0", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "78804880cedc47fdbd69823b872b9e1d", + "m_Group": { + "m_Id": "" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -243.9999237060547, + "y": -163.99978637695313, + "width": 118.00009155273438, + "height": 33.999969482421878 + } + }, + "m_Slots": [ + { + "m_Id": "c0874739bf314900b22b270501a71467" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "b93d7390090b48ba970d4452b44cd51c" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "78ded4a0611647dfbcfab508ea037553", + "m_Id": 1, + "m_DisplayName": "", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 2, + "m_Type": "UnityEditor.Rendering.Universal.ShaderGraph.UniversalUnlitSubTarget", + "m_ObjectId": "796ff3b4a5f64131997c71fc5079d09c" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "79d07365e21043b38f724b8b8ef99abf", + "m_Group": { + "m_Id": "2d6bcdedabd24c4abc3ee860735c5a1c" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": false, + "m_Position": { + "serializedVersion": "2", + "x": -1657.0, + "y": -324.0, + "width": 126.0, + "height": 94.00004577636719 + } + }, + "m_Slots": [ + { + "m_Id": "dd9573e44f1d45c5bafc7478a3ba6e53" + }, + { + "m_Id": "0b53042c85224362bbc2793af84c4f2d" + }, + { + "m_Id": "1294103fb88e4ecf8ba9e1c9d626ec42" + } + ], + "synonyms": [ + "multiplication", + "times", + "x" + ], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "7b236534369342c093db9511020d0d28", + "m_Id": 4, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.CategoryData", + "m_ObjectId": "7b9541aba18142c4968036348659ea8a", + "m_Name": "Dissolve", + "m_ChildObjectList": [ + { + "m_Id": "d0908263538e4ee58511deaf422d16bf" + } + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "7c3d7dd2f031473590587a99c85f4786", + "m_Id": 1, + "m_DisplayName": "", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.VertexColorNode", + "m_ObjectId": "7cd42a43447847d0b7e8ee5e4c015ece", + "m_Group": { + "m_Id": "fb566f5c17d447c3bcc0cc79e6a2bd8d" + }, + "m_Name": "Vertex Color", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -1417.0, + "y": 94.00021362304688, + "width": 116.999755859375, + "height": 93.99978637695313 + } + }, + "m_Slots": [ + { + "m_Id": "270122753a7148b28c205940282dc693" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 2, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "7d4a4c94e2ea4400ac58a7a7aa061684", + "m_Title": "Offset (Panning) texture", + "m_Position": { + "x": -2082.0, + "y": 489.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot", + "m_ObjectId": "7d7f9701de524ef09b4fae20b72a5201", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [], + "m_Channel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.RedirectNodeData", + "m_ObjectId": "7f80dbb3032c4f36ac91baa7e451d30a", + "m_Group": { + "m_Id": "2d6bcdedabd24c4abc3ee860735c5a1c" + }, + "m_Name": "Redirect Node", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -1249.0001220703125, + "y": -414.0, + "width": 56.0001220703125, + "height": 24.00006103515625 + } + }, + "m_Slots": [ + { + "m_Id": "0b8b048436514ec380b3ee1382e7000a" + }, + { + "m_Id": "7c3d7dd2f031473590587a99c85f4786" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.PositionNode", + "m_ObjectId": "8103313577b847c28c6f3a0383795ae0", + "m_Group": { + "m_Id": "abf2a667c6764cd6962500927295a09e" + }, + "m_Name": "Position", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -677.9999389648438, + "y": -743.0, + "width": 206.0, + "height": 131.0 + } + }, + "m_Slots": [ + { + "m_Id": "dcdc5207b2884268889e4bb01ca4175a" + } + ], + "synonyms": [ + "location" + ], + "m_Precision": 1, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 2, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Space": 0, + "m_PositionSource": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "812bcc4adf6a4460b95dc8e48301043f", + "m_Id": 0, + "m_DisplayName": "", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.ColorRGBMaterialSlot", + "m_ObjectId": "8216c66971644162884e61504a0b5f59", + "m_Id": 0, + "m_DisplayName": "Base Color", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "BaseColor", + "m_StageCapability": 2, + "m_Value": { + "x": 0.5, + "y": 0.5, + "z": 0.5 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [], + "m_ColorMode": 0, + "m_DefaultColor": { + "r": 0.5, + "g": 0.5, + "b": 0.5, + "a": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.TimeNode", + "m_ObjectId": "82adc655bbce4fbdbedd660755822708", + "m_Group": { + "m_Id": "2d6bcdedabd24c4abc3ee860735c5a1c" + }, + "m_Name": "Time", + "m_DrawState": { + "m_Expanded": false, + "m_Position": { + "serializedVersion": "2", + "x": -1907.0, + "y": -423.0, + "width": 78.9998779296875, + "height": 77.0 + } + }, + "m_Slots": [ + { + "m_Id": "1a6ad0c8bea94d90bb160a85b002735d" + }, + { + "m_Id": "a17a3351457841378e644dd71a52860d" + }, + { + "m_Id": "5229eb56d843405db1251792484c1363" + }, + { + "m_Id": "d702d289a8f8437bbcc59afab0ddb1b0" + }, + { + "m_Id": "6f792da32637484db8b9fe61f0ed9d01" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "84bc8ec879394dea9b0b056686c3bce0", + "m_Id": 1, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "85028efb48b34f39acff94d7f6323395", + "m_Id": 2, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "853042d666004c099fb969b9a5d646fd", + "m_Group": { + "m_Id": "9f756c89adba412eb77f6c89e3c79ba1" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -1638.000244140625, + "y": 318.000244140625, + "width": 151.0001220703125, + "height": 33.999969482421878 + } + }, + "m_Slots": [ + { + "m_Id": "40b56ade95b74410a4ed3681631304f4" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "2041ecf722ef46bf93b0a76d1e92fc3d" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "85f1a403a6f7479e9c373a83ef8680af", + "m_Id": 2, + "m_DisplayName": "Max", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Max", + "m_StageCapability": 3, + "m_Value": { + "x": 10.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "86961c77436f43fd8474f528d8f6fcec", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "8732675f147744329d262eea6a9bfed5", + "m_Id": 1, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "88acb9efc9474c76902c8b2abe230d39", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SplitNode", + "m_ObjectId": "88edf1e1762f4685b6a05e3c49b4a79b", + "m_Group": { + "m_Id": "7d4a4c94e2ea4400ac58a7a7aa061684" + }, + "m_Name": "Split", + "m_DrawState": { + "m_Expanded": false, + "m_Position": { + "serializedVersion": "2", + "x": -1905.000244140625, + "y": 548.0001831054688, + "width": 119.0, + "height": 100.99993896484375 + } + }, + "m_Slots": [ + { + "m_Id": "b185b7a1ef154b51b0f6f8b3224fecc5" + }, + { + "m_Id": "cd98ef3643044125a365c8b46c93c596" + }, + { + "m_Id": "4aa16cf9c6bc41a6979b47eef6070b7d" + }, + { + "m_Id": "97bb3e59fcf648a7b76edd8c79211cb7" + }, + { + "m_Id": "1c2d990507f04d028c7c315cad2029af" + } + ], + "synonyms": [ + "separate" + ], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DivideNode", + "m_ObjectId": "89c4abebb8194b988799339162560ac4", + "m_Group": { + "m_Id": "fb2955a6ed15464a96cffedc4c92d562" + }, + "m_Name": "Divide", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -153.9998779296875, + "y": 391.0001525878906, + "width": 125.99988555908203, + "height": 118.00009155273438 + } + }, + "m_Slots": [ + { + "m_Id": "86961c77436f43fd8474f528d8f6fcec" + }, + { + "m_Id": "e79c402e9d8c4462aae10b4c32ebd126" + }, + { + "m_Id": "2b7c0dc62aa44ee99119cf39f602c16a" + } + ], + "synonyms": [ + "division", + "divided by" + ], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVNode", + "m_ObjectId": "8a8370844fe34de7ad6269dae77ba12a", + "m_Group": { + "m_Id": "2d6bcdedabd24c4abc3ee860735c5a1c" + }, + "m_Name": "UV", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -1940.0001220703125, + "y": -191.00003051757813, + "width": 145.0, + "height": 129.0 + } + }, + "m_Slots": [ + { + "m_Id": "c9eaa56de956410393b91a3c476d214a" + } + ], + "synonyms": [ + "texcoords", + "coords", + "coordinates" + ], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_OutputChannel": 2 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.ClampNode", + "m_ObjectId": "8d3c85ef31db418187bf82aa0d05c018", + "m_Group": { + "m_Id": "241d2d9f0799457982e049afee554b6d" + }, + "m_Name": "Clamp", + "m_DrawState": { + "m_Expanded": false, + "m_Position": { + "serializedVersion": "2", + "x": -389.0001220703125, + "y": 48.00009536743164, + "width": 128.00006103515626, + "height": 94.00010681152344 + } + }, + "m_Slots": [ + { + "m_Id": "2a41fd0720e745409e2abedd86f7f2c4" + }, + { + "m_Id": "b0fb6b60bb6f42f8ad587d922dd482e3" + }, + { + "m_Id": "85f1a403a6f7479e9c373a83ef8680af" + }, + { + "m_Id": "2b03073d716842dbb8f8471e02307890" + } + ], + "synonyms": [ + "limit" + ], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.CategoryData", + "m_ObjectId": "8de3f0d4b7ce49269678e05a868bbc4c", + "m_Name": "Hue Mask", + "m_ChildObjectList": [ + { + "m_Id": "43c8389c4388402c872cf9b3d740c71e" + }, + { + "m_Id": "db3b043c8f6f4ab8b4d8966b0077a838" + } + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "8e5341bf25984413b508ed6b335d724b", + "m_Id": 1, + "m_DisplayName": "", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "905b32a532ee431fafe654c2f3eaabe2", + "m_Id": 3, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "90ecc4d06bbd408b995fb4127d4275d2", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode", + "m_ObjectId": "91eb236b08d74d45afd474257513386c", + "m_Group": { + "m_Id": "9f756c89adba412eb77f6c89e3c79ba1" + }, + "m_Name": "Sample Texture 2D", + "m_DrawState": { + "m_Expanded": false, + "m_Position": { + "serializedVersion": "2", + "x": -1460.0, + "y": 278.00006103515627, + "width": 178.999755859375, + "height": 179.00015258789063 + } + }, + "m_Slots": [ + { + "m_Id": "f077030810a8446689ac06e267b67bc5" + }, + { + "m_Id": "02c91c235f424c1db0154920ad1c251a" + }, + { + "m_Id": "ca29a9b65ce04e5c9f8cb7045c75452a" + }, + { + "m_Id": "bf6f1d9d0bc64235ae16f7ac780e6c2e" + }, + { + "m_Id": "753541cfd2b44afab1f38d36fb271bd6" + }, + { + "m_Id": "1361b3bba8ce484492c94df21897ed3f" + }, + { + "m_Id": "68fc6cabfde74226ae19c2fb366e1b8c" + }, + { + "m_Id": "e8df03f6cc2b45beac1dc7d1d14be25f" + } + ], + "synonyms": [ + "tex2d" + ], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_TextureType": 0, + "m_NormalMapSpace": 0, + "m_EnableGlobalMipBias": true, + "m_MipSamplingMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PositionMaterialSlot", + "m_ObjectId": "924020a70b7a43acaf3548b3150ac938", + "m_Id": 0, + "m_DisplayName": "Position", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Position", + "m_StageCapability": 1, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [], + "m_Space": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "924e81b385524be1bc62030b6d3352b3", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "9493939536d246eda30e41e06a6bb259", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "94b8b6bdc7aa404d92af6756587df827", + "m_Id": 4, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "952dd41397be492fae7d5dcc8e02efdc", + "m_Id": 3, + "m_DisplayName": "Offset", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Offset", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "963f7ac8df44466c9467b67856a57967", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "97bb3e59fcf648a7b76edd8c79211cb7", + "m_Id": 3, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "98c6f6417dcc4113993a3a93b7f93607", + "m_Id": 0, + "m_DisplayName": "In", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "In", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "990ee3ea5a7c4ed790ad065c9994fe82", + "m_Id": 1, + "m_DisplayName": "Center", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Center", + "m_StageCapability": 3, + "m_Value": { + "x": 0.5, + "y": 0.5 + }, + "m_DefaultValue": { + "x": 0.5, + "y": 0.5 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "99134a88749746c38543f3984b9f3e27", + "m_Id": 0, + "m_DisplayName": "In", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "In", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "9942457f96304aa3a8065b26389a6f76", + "m_Id": 3, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.PositionNode", + "m_ObjectId": "9945f3b0e3d44a09928d1fafad5fd566", + "m_Group": { + "m_Id": "" + }, + "m_Name": "Position", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 144.0, + "y": -214.9998779296875, + "width": 206.00027465820313, + "height": 130.99986267089845 + } + }, + "m_Slots": [ + { + "m_Id": "a79a2cab3f45494ebc0e902cdc251ce2" + } + ], + "synonyms": [ + "location" + ], + "m_Precision": 1, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 2, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Space": 0, + "m_PositionSource": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "9b031189c90940e18245965698bd7075", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "9bc00d59467142fbb0276dce0e950add", + "m_Group": { + "m_Id": "" + }, + "m_Name": "VertexDescription.Tangent", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 0.0, + "y": 0.0, + "width": 0.0, + "height": 0.0 + } + }, + "m_Slots": [ + { + "m_Id": "03a863f9bc184c02ad37ca1197c0db47" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "VertexDescription.Tangent" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "9c83174b07fa4b22bd15bf531c93260d", + "m_Id": 1, + "m_DisplayName": "Sine Time", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Sine Time", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "9f756c89adba412eb77f6c89e3c79ba1", + "m_Title": "Base texture", + "m_Position": { + "x": -1663.0, + "y": 219.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "a14567cf87f248c78b4d33c2f11e70c1", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.CategoryData", + "m_ObjectId": "a15446fabee14b1297b0b129e07fcf24", + "m_Name": "", + "m_ChildObjectList": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "a17a3351457841378e644dd71a52860d", + "m_Id": 1, + "m_DisplayName": "Sine Time", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Sine Time", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BranchNode", + "m_ObjectId": "a1a0323848bb4e62acb8d111c3c22a73", + "m_Group": { + "m_Id": "" + }, + "m_Name": "Branch", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 368.0003356933594, + "y": -316.9997863769531, + "width": 172.00003051757813, + "height": 141.99978637695313 + } + }, + "m_Slots": [ + { + "m_Id": "5a00fbefd66f40ab927a8627d786ace6" + }, + { + "m_Id": "ef87bca36b854c578c1464cc3772ce00" + }, + { + "m_Id": "0287d8898c4f4705bb6bd573cc70ed68" + }, + { + "m_Id": "bf9c3b9fc0a34c2db55163eb69e0bcb3" + } + ], + "synonyms": [ + "switch", + "if", + "else" + ], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "a2fadb63610148eebcf14c0bbacc7ccb", + "m_Id": 1, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.RedirectNodeData", + "m_ObjectId": "a348c6c97d5c4d78b24e4f375c3dd2a7", + "m_Group": { + "m_Id": "" + }, + "m_Name": "Redirect Node", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 195.00010681152345, + "y": -248.99984741210938, + "width": 56.00007629394531, + "height": 24.0 + } + }, + "m_Slots": [ + { + "m_Id": "812bcc4adf6a4460b95dc8e48301043f" + }, + { + "m_Id": "132691b903f94a98982cbc3eb440a752" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "a3558c8f5efb4581b510c889004960f7", + "m_Group": { + "m_Id": "" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 225.0, + "y": 97.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "cd35e262e6a440708b67359ee1b1d567" + }, + { + "m_Id": "bb5b4fc422da4bfe95fca90149537ea4" + }, + { + "m_Id": "924e81b385524be1bc62030b6d3352b3" + } + ], + "synonyms": [ + "multiplication", + "times", + "x" + ], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "a3bebb9cbf564bc49c85414f4893d4c1", + "m_Group": { + "m_Id": "2d6bcdedabd24c4abc3ee860735c5a1c" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -1313.0001220703125, + "y": -240.99993896484376, + "width": 130.0001220703125, + "height": 117.99991607666016 + } + }, + "m_Slots": [ + { + "m_Id": "39cf56d4476e4e92b47b4f6159784b68" + }, + { + "m_Id": "b7a363856e31493481cd5da7712ad3f0" + }, + { + "m_Id": "c34599fe410d468aade90c48215f8d1e" + } + ], + "synonyms": [ + "multiplication", + "times", + "x" + ], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "a41416a0d5ca4159a64cbe7c4a73a39a", + "m_Id": 0, + "m_DisplayName": "", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "a483e920ac214486b3253010ac49954e", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "a6ac956121944ac9b94d190301227515", + "m_Id": 1, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot", + "m_ObjectId": "a79a2cab3f45494ebc0e902cdc251ce2", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "a85d0177ea0341d9a0a80ed35edb2c8a", + "m_Group": { + "m_Id": "" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 203.0001983642578, + "y": -305.9998779296875, + "width": 152.0000762939453, + "height": 33.999969482421878 + } + }, + "m_Slots": [ + { + "m_Id": "e56e110d8edf45dc95105e11f566caf6" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "197be477a3ab48e998f72b7d0093372b" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.RedirectNodeData", + "m_ObjectId": "a95d9958091645788f9a16dc5d9309c9", + "m_Group": { + "m_Id": "" + }, + "m_Name": "Redirect Node", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 470.9999694824219, + "y": 193.99996948242188, + "width": 55.999969482421878, + "height": 24.0 + } + }, + "m_Slots": [ + { + "m_Id": "a41416a0d5ca4159a64cbe7c4a73a39a" + }, + { + "m_Id": "11e86486b92f4c30a367d46982b33776" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "a9923baaf9d74852911e03f8fea426fa", + "m_Id": 0, + "m_DisplayName": "Distortion Noise", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "aab06c4c20104f918a0a17a2dbb8869c", + "m_Id": 2, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.RedirectNodeData", + "m_ObjectId": "aada7780282e4134a7e2afb70cfa06d5", + "m_Group": { + "m_Id": "" + }, + "m_Name": "Redirect Node", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 569.0, + "y": -36.000030517578128, + "width": 56.0001220703125, + "height": 23.999990463256837 + } + }, + "m_Slots": [ + { + "m_Id": "7412fe4f669d4e0dab4c3bc00b1ae4e8" + }, + { + "m_Id": "78ded4a0611647dfbcfab508ea037553" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "abf2a667c6764cd6962500927295a09e", + "m_Title": "VERTEX OFFSET", + "m_Position": { + "x": -841.0, + "y": -862.0000610351563 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "aca547bfa29a4dd3aaba3d94344b5edf", + "m_Id": 0, + "m_DisplayName": "Dissolve Texture", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.AddNode", + "m_ObjectId": "acbcfe1a53394a188eb16f2205ba5fae", + "m_Group": { + "m_Id": "" + }, + "m_Name": "Add", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -572.0, + "y": -281.9998779296875, + "width": 129.99990844726563, + "height": 118.00009155273438 + } + }, + "m_Slots": [ + { + "m_Id": "6d1139ee32934df2a528535656151dfa" + }, + { + "m_Id": "f8ff5c8e1ec34055ac7d46cafc88f902" + }, + { + "m_Id": "11b0251ae6524221b09842de1ddb76e4" + } + ], + "synonyms": [ + "addition", + "sum", + "plus" + ], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "ad946f559e684486920ad159e96c1a67", + "m_Id": 0, + "m_DisplayName": "Depth Fade Factor", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "ae2c4546134e4beeb5b74f0bff8400bb", + "m_Group": { + "m_Id": "abf2a667c6764cd6962500927295a09e" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -201.99986267089845, + "y": -646.0, + "width": 129.99993896484376, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "6d2be2c6208b45d4b7680492acab31c5" + }, + { + "m_Id": "007e14dcff9f4607af0f259e0120649d" + }, + { + "m_Id": "0faa40b4a82e47b08222cd96ccbde7dc" + } + ], + "synonyms": [ + "multiplication", + "times", + "x" + ], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "b099b68e805a43c282ee5af20fe9f912", + "m_Group": { + "m_Id": "" + }, + "m_Name": "VertexDescription.Position", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 0.0, + "y": 0.0, + "width": 0.0, + "height": 0.0 + } + }, + "m_Slots": [ + { + "m_Id": "924020a70b7a43acaf3548b3150ac938" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "VertexDescription.Position" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "b0fb6b60bb6f42f8ad587d922dd482e3", + "m_Id": 1, + "m_DisplayName": "Min", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Min", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "b185b7a1ef154b51b0f6f8b3224fecc5", + "m_Id": 0, + "m_DisplayName": "In", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "In", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot", + "m_ObjectId": "b1afc158f69446eb9a7cb532943790c1", + "m_Id": 1, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "b32520d99b1647ab943f7a15e4915b32", + "m_Id": 4, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "b3ac838b68254a3c8286c808558321f8", + "m_Id": 0, + "m_DisplayName": "", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVNode", + "m_ObjectId": "b3e5f3e650b74a7ebeda9f74fded1b47", + "m_Group": { + "m_Id": "7d4a4c94e2ea4400ac58a7a7aa061684" + }, + "m_Name": "UV", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -2057.0, + "y": 549.0001220703125, + "width": 144.9998779296875, + "height": 129.0 + } + }, + "m_Slots": [ + { + "m_Id": "5297c59a6cf84244813c8a12aa71bf90" + } + ], + "synonyms": [ + "texcoords", + "coords", + "coordinates" + ], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_OutputChannel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SplitNode", + "m_ObjectId": "b444b317981f46f1958301bf94b38de1", + "m_Group": { + "m_Id": "2f53ced29e0c456fa362c73e85febf7d" + }, + "m_Name": "Split", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -191.9998779296875, + "y": 713.0003051757813, + "width": 119.99964141845703, + "height": 148.99993896484376 + } + }, + "m_Slots": [ + { + "m_Id": "feb7c633c98d4bd69c339473da0276ea" + }, + { + "m_Id": "42229d3a722e46c4a216fd59bedf38a6" + }, + { + "m_Id": "cb3a95c99a744e0e8fd31f5286620c51" + }, + { + "m_Id": "3e2ca701272747bcb2987b419123c930" + }, + { + "m_Id": "4473ecb241514860b761db22a11ed5f3" + } + ], + "synonyms": [ + "separate" + ], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "b5e0027870e4455684599c7da9039ca2", + "m_Id": 0, + "m_DisplayName": "", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.ScreenPositionMaterialSlot", + "m_ObjectId": "b695e3daa16045afa500fb522677be40", + "m_Id": 0, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [], + "m_ScreenSpaceType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "b710858b81f2428984f15916d032befd", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "b7a363856e31493481cd5da7712ad3f0", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "b886d933560b43b9b3b217b312c8f106", + "m_Id": 0, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Internal.BooleanShaderProperty", + "m_ObjectId": "b93d7390090b48ba970d4452b44cd51c", + "m_Guid": { + "m_GuidSerialized": "d4550bb2-e963-41c7-8f53-0555d467c4bc" + }, + "m_Name": "Distort?", + "m_DefaultRefNameVersion": 1, + "m_RefNameGeneratedByDisplayName": "Distort?", + "m_DefaultReferenceName": "_Distort", + "m_OverrideReferenceName": "", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 2, + "m_Hidden": false, + "m_Value": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVNode", + "m_ObjectId": "b99c1e3fd7b14962b22510ab822596fa", + "m_Group": { + "m_Id": "241d2d9f0799457982e049afee554b6d" + }, + "m_Name": "UV", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -686.0000610351563, + "y": 6.999966621398926, + "width": 145.00018310546876, + "height": 129.00030517578126 + } + }, + "m_Slots": [ + { + "m_Id": "e9fddeb081254e79bbb0d2e170b4dc08" + } + ], + "synonyms": [ + "texcoords", + "coords", + "coordinates" + ], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_OutputChannel": 1 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "ba36f89f2ffd4c9b98c12e37a9235dbc", + "m_Id": 3, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "ba5f61c1770841cca574516ee4461755", + "m_Id": 2, + "m_DisplayName": "Y", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Y", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "bb5b4fc422da4bfe95fca90149537ea4", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Internal.Texture2DShaderProperty", + "m_ObjectId": "bbbeff3f1cd3452f9ad4fb3396380303", + "m_Guid": { + "m_GuidSerialized": "825f0492-15d7-4dd8-b392-52586bf33ccc" + }, + "m_Name": "Distortion Noise", + "m_DefaultRefNameVersion": 1, + "m_RefNameGeneratedByDisplayName": "Distortion Noise", + "m_DefaultReferenceName": "_Distortion_Noise", + "m_OverrideReferenceName": "", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "m_SerializedTexture": "{\"texture\":{\"fileID\":2800000,\"guid\":\"d895725151c4eeb458f9a342d82278ef\",\"type\":3}}", + "m_Guid": "" + }, + "isMainTexture": false, + "useTilingAndOffset": false, + "m_Modifiable": true, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "bd04254d03004723a7a37303d187c4d6", + "m_Id": 0, + "m_DisplayName": "", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "bf2e7927e90c40aabce781a09d9188e8", + "m_Id": 1, + "m_DisplayName": "Edge2", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Edge2", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "bf6f1d9d0bc64235ae16f7ac780e6c2e", + "m_Id": 6, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "bf9c3b9fc0a34c2db55163eb69e0bcb3", + "m_Id": 3, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "bfdc96b2c95d47b0b2345e5b218218d9", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BooleanMaterialSlot", + "m_ObjectId": "c0874739bf314900b22b270501a71467", + "m_Id": 0, + "m_DisplayName": "Distort?", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": false, + "m_DefaultValue": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.CategoryData", + "m_ObjectId": "c30fe9a08c68416c9496a4c18ba55f74", + "m_Name": "Global", + "m_ChildObjectList": [ + { + "m_Id": "2041ecf722ef46bf93b0a76d1e92fc3d" + }, + { + "m_Id": "057a7cb05ae04199b5d5114b47e49d79" + } + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "c34599fe410d468aade90c48215f8d1e", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "c37312e0fe2049248f6b002efb105a2f", + "m_Id": 0, + "m_DisplayName": "In", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "In", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.RedirectNodeData", + "m_ObjectId": "c4ba89b9c9ee4847adec7a8a5563251e", + "m_Group": { + "m_Id": "" + }, + "m_Name": "Redirect Node", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -1460.0, + "y": 978.0001831054688, + "width": 56.0, + "height": 24.0 + } + }, + "m_Slots": [ + { + "m_Id": "b3ac838b68254a3c8286c808558321f8" + }, + { + "m_Id": "656dc3797d8844dc82c6406dc269aab3" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector3Node", + "m_ObjectId": "c56d660d8d604b0095df913163d05636", + "m_Group": { + "m_Id": "" + }, + "m_Name": "Vector 3", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -958.0000610351563, + "y": 71.00015258789063, + "width": 128.00006103515626, + "height": 124.99993896484375 + } + }, + "m_Slots": [ + { + "m_Id": "c68884d9b30c4a07a4034625542b716c" + }, + { + "m_Id": "04bbd3f8e4c64e3fae0b451520ab917b" + }, + { + "m_Id": "5fd4bd68e629420fa0f7695a69814246" + }, + { + "m_Id": "ff4397b3a9de40a291187fb12a13a13d" + } + ], + "synonyms": [ + "3", + "v3", + "vec3", + "float3" + ], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "c5a5fa6859e5493f9a6a637ab3c67293", + "m_Id": 0, + "m_DisplayName": "", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "c6300fdc3e0043ff9d60a7fa15ebc771", + "m_Id": 2, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "c68884d9b30c4a07a4034625542b716c", + "m_Id": 1, + "m_DisplayName": "X", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "X", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot", + "m_ObjectId": "c861699fbdb24db8b28a1c91b6b79902", + "m_Id": 5, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "c8830b7917314cbf9a9f20d351b04c69", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.ScreenPositionNode", + "m_ObjectId": "c8c254b7170c483f9436f2a186f2f25f", + "m_Group": { + "m_Id": "fb2955a6ed15464a96cffedc4c92d562" + }, + "m_Name": "Screen Position", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -597.9998779296875, + "y": 427.00030517578127, + "width": 144.9998779296875, + "height": 129.0 + } + }, + "m_Slots": [ + { + "m_Id": "76d7e05ff5a64a63aa11d7cd794b53e0" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_ScreenSpaceType": 1 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "c8ee3192ed2a4bc085039e2be7f955ba", + "m_Id": 1, + "m_DisplayName": "Scale", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Scale", + "m_StageCapability": 3, + "m_Value": 500.0, + "m_DefaultValue": 500.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "c9eaa56de956410393b91a3c476d214a", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "ca29a9b65ce04e5c9f8cb7045c75452a", + "m_Id": 5, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "cb3a95c99a744e0e8fd31f5286620c51", + "m_Id": 2, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "cb9519f711804655974d9492e6244d07", + "m_Id": 1, + "m_DisplayName": "", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.ScreenPositionMaterialSlot", + "m_ObjectId": "cb97b3cc0b1d4efdb8cca12d39ffaf29", + "m_Id": 0, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [], + "m_ScreenSpaceType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SceneDepthNode", + "m_ObjectId": "cbf4b7140c8747fba9e28c881275612c", + "m_Group": { + "m_Id": "fb2955a6ed15464a96cffedc4c92d562" + }, + "m_Name": "Scene Depth", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -472.0, + "y": 304.0002136230469, + "width": 144.9998779296875, + "height": 111.9998779296875 + } + }, + "m_Slots": [ + { + "m_Id": "b695e3daa16045afa500fb522677be40" + }, + { + "m_Id": "8732675f147744329d262eea6a9bfed5" + } + ], + "synonyms": [ + "zbuffer", + "zdepth" + ], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_DepthSamplingMode": 2 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "cd35e262e6a440708b67359ee1b1d567", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "cd98ef3643044125a365c8b46c93c596", + "m_Id": 1, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "ce7c03026eb84b68911b45e6a8ee1d1b", + "m_Id": 1, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Internal.Texture2DShaderProperty", + "m_ObjectId": "d0908263538e4ee58511deaf422d16bf", + "m_Guid": { + "m_GuidSerialized": "c1b68ca4-c8a8-485c-b2fd-5f3367bf9c48" + }, + "m_Name": "Dissolve Texture", + "m_DefaultRefNameVersion": 1, + "m_RefNameGeneratedByDisplayName": "Dissolve Texture", + "m_DefaultReferenceName": "_Dissolve_Texture", + "m_OverrideReferenceName": "", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "m_SerializedTexture": "", + "m_Guid": "" + }, + "isMainTexture": false, + "useTilingAndOffset": false, + "m_Modifiable": true, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "d0a81506bccf40d6aaebe8c4f0ccefa0", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SplitNode", + "m_ObjectId": "d2412a890bef4daf877bc52848883f38", + "m_Group": { + "m_Id": "abf2a667c6764cd6962500927295a09e" + }, + "m_Name": "Split", + "m_DrawState": { + "m_Expanded": false, + "m_Position": { + "serializedVersion": "2", + "x": -661.9999389648438, + "y": -519.0, + "width": 119.0, + "height": 76.99996948242188 + } + }, + "m_Slots": [ + { + "m_Id": "c37312e0fe2049248f6b002efb105a2f" + }, + { + "m_Id": "ce7c03026eb84b68911b45e6a8ee1d1b" + }, + { + "m_Id": "85028efb48b34f39acff94d7f6323395" + }, + { + "m_Id": "fe4bf1ad4f384b029c82b38644ceee7e" + }, + { + "m_Id": "13c79ea81a314f8fa4d5ac630e2fa851" + } + ], + "synonyms": [ + "separate" + ], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "d2d103e49eac44d0b1584b206c0dc171", + "m_Group": { + "m_Id": "2d6bcdedabd24c4abc3ee860735c5a1c" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": false, + "m_Position": { + "serializedVersion": "2", + "x": -1816.0, + "y": -423.0, + "width": 126.0, + "height": 94.00006103515625 + } + }, + "m_Slots": [ + { + "m_Id": "70b5325b8da84c3a92337e2e80f194cb" + }, + { + "m_Id": "3e58e845094846c8b7d64797fa641016" + }, + { + "m_Id": "53b5412b5947483698b0cf804941188d" + } + ], + "synonyms": [ + "multiplication", + "times", + "x" + ], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "d33634393c73462d9ac8578ca0f3c25f", + "m_Id": 0, + "m_DisplayName": "", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "d4cb76a745064e73921d1be9f3a136dc", + "m_Id": 5, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.NoiseNode", + "m_ObjectId": "d6542178491a4e799a39d1963f6e9d3f", + "m_Group": { + "m_Id": "abf2a667c6764cd6962500927295a09e" + }, + "m_Name": "Simple Noise", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -372.9998779296875, + "y": -672.0, + "width": 146.9999542236328, + "height": 153.0 + } + }, + "m_Slots": [ + { + "m_Id": "2400b89f2fb3436f99fd835bce4de911" + }, + { + "m_Id": "c8ee3192ed2a4bc085039e2be7f955ba" + }, + { + "m_Id": "1690ab982ff84c59bc51d2fdb6d90ed9" + } + ], + "synonyms": [ + "value noise" + ], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_HashType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot", + "m_ObjectId": "d6f264e030144dd9ab1dfc134a4754c3", + "m_Id": 1, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [], + "m_Channel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "d702d289a8f8437bbcc59afab0ddb1b0", + "m_Id": 3, + "m_DisplayName": "Delta Time", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Delta Time", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "d713a225dbcf4d2faef2b553c34c5eca", + "m_Id": 3, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "d788f248f4e64f1b98fe407765f4ac14", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "d7e4288ff2704f36ae6e0eea3d703831", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.BaseColor", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 0.0, + "y": 0.0, + "width": 0.0, + "height": 0.0 + } + }, + "m_Slots": [ + { + "m_Id": "8216c66971644162884e61504a0b5f59" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.BaseColor" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SplitNode", + "m_ObjectId": "d91e1a6788134a0db18458e2c9ffe1e2", + "m_Group": { + "m_Id": "241d2d9f0799457982e049afee554b6d" + }, + "m_Name": "Split", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -534.0, + "y": 6.999966621398926, + "width": 119.99996948242188, + "height": 149.000244140625 + } + }, + "m_Slots": [ + { + "m_Id": "99134a88749746c38543f3984b9f3e27" + }, + { + "m_Id": "a6ac956121944ac9b94d190301227515" + }, + { + "m_Id": "c6300fdc3e0043ff9d60a7fa15ebc771" + }, + { + "m_Id": "9942457f96304aa3a8065b26389a6f76" + }, + { + "m_Id": "faba8401ceaa42bdbf764081118aebd2" + } + ], + "synonyms": [ + "separate" + ], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SmoothstepNode", + "m_ObjectId": "da8d7a9358f44c8a80013467490deb26", + "m_Group": { + "m_Id": "2f53ced29e0c456fa362c73e85febf7d" + }, + "m_Name": "Smoothstep", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 102.00025177001953, + "y": 711.0001220703125, + "width": 152.00006103515626, + "height": 142.0001220703125 + } + }, + "m_Slots": [ + { + "m_Id": "543816df225f44d7a8b759a5d778d6b0" + }, + { + "m_Id": "bf2e7927e90c40aabce781a09d9188e8" + }, + { + "m_Id": "e9bd2de514d643dba327ddddd390ed34" + }, + { + "m_Id": "ba36f89f2ffd4c9b98c12e37a9235dbc" + } + ], + "synonyms": [ + "curve" + ], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot", + "m_ObjectId": "daff3128016d4a82aa82b157e459719a", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 3, + "m_Type": "UnityEditor.ShaderGraph.Internal.ColorShaderProperty", + "m_ObjectId": "db3b043c8f6f4ab8b4d8966b0077a838", + "m_Guid": { + "m_GuidSerialized": "7e3d0fa3-fe5c-463a-b182-fb4f18688fb5" + }, + "m_Name": "Hue shift", + "m_DefaultRefNameVersion": 1, + "m_RefNameGeneratedByDisplayName": "Hue shift", + "m_DefaultReferenceName": "_Hue_shift", + "m_OverrideReferenceName": "", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + }, + "isMainColor": false, + "m_ColorMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "db64e07eaff148db805a7c8bbe2a0bb2", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "db8e2f4c706c4b68ac9926359142d36d", + "m_Id": 6, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot", + "m_ObjectId": "dcdc5207b2884268889e4bb01ca4175a", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SplitNode", + "m_ObjectId": "dd61a7836c0d4dd0af69acff06b02195", + "m_Group": { + "m_Id": "2d6bcdedabd24c4abc3ee860735c5a1c" + }, + "m_Name": "Split", + "m_DrawState": { + "m_Expanded": false, + "m_Position": { + "serializedVersion": "2", + "x": -1786.0001220703125, + "y": -322.9999694824219, + "width": 120.0001220703125, + "height": 77.0 + } + }, + "m_Slots": [ + { + "m_Id": "1e2ab45907a044c5bd7fe14d2d091eb7" + }, + { + "m_Id": "a2fadb63610148eebcf14c0bbacc7ccb" + }, + { + "m_Id": "aab06c4c20104f918a0a17a2dbb8869c" + }, + { + "m_Id": "49a5f930f8c94886ad7a1024eaffc75d" + }, + { + "m_Id": "b32520d99b1647ab943f7a15e4915b32" + } + ], + "synonyms": [ + "separate" + ], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "dd9573e44f1d45c5bafc7478a3ba6e53", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "dda2fba85fd84561a5444e856885fc11", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.StickyNoteData", + "m_ObjectId": "de2f4eabd7e44fd9a077fe3d75020dde", + "m_Title": "Why multiply", + "m_Content": "UV2 r out multiplied again so custom data stream doesn't need to be decimal", + "m_TextSize": 0, + "m_Theme": 0, + "m_Position": { + "serializedVersion": "2", + "x": -2150.0, + "y": -531.0, + "width": 187.0, + "height": 123.0 + }, + "m_Group": { + "m_Id": "2d6bcdedabd24c4abc3ee860735c5a1c" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "de511e22ca5c43b5b14371c2198ae963", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "df5729978b97406b9b66908b4307adb7", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.Alpha", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 0.0, + "y": 0.0, + "width": 0.0, + "height": 0.0 + } + }, + "m_Slots": [ + { + "m_Id": "ed32dfc7f2334cdf9ac4456617f109d1" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.Alpha" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "e36a738a2910476d86e658acedbafd6c", + "m_Group": { + "m_Id": "" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 289.99981689453127, + "y": 556.0003051757813, + "width": 126.00051879882813, + "height": 117.999755859375 + } + }, + "m_Slots": [ + { + "m_Id": "db64e07eaff148db805a7c8bbe2a0bb2" + }, + { + "m_Id": "18d7d48057f14cd2802d3874642ce873" + }, + { + "m_Id": "0f54c088b56542ddb9d793ba2b511636" + } + ], + "synonyms": [ + "multiplication", + "times", + "x" + ], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "e45195b723aa4bc3a914516efeeda60b", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BooleanMaterialSlot", + "m_ObjectId": "e56e110d8edf45dc95105e11f566caf6", + "m_Id": 0, + "m_DisplayName": "Vertex Offset?", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": false, + "m_DefaultValue": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "e59d34d7335b4db4a7b5f35a58230870", + "m_Id": 2, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.NormalMaterialSlot", + "m_ObjectId": "e6f3c6782a9f4d1290a6f4eff4d5b208", + "m_Id": 0, + "m_DisplayName": "Normal", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Normal", + "m_StageCapability": 1, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [], + "m_Space": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.TilingAndOffsetNode", + "m_ObjectId": "e798aa3c9b40492d9adafac0357bc1ba", + "m_Group": { + "m_Id": "7d4a4c94e2ea4400ac58a7a7aa061684" + }, + "m_Name": "Tiling And Offset", + "m_DrawState": { + "m_Expanded": false, + "m_Position": { + "serializedVersion": "2", + "x": -1638.000244140625, + "y": 548.0001831054688, + "width": 154.000244140625, + "height": 94.0001220703125 + } + }, + "m_Slots": [ + { + "m_Id": "6855349904da4e52b41598446d19df49" + }, + { + "m_Id": "5261af153e4d4f1c85635b87e63212a5" + }, + { + "m_Id": "1be8f2c8f91647efb3579f14ec56335d" + }, + { + "m_Id": "6112e2bc27b6456989a07b8064e079fa" + } + ], + "synonyms": [ + "pan", + "scale" + ], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "e79c402e9d8c4462aae10b4c32ebd126", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 2.0, + "z": 2.0, + "w": 2.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot", + "m_ObjectId": "e82172fcaf954f51acbe95b8f3a46d92", + "m_Id": 2, + "m_DisplayName": "Sampler", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Sampler", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "e8a840319f5b41cdaa707f822ca3ae11", + "m_Group": { + "m_Id": "2f53ced29e0c456fa362c73e85febf7d" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -294.0000915527344, + "y": 923.0003662109375, + "width": 170.0001220703125, + "height": 33.99993896484375 + } + }, + "m_Slots": [ + { + "m_Id": "aca547bfa29a4dd3aaba3d94344b5edf" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "d0908263538e4ee58511deaf422d16bf" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot", + "m_ObjectId": "e8df03f6cc2b45beac1dc7d1d14be25f", + "m_Id": 3, + "m_DisplayName": "Sampler", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Sampler", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "e9bd2de514d643dba327ddddd390ed34", + "m_Id": 2, + "m_DisplayName": "In", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "In", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "e9fddeb081254e79bbb0d2e170b4dc08", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.CategoryData", + "m_ObjectId": "ead4c164db924a9aa9c9db0c8758e111", + "m_Name": "Distort", + "m_ChildObjectList": [ + { + "m_Id": "b93d7390090b48ba970d4452b44cd51c" + }, + { + "m_Id": "bbbeff3f1cd3452f9ad4fb3396380303" + } + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "ebfcef3c96de412c83a278cb53e91b9f", + "m_Id": 4, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "ed32dfc7f2334cdf9ac4456617f109d1", + "m_Id": 0, + "m_DisplayName": "Alpha", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Alpha", + "m_StageCapability": 2, + "m_Value": 1.0, + "m_DefaultValue": 1.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "ef87bca36b854c578c1464cc3772ce00", + "m_Id": 1, + "m_DisplayName": "True", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "True", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "f077030810a8446689ac06e267b67bc5", + "m_Id": 0, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "f106aa412a964f48acdd5cf3380e3f05", + "m_Id": 0, + "m_DisplayName": "Time", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Time", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "f1bbc261bf4f4a418c8676b864fd3c61", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.PositionNode", + "m_ObjectId": "f27b0d53faa248debb4efc7ae53b003b", + "m_Group": { + "m_Id": "abf2a667c6764cd6962500927295a09e" + }, + "m_Name": "Position", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -196.99984741210938, + "y": -796.0, + "width": 205.9999237060547, + "height": 131.0 + } + }, + "m_Slots": [ + { + "m_Id": "49a6838e43e84150894da2c3da3ee6f4" + } + ], + "synonyms": [ + "location" + ], + "m_Precision": 1, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 2, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Space": 0, + "m_PositionSource": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.RedirectNodeData", + "m_ObjectId": "f3a28f88cdd94ca8a3eee9d9c1f72ada", + "m_Group": { + "m_Id": "" + }, + "m_Name": "Redirect Node", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 139.00001525878907, + "y": 149.99998474121095, + "width": 56.000091552734378, + "height": 23.999984741210939 + } + }, + "m_Slots": [ + { + "m_Id": "bd04254d03004723a7a37303d187c4d6" + }, + { + "m_Id": "cb9519f711804655974d9492e6244d07" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.RedirectNodeData", + "m_ObjectId": "f6f0ef0058fb4c49b781ba8655db5da5", + "m_Group": { + "m_Id": "" + }, + "m_Name": "Redirect Node", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -409.00006103515627, + "y": -133.9998779296875, + "width": 56.000091552734378, + "height": 24.0 + } + }, + "m_Slots": [ + { + "m_Id": "628b66c69a64413d99fc9eac1e8ed815" + }, + { + "m_Id": "36fc217a26fe4758bddbf376fde91e73" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "f8ff5c8e1ec34055ac7d46cafc88f902", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot", + "m_ObjectId": "f9a742d1e8474d509050a9378258bc40", + "m_Id": 0, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [], + "m_Channel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "faba8401ceaa42bdbf764081118aebd2", + "m_Id": 4, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "fb2955a6ed15464a96cffedc4c92d562", + "m_Title": "DEPTH FADE", + "m_Position": { + "x": -623.0, + "y": 245.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "fb566f5c17d447c3bcc0cc79e6a2bd8d", + "m_Title": "Particle System color", + "m_Position": { + "x": -1442.0, + "y": 10.999996185302735 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "fb7a37c95bfe46e599932e6feecb1333", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "fb880b7ebc034f63962aa5acca39b31c", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.AlphaClipThreshold", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 0.0, + "y": 0.0, + "width": 0.0, + "height": 0.0 + } + }, + "m_Slots": [ + { + "m_Id": "fda1d04dda8c47e0a85ef8682c26d9ce" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.AlphaClipThreshold" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "fcfe5e3bf69946c79758a34c55d841ce", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.RedirectNodeData", + "m_ObjectId": "fd0f359a0f2d4ce392723ec33f4170a3", + "m_Group": { + "m_Id": "241d2d9f0799457982e049afee554b6d" + }, + "m_Name": "Redirect Node", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -714.0001220703125, + "y": 156.00021362304688, + "width": 56.0001220703125, + "height": 24.0 + } + }, + "m_Slots": [ + { + "m_Id": "c5a5fa6859e5493f9a6a637ab3c67293" + }, + { + "m_Id": "003f14d153ee43808a74e123d785e3a5" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "fd6dac2eb5684f44b017c1784bea81d7", + "m_Group": { + "m_Id": "2d6bcdedabd24c4abc3ee860735c5a1c" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -1693.0001220703125, + "y": -475.99993896484377, + "width": 168.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "a9923baaf9d74852911e03f8fea426fa" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "bbbeff3f1cd3452f9ad4fb3396380303" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "fda1d04dda8c47e0a85ef8682c26d9ce", + "m_Id": 0, + "m_DisplayName": "Alpha Clip Threshold", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "AlphaClipThreshold", + "m_StageCapability": 2, + "m_Value": 0.5, + "m_DefaultValue": 0.5, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "fe4bf1ad4f384b029c82b38644ceee7e", + "m_Id": 3, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "feae6fbc8b7d4bce8bb0b3af46037ef5", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "feb7c633c98d4bd69c339473da0276ea", + "m_Id": 0, + "m_DisplayName": "In", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "In", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot", + "m_ObjectId": "ff4397b3a9de40a291187fb12a13a13d", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [] +} + diff --git a/Assets/06_Skills/VFX/Zyncope/shaders/zyn_shd_multifeature_00.shadergraph.meta b/Assets/06_Skills/VFX/Zyncope/shaders/zyn_shd_multifeature_00.shadergraph.meta new file mode 100644 index 0000000..3ab5ffa --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/shaders/zyn_shd_multifeature_00.shadergraph.meta @@ -0,0 +1,17 @@ +fileFormatVersion: 2 +guid: bdd4a740ba7ce7f4483af96b00c8d331 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 625f186215c104763be7675aa2d941aa, type: 3} +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/shaders/zyn_shd_multifeature_00.shadergraph + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/shaders/zyn_shd_tilemat.shadergraph b/Assets/06_Skills/VFX/Zyncope/shaders/zyn_shd_tilemat.shadergraph new file mode 100644 index 0000000..87d6b1e --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/shaders/zyn_shd_tilemat.shadergraph @@ -0,0 +1,2657 @@ +{ + "m_SGVersion": 3, + "m_Type": "UnityEditor.ShaderGraph.GraphData", + "m_ObjectId": "45c44dafa79d4d7bacf78c5adde51673", + "m_Properties": [ + { + "m_Id": "155f7b338f3e46a4b5b093d7084f61dc" + }, + { + "m_Id": "4b6c4ebe5f5a48298ac9368169719848" + }, + { + "m_Id": "14e018f8d2f84f37aec2c9cef265d184" + }, + { + "m_Id": "b142d7af159a48b1844376cdc525072f" + }, + { + "m_Id": "cecf64607c45491290531c691a9990f9" + }, + { + "m_Id": "f76aa41e352845759ffdf871f4f71680" + }, + { + "m_Id": "8824d719995d4298b7e11fb2ec252294" + }, + { + "m_Id": "421d2c6469444646b4575757eabb6c66" + } + ], + "m_Keywords": [], + "m_Dropdowns": [], + "m_CategoryData": [ + { + "m_Id": "97b23ed6511446c9adbc1f866ed3b736" + } + ], + "m_Nodes": [ + { + "m_Id": "4e5e91ffcbe14bebb7a58b0697ddeec4" + }, + { + "m_Id": "1021ef445f9c46fba8ae9a6864a5e896" + }, + { + "m_Id": "e0aa637d52e044c4b9264cfae5df574e" + }, + { + "m_Id": "c1adb59578a047e8882d4bd75160868e" + }, + { + "m_Id": "8b723da5f5e249d4bed1a25be4cce1f9" + }, + { + "m_Id": "7ebcaf1671d94c0aa2223de27fcc94c6" + }, + { + "m_Id": "27ab6f5dffb448caa98b33dc4743e7de" + }, + { + "m_Id": "4f55997cba0d4833b4dc4f3c4f88636b" + }, + { + "m_Id": "20b4b30ee3e840af9071dd398c770e59" + }, + { + "m_Id": "cf6608cf2e1a40238ac75739ff2d7257" + }, + { + "m_Id": "21fb6d5274ae4b1f98a61c8e26092726" + }, + { + "m_Id": "1f37044481df4211a65e458cec6ba728" + }, + { + "m_Id": "a87f65b1df254b54b58b4e88a7f7f6dd" + }, + { + "m_Id": "bbe537a99f9244619b80e0119475a236" + }, + { + "m_Id": "c8d318974a1a4e1d840b60feede4b343" + }, + { + "m_Id": "0cfb33e6300f449689ce8574d72a5a81" + }, + { + "m_Id": "8f6a1a4258824a45bdb90e6bae3caf69" + }, + { + "m_Id": "42fa0a7678424dbc82d5c35a5d9bf44e" + }, + { + "m_Id": "c52936afcf8248529672a88b6cbbe306" + }, + { + "m_Id": "1400bcddafe6499688aeb870102ea4ea" + }, + { + "m_Id": "dc95d71ea80744d2b3174411677c6344" + }, + { + "m_Id": "9e97172f8cbc4266b2540ef74860e61d" + }, + { + "m_Id": "6e30b2c6b8e0460888989fc641f1d09f" + }, + { + "m_Id": "0eb7d5a419b74e3baf471bbe9642287c" + } + ], + "m_GroupDatas": [], + "m_StickyNoteDatas": [], + "m_Edges": [ + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "0cfb33e6300f449689ce8574d72a5a81" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "7ebcaf1671d94c0aa2223de27fcc94c6" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "0eb7d5a419b74e3baf471bbe9642287c" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "4f55997cba0d4833b4dc4f3c4f88636b" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "1400bcddafe6499688aeb870102ea4ea" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "6e30b2c6b8e0460888989fc641f1d09f" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "1f37044481df4211a65e458cec6ba728" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "21fb6d5274ae4b1f98a61c8e26092726" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "21fb6d5274ae4b1f98a61c8e26092726" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "c52936afcf8248529672a88b6cbbe306" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "42fa0a7678424dbc82d5c35a5d9bf44e" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "c52936afcf8248529672a88b6cbbe306" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "6e30b2c6b8e0460888989fc641f1d09f" + }, + "m_SlotId": 3 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "a87f65b1df254b54b58b4e88a7f7f6dd" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "8f6a1a4258824a45bdb90e6bae3caf69" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "27ab6f5dffb448caa98b33dc4743e7de" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9e97172f8cbc4266b2540ef74860e61d" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "6e30b2c6b8e0460888989fc641f1d09f" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "a87f65b1df254b54b58b4e88a7f7f6dd" + }, + "m_SlotId": 3 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "21fb6d5274ae4b1f98a61c8e26092726" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "bbe537a99f9244619b80e0119475a236" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "1400bcddafe6499688aeb870102ea4ea" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "bbe537a99f9244619b80e0119475a236" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "6e30b2c6b8e0460888989fc641f1d09f" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "c52936afcf8248529672a88b6cbbe306" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "c1adb59578a047e8882d4bd75160868e" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "c8d318974a1a4e1d840b60feede4b343" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "a87f65b1df254b54b58b4e88a7f7f6dd" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "cf6608cf2e1a40238ac75739ff2d7257" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "a87f65b1df254b54b58b4e88a7f7f6dd" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "dc95d71ea80744d2b3174411677c6344" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "1400bcddafe6499688aeb870102ea4ea" + }, + "m_SlotId": 1 + } + } + ], + "m_VertexContext": { + "m_Position": { + "x": -118.0, + "y": -160.0 + }, + "m_Blocks": [ + { + "m_Id": "4e5e91ffcbe14bebb7a58b0697ddeec4" + }, + { + "m_Id": "1021ef445f9c46fba8ae9a6864a5e896" + }, + { + "m_Id": "e0aa637d52e044c4b9264cfae5df574e" + } + ] + }, + "m_FragmentContext": { + "m_Position": { + "x": -118.0, + "y": 72.0 + }, + "m_Blocks": [ + { + "m_Id": "c1adb59578a047e8882d4bd75160868e" + }, + { + "m_Id": "8b723da5f5e249d4bed1a25be4cce1f9" + }, + { + "m_Id": "7ebcaf1671d94c0aa2223de27fcc94c6" + }, + { + "m_Id": "27ab6f5dffb448caa98b33dc4743e7de" + }, + { + "m_Id": "4f55997cba0d4833b4dc4f3c4f88636b" + }, + { + "m_Id": "20b4b30ee3e840af9071dd398c770e59" + } + ] + }, + "m_PreviewData": { + "serializedMesh": { + "m_SerializedMesh": "{\"mesh\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "preventRotation": false + }, + "m_Path": "Shader Graphs", + "m_GraphPrecision": 1, + "m_PreviewMode": 2, + "m_OutputNode": { + "m_Id": "" + }, + "m_SubDatas": [], + "m_ActiveTargets": [ + { + "m_Id": "f797f4864f584274a50bba39a1076a2b" + } + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "048a15c3f40c4c80a0d1701e1126f581", + "m_Id": 0, + "m_DisplayName": "Ambient Occlusion", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Occlusion", + "m_StageCapability": 2, + "m_Value": 1.0, + "m_DefaultValue": 1.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.ColorRGBMaterialSlot", + "m_ObjectId": "04a232a952bf41d2b8c05c8d55e1b1e1", + "m_Id": 0, + "m_DisplayName": "Base Color", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "BaseColor", + "m_StageCapability": 2, + "m_Value": { + "x": 0.5, + "y": 0.5, + "z": 0.5 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [], + "m_ColorMode": 0, + "m_DefaultColor": { + "r": 0.5, + "g": 0.5, + "b": 0.5, + "a": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "0cfb33e6300f449689ce8574d72a5a81", + "m_Group": { + "m_Id": "" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -280.0, + "y": 190.0, + "width": 129.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "b479c459672b4b83ba294391b4c690e4" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "b142d7af159a48b1844376cdc525072f" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "0d006b964c794cd69f9b569bbd483b40", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "0eb7d5a419b74e3baf471bbe9642287c", + "m_Group": { + "m_Id": "" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -428.0, + "y": 275.0, + "width": 194.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "3598cc22284049d587afd667b3f524d5" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "421d2c6469444646b4575757eabb6c66" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "1021ef445f9c46fba8ae9a6864a5e896", + "m_Group": { + "m_Id": "" + }, + "m_Name": "VertexDescription.Normal", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 0.0, + "y": 0.0, + "width": 0.0, + "height": 0.0 + } + }, + "m_Slots": [ + { + "m_Id": "7ca0451bc56941dd92ea98e3ffa6f03d" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "VertexDescription.Normal" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "13c2d3f55ad14bdc9ef0e2d16826b13f", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "1400bcddafe6499688aeb870102ea4ea", + "m_Group": { + "m_Id": "" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -1140.0, + "y": 285.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "48cf1227c4534358a9a9d7a80bd122e8" + }, + { + "m_Id": "2998a14be3ee424d81eba1f65a5107d4" + }, + { + "m_Id": "4b18bd47a6b549d4982a5a8cbf79db3d" + } + ], + "synonyms": [ + "multiplication", + "times", + "x" + ], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector2ShaderProperty", + "m_ObjectId": "14e018f8d2f84f37aec2c9cef265d184", + "m_Guid": { + "m_GuidSerialized": "242c7e70-63fc-40bd-a604-5ac9f19fa135" + }, + "m_Name": "Offset Amount", + "m_DefaultRefNameVersion": 1, + "m_RefNameGeneratedByDisplayName": "Offset Amount", + "m_DefaultReferenceName": "_Offset_Amount", + "m_OverrideReferenceName": "", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Internal.Texture2DShaderProperty", + "m_ObjectId": "155f7b338f3e46a4b5b093d7084f61dc", + "m_Guid": { + "m_GuidSerialized": "afbc40a0-11f9-4c7b-b620-76b54c2207f8" + }, + "m_Name": "Main Tex", + "m_DefaultRefNameVersion": 1, + "m_RefNameGeneratedByDisplayName": "Main Tex", + "m_DefaultReferenceName": "_Main_Tex", + "m_OverrideReferenceName": "", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "m_SerializedTexture": "", + "m_Guid": "" + }, + "isMainTexture": false, + "useTilingAndOffset": false, + "m_Modifiable": true, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "175af4addae941eeb01e30e77c6d5f3e", + "m_Id": 2, + "m_DisplayName": "False", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "False", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "1c34e50af8464b84a9f4c4cf62377dbe", + "m_Id": 0, + "m_DisplayName": "Smoothness", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Smoothness", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.5, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "1f37044481df4211a65e458cec6ba728", + "m_Group": { + "m_Id": "" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -756.0, + "y": 15.0, + "width": 132.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "cda703553f754fd4866d0dcbbaca99ba" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "155f7b338f3e46a4b5b093d7084f61dc" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "20b4b30ee3e840af9071dd398c770e59", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.Occlusion", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 0.0, + "y": 0.0, + "width": 0.0, + "height": 0.0 + } + }, + "m_Slots": [ + { + "m_Id": "048a15c3f40c4c80a0d1701e1126f581" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.Occlusion" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode", + "m_ObjectId": "21fb6d5274ae4b1f98a61c8e26092726", + "m_Group": { + "m_Id": "" + }, + "m_Name": "Sample Texture 2D", + "m_DrawState": { + "m_Expanded": false, + "m_Position": { + "serializedVersion": "2", + "x": -608.0, + "y": 35.0, + "width": 180.0, + "height": 179.0 + } + }, + "m_Slots": [ + { + "m_Id": "65dca0b9ab304ef7a3e20e6356639c29" + }, + { + "m_Id": "cee1b1839e2e468db75b2553db661c5e" + }, + { + "m_Id": "ded33f06d04a4a399a9519fc7874a8ca" + }, + { + "m_Id": "a05878408a664f618d40837aa9719079" + }, + { + "m_Id": "8fe3ee49aba546e88ddc52606b70e2b6" + }, + { + "m_Id": "74402b847eb945e3a74de510a9535946" + }, + { + "m_Id": "d8406180958f4a41a8dc025e9776d6a4" + }, + { + "m_Id": "7f1dd2af85ff49c6a1566c8ff7972641" + } + ], + "synonyms": [ + "tex2d" + ], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_TextureType": 0, + "m_NormalMapSpace": 0, + "m_EnableGlobalMipBias": true, + "m_MipSamplingMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "2737255ed2284423aafbd48bf407f39c", + "m_Id": 1, + "m_DisplayName": "Sine Time", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Sine Time", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "27ab6f5dffb448caa98b33dc4743e7de", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.Smoothness", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 0.0, + "y": 0.0, + "width": 0.0, + "height": 0.0 + } + }, + "m_Slots": [ + { + "m_Id": "1c34e50af8464b84a9f4c4cf62377dbe" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.Smoothness" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "2998a14be3ee424d81eba1f65a5107d4", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "2fbd71bea074401a8139034f25e529cc", + "m_Id": 4, + "m_DisplayName": "Smooth Delta", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Smooth Delta", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "3598cc22284049d587afd667b3f524d5", + "m_Id": 0, + "m_DisplayName": "Additive Color Overlay", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "39f04085ebc943e89da608b64ccd1a40", + "m_Id": 0, + "m_DisplayName": "Tiling Amount", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "3ae9af851e264fad867da883676f54a8", + "m_Id": 2, + "m_DisplayName": "Offset", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Offset", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 3, + "m_Type": "UnityEditor.ShaderGraph.Internal.ColorShaderProperty", + "m_ObjectId": "421d2c6469444646b4575757eabb6c66", + "m_Guid": { + "m_GuidSerialized": "00a54c2a-dbb5-4f70-827c-ba82e494de7f" + }, + "m_Name": "Additive Color Overlay", + "m_DefaultRefNameVersion": 1, + "m_RefNameGeneratedByDisplayName": "Additive Color Overlay", + "m_DefaultReferenceName": "_Additive_Color_Overlay", + "m_OverrideReferenceName": "", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 1.0 + }, + "isMainColor": false, + "m_ColorMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "42fa0a7678424dbc82d5c35a5d9bf44e", + "m_Group": { + "m_Id": "" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -514.0, + "y": -13.0, + "width": 105.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "a0cc1775740e4a14a2e1ec513d77ba48" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "f76aa41e352845759ffdf871f4f71680" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "48cf1227c4534358a9a9d7a80bd122e8", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "4b18bd47a6b549d4982a5a8cbf79db3d", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector2ShaderProperty", + "m_ObjectId": "4b6c4ebe5f5a48298ac9368169719848", + "m_Guid": { + "m_GuidSerialized": "0522d526-7a9a-49ec-87fb-43f354831ea0" + }, + "m_Name": "Tiling Amount", + "m_DefaultRefNameVersion": 1, + "m_RefNameGeneratedByDisplayName": "Tiling Amount", + "m_DefaultReferenceName": "_Tiling_Amount", + "m_OverrideReferenceName": "", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "4e5e91ffcbe14bebb7a58b0697ddeec4", + "m_Group": { + "m_Id": "" + }, + "m_Name": "VertexDescription.Position", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 0.0, + "y": 0.0, + "width": 0.0, + "height": 0.0 + } + }, + "m_Slots": [ + { + "m_Id": "7812b0c53d50403dbcbde5ccea550172" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "VertexDescription.Position" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "4f55997cba0d4833b4dc4f3c4f88636b", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.Emission", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 0.0, + "y": 0.0, + "width": 0.0, + "height": 0.0 + } + }, + "m_Slots": [ + { + "m_Id": "d8d2c4615ffa492db815cae521b3fe92" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.Emission" +} + +{ + "m_SGVersion": 2, + "m_Type": "UnityEditor.Rendering.Universal.ShaderGraph.UniversalLitSubTarget", + "m_ObjectId": "601f761be6594cc48ccd552a20691303", + "m_WorkflowMode": 1, + "m_NormalDropOffSpace": 0, + "m_ClearCoat": false, + "m_BlendModePreserveSpecular": true +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "604aa1fbf9d84f7aa60b4c7b255301a8", + "m_Id": 0, + "m_DisplayName": "Offset Amount", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "65dca0b9ab304ef7a3e20e6356639c29", + "m_Id": 0, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BranchNode", + "m_ObjectId": "6e30b2c6b8e0460888989fc641f1d09f", + "m_Group": { + "m_Id": "" + }, + "m_Name": "Branch", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -982.0, + "y": 167.0, + "width": 172.0, + "height": 142.0 + } + }, + "m_Slots": [ + { + "m_Id": "c45725ce1a8b4c36b367a6d76dd6ccd3" + }, + { + "m_Id": "b4e7f3824d5e4632bcc483322126e484" + }, + { + "m_Id": "175af4addae941eeb01e30e77c6d5f3e" + }, + { + "m_Id": "cc5149c7859b455aa0c8b67ea34e3599" + } + ], + "synonyms": [ + "switch", + "if", + "else" + ], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "74402b847eb945e3a74de510a9535946", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "76e2d8a2b6c54cfe9e192bffecc4bd99", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PositionMaterialSlot", + "m_ObjectId": "7812b0c53d50403dbcbde5ccea550172", + "m_Id": 0, + "m_DisplayName": "Position", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Position", + "m_StageCapability": 1, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [], + "m_Space": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.NormalMaterialSlot", + "m_ObjectId": "7ca0451bc56941dd92ea98e3ffa6f03d", + "m_Id": 0, + "m_DisplayName": "Normal", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Normal", + "m_StageCapability": 1, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [], + "m_Space": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.NormalMaterialSlot", + "m_ObjectId": "7d1907f9f7074c81883f40a4ce7f085d", + "m_Id": 0, + "m_DisplayName": "Normal (Tangent Space)", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "NormalTS", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [], + "m_Space": 3 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "7ebcaf1671d94c0aa2223de27fcc94c6", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.Metallic", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 0.0, + "y": 0.0, + "width": 0.0, + "height": 0.0 + } + }, + "m_Slots": [ + { + "m_Id": "c18f189505ea4a65b9c1d83693075f86" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.Metallic" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "7ebe4b64b58247fb84c1fbc4dc0c9422", + "m_Id": 2, + "m_DisplayName": "Cosine Time", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Cosine Time", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot", + "m_ObjectId": "7f1dd2af85ff49c6a1566c8ff7972641", + "m_Id": 3, + "m_DisplayName": "Sampler", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Sampler", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BooleanMaterialSlot", + "m_ObjectId": "7f693a62d1ad42a6a413a6a5251a02a4", + "m_Id": 0, + "m_DisplayName": "Timed Offset?", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": false, + "m_DefaultValue": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Internal.BooleanShaderProperty", + "m_ObjectId": "8824d719995d4298b7e11fb2ec252294", + "m_Guid": { + "m_GuidSerialized": "a7d1b326-2b3b-4089-802b-97615f57b663" + }, + "m_Name": "Timed Offset?", + "m_DefaultRefNameVersion": 1, + "m_RefNameGeneratedByDisplayName": "Timed Offset?", + "m_DefaultReferenceName": "_Timed_Offset", + "m_OverrideReferenceName": "", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.TangentMaterialSlot", + "m_ObjectId": "89e61708ec974258a88cd27a8506f462", + "m_Id": 0, + "m_DisplayName": "Tangent", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Tangent", + "m_StageCapability": 1, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [], + "m_Space": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "8b723da5f5e249d4bed1a25be4cce1f9", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.NormalTS", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 0.0, + "y": 0.0, + "width": 0.0, + "height": 0.0 + } + }, + "m_Slots": [ + { + "m_Id": "7d1907f9f7074c81883f40a4ce7f085d" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.NormalTS" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "8f6a1a4258824a45bdb90e6bae3caf69", + "m_Group": { + "m_Id": "" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -291.0, + "y": 232.0, + "width": 140.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "fa864135e0534798bc85e787eb691dd9" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "cecf64607c45491290531c691a9990f9" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "8fe3ee49aba546e88ddc52606b70e2b6", + "m_Id": 7, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.CategoryData", + "m_ObjectId": "97b23ed6511446c9adbc1f866ed3b736", + "m_Name": "", + "m_ChildObjectList": [ + { + "m_Id": "155f7b338f3e46a4b5b093d7084f61dc" + }, + { + "m_Id": "4b6c4ebe5f5a48298ac9368169719848" + }, + { + "m_Id": "14e018f8d2f84f37aec2c9cef265d184" + }, + { + "m_Id": "b142d7af159a48b1844376cdc525072f" + }, + { + "m_Id": "cecf64607c45491290531c691a9990f9" + }, + { + "m_Id": "f76aa41e352845759ffdf871f4f71680" + }, + { + "m_Id": "8824d719995d4298b7e11fb2ec252294" + }, + { + "m_Id": "421d2c6469444646b4575757eabb6c66" + } + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "9e97172f8cbc4266b2540ef74860e61d", + "m_Group": { + "m_Id": "" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -1147.0, + "y": 167.0, + "width": 151.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "7f693a62d1ad42a6a413a6a5251a02a4" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "8824d719995d4298b7e11fb2ec252294" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "a05878408a664f618d40837aa9719079", + "m_Id": 6, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "a0cc1775740e4a14a2e1ec513d77ba48", + "m_Id": 0, + "m_DisplayName": "Color", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "a77e2c331ded4963b31b486065597f6f", + "m_Id": 0, + "m_DisplayName": "Time", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Time", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.TilingAndOffsetNode", + "m_ObjectId": "a87f65b1df254b54b58b4e88a7f7f6dd", + "m_Group": { + "m_Id": "" + }, + "m_Name": "Tiling And Offset", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -785.0, + "y": 59.0, + "width": 154.0, + "height": 142.0 + } + }, + "m_Slots": [ + { + "m_Id": "bff4334d42db4955814c2f3c0c5c13a4" + }, + { + "m_Id": "d52d15f861b84ce3ae974f7781de241a" + }, + { + "m_Id": "3ae9af851e264fad867da883676f54a8" + }, + { + "m_Id": "e92c40eb562747e9bf55971e8c0b966e" + } + ], + "synonyms": [ + "pan", + "scale" + ], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "b142d7af159a48b1844376cdc525072f", + "m_Guid": { + "m_GuidSerialized": "a929504c-7ffd-45ff-9827-6a9ea656d451" + }, + "m_Name": "Metalness", + "m_DefaultRefNameVersion": 1, + "m_RefNameGeneratedByDisplayName": "Metalness", + "m_DefaultReferenceName": "_Metalness", + "m_OverrideReferenceName": "", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 0, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "b479c459672b4b83ba294391b4c690e4", + "m_Id": 0, + "m_DisplayName": "Metalness", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "b4e7f3824d5e4632bcc483322126e484", + "m_Id": 1, + "m_DisplayName": "True", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "True", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "bbe537a99f9244619b80e0119475a236", + "m_Group": { + "m_Id": "" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -1310.0, + "y": 255.0, + "width": 153.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "604aa1fbf9d84f7aa60b4c7b255301a8" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "14e018f8d2f84f37aec2c9cef265d184" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot", + "m_ObjectId": "bff4334d42db4955814c2f3c0c5c13a4", + "m_Id": 0, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [], + "m_Channel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "c18f189505ea4a65b9c1d83693075f86", + "m_Id": 0, + "m_DisplayName": "Metallic", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Metallic", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "c1adb59578a047e8882d4bd75160868e", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.BaseColor", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 0.0, + "y": 0.0, + "width": 0.0, + "height": 0.0 + } + }, + "m_Slots": [ + { + "m_Id": "04a232a952bf41d2b8c05c8d55e1b1e1" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.BaseColor" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BooleanMaterialSlot", + "m_ObjectId": "c45725ce1a8b4c36b367a6d76dd6ccd3", + "m_Id": 0, + "m_DisplayName": "Predicate", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Predicate", + "m_StageCapability": 3, + "m_Value": false, + "m_DefaultValue": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "c52936afcf8248529672a88b6cbbe306", + "m_Group": { + "m_Id": "" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -391.0, + "y": 11.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "13c2d3f55ad14bdc9ef0e2d16826b13f" + }, + { + "m_Id": "cd9468319069454fbb3cd9e06230f517" + }, + { + "m_Id": "0d006b964c794cd69f9b569bbd483b40" + } + ], + "synonyms": [ + "multiplication", + "times", + "x" + ], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "c8d318974a1a4e1d840b60feede4b343", + "m_Group": { + "m_Id": "" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -953.0, + "y": 123.0, + "width": 149.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "39f04085ebc943e89da608b64ccd1a40" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "4b6c4ebe5f5a48298ac9368169719848" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "cc5149c7859b455aa0c8b67ea34e3599", + "m_Id": 3, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "cd9468319069454fbb3cd9e06230f517", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "cda703553f754fd4866d0dcbbaca99ba", + "m_Id": 0, + "m_DisplayName": "Main Tex", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "cecf64607c45491290531c691a9990f9", + "m_Guid": { + "m_GuidSerialized": "84ca8626-fe39-4d19-960f-1ed334e6d352" + }, + "m_Name": "Smoothness", + "m_DefaultRefNameVersion": 1, + "m_RefNameGeneratedByDisplayName": "Smoothness", + "m_DefaultReferenceName": "_Smoothness", + "m_OverrideReferenceName": "", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 0, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "cee1b1839e2e468db75b2553db661c5e", + "m_Id": 4, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVNode", + "m_ObjectId": "cf6608cf2e1a40238ac75739ff2d7257", + "m_Group": { + "m_Id": "" + }, + "m_Name": "UV", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -955.0, + "y": -17.0, + "width": 145.0, + "height": 129.0 + } + }, + "m_Slots": [ + { + "m_Id": "76e2d8a2b6c54cfe9e192bffecc4bd99" + } + ], + "synonyms": [ + "texcoords", + "coords", + "coordinates" + ], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_OutputChannel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "d52d15f861b84ce3ae974f7781de241a", + "m_Id": 1, + "m_DisplayName": "Tiling", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Tiling", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0 + }, + "m_DefaultValue": { + "x": 1.0, + "y": 1.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot", + "m_ObjectId": "d8406180958f4a41a8dc025e9776d6a4", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [], + "m_Channel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.ColorRGBMaterialSlot", + "m_ObjectId": "d8d2c4615ffa492db815cae521b3fe92", + "m_Id": 0, + "m_DisplayName": "Emission", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Emission", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [], + "m_ColorMode": 1, + "m_DefaultColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.TimeNode", + "m_ObjectId": "dc95d71ea80744d2b3174411677c6344", + "m_Group": { + "m_Id": "" + }, + "m_Name": "Time", + "m_DrawState": { + "m_Expanded": false, + "m_Position": { + "serializedVersion": "2", + "x": -1246.0, + "y": 339.0, + "width": 79.0, + "height": 77.0 + } + }, + "m_Slots": [ + { + "m_Id": "a77e2c331ded4963b31b486065597f6f" + }, + { + "m_Id": "2737255ed2284423aafbd48bf407f39c" + }, + { + "m_Id": "7ebe4b64b58247fb84c1fbc4dc0c9422" + }, + { + "m_Id": "f3a3f5187982404982391af9b56ae105" + }, + { + "m_Id": "2fbd71bea074401a8139034f25e529cc" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "ded33f06d04a4a399a9519fc7874a8ca", + "m_Id": 5, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "e0aa637d52e044c4b9264cfae5df574e", + "m_Group": { + "m_Id": "" + }, + "m_Name": "VertexDescription.Tangent", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 0.0, + "y": 0.0, + "width": 0.0, + "height": 0.0 + } + }, + "m_Slots": [ + { + "m_Id": "89e61708ec974258a88cd27a8506f462" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "VertexDescription.Tangent" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "e92c40eb562747e9bf55971e8c0b966e", + "m_Id": 3, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "f3a3f5187982404982391af9b56ae105", + "m_Id": 3, + "m_DisplayName": "Delta Time", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Delta Time", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 3, + "m_Type": "UnityEditor.ShaderGraph.Internal.ColorShaderProperty", + "m_ObjectId": "f76aa41e352845759ffdf871f4f71680", + "m_Guid": { + "m_GuidSerialized": "b9e98ea8-b5b2-4178-a664-c3029e39e459" + }, + "m_Name": "Color", + "m_DefaultRefNameVersion": 1, + "m_RefNameGeneratedByDisplayName": "Color", + "m_DefaultReferenceName": "_Color", + "m_OverrideReferenceName": "", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "isMainColor": false, + "m_ColorMode": 0 +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.Rendering.Universal.ShaderGraph.UniversalTarget", + "m_ObjectId": "f797f4864f584274a50bba39a1076a2b", + "m_Datas": [], + "m_ActiveSubTarget": { + "m_Id": "601f761be6594cc48ccd552a20691303" + }, + "m_AllowMaterialOverride": false, + "m_SurfaceType": 0, + "m_ZTestMode": 4, + "m_ZWriteControl": 0, + "m_AlphaMode": 0, + "m_RenderFace": 2, + "m_AlphaClip": false, + "m_CastShadows": true, + "m_ReceiveShadows": true, + "m_DisableTint": false, + "m_AdditionalMotionVectorMode": 0, + "m_AlembicMotionVectors": false, + "m_SupportsLODCrossFade": false, + "m_CustomEditorGUI": "", + "m_SupportVFX": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "fa864135e0534798bc85e787eb691dd9", + "m_Id": 0, + "m_DisplayName": "Smoothness", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + diff --git a/Assets/06_Skills/VFX/Zyncope/shaders/zyn_shd_tilemat.shadergraph.meta b/Assets/06_Skills/VFX/Zyncope/shaders/zyn_shd_tilemat.shadergraph.meta new file mode 100644 index 0000000..f8dad9e --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/shaders/zyn_shd_tilemat.shadergraph.meta @@ -0,0 +1,17 @@ +fileFormatVersion: 2 +guid: 5a2526b215923be439bf0987135b281a +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 625f186215c104763be7675aa2d941aa, type: 3} +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/shaders/zyn_shd_tilemat.shadergraph + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures.meta b/Assets/06_Skills/VFX/Zyncope/textures.meta new file mode 100644 index 0000000..d0054c8 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 15b5be53d7ecb17419483c34cfe44bec +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle.meta b/Assets/06_Skills/VFX/Zyncope/textures/magic circle.meta new file mode 100644 index 0000000..6b5520f --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c9bbcdd2f931400489acab78f58e8d69 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_arcane_core.png b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_arcane_core.png new file mode 100644 index 0000000..a524636 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_arcane_core.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0988fb159db20142500d6a5a27dce5a01130468a1f94de2bf847fa7adc5dbcf +size 309362 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_arcane_core.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_arcane_core.png.meta new file mode 100644 index 0000000..793e08d --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_arcane_core.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: 6fc133030a95c96499791ca0d4dffa88 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/magic circle/zyn_tex_magiccircle_arcane_core.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_arcane_outer.png b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_arcane_outer.png new file mode 100644 index 0000000..50080b3 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_arcane_outer.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25f201eebe815fa1a748a9f159c0c40d89b9c39dd026dd818d5903bd51238c7a +size 1858125 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_arcane_outer.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_arcane_outer.png.meta new file mode 100644 index 0000000..f12fe10 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_arcane_outer.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: 5b2ead3ec07f49c48a47aa79a9a292e8 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/magic circle/zyn_tex_magiccircle_arcane_outer.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_arcane_star.png b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_arcane_star.png new file mode 100644 index 0000000..a6ce986 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_arcane_star.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3de29672f41f8be758caa08be397bc3216878083905e818d911b66c8b0a9dc5e +size 710355 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_arcane_star.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_arcane_star.png.meta new file mode 100644 index 0000000..f80b792 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_arcane_star.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: 590e95a89646e9d41921e7bad28b330d +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/magic circle/zyn_tex_magiccircle_arcane_star.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_blood_core.png b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_blood_core.png new file mode 100644 index 0000000..2c66ebd --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_blood_core.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c0e469a2a0e764560d1f56ba78bfdceeb6d0088776e1a47e9e8924e78d7434d +size 511663 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_blood_core.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_blood_core.png.meta new file mode 100644 index 0000000..9521b47 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_blood_core.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: 3fbf7b6fdff0e81438213379ff787087 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/magic circle/zyn_tex_magiccircle_blood_core.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_blood_mid.png b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_blood_mid.png new file mode 100644 index 0000000..82439da --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_blood_mid.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bc0db3c806b3cc75535da50cf94a81083ff4177ee7ea43f4cf379ac11d157d5 +size 1032589 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_blood_mid.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_blood_mid.png.meta new file mode 100644 index 0000000..004d966 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_blood_mid.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: 66c00946dc1cb8f4a9bc23958815534c +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/magic circle/zyn_tex_magiccircle_blood_mid.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_blood_outer.png b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_blood_outer.png new file mode 100644 index 0000000..8355604 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_blood_outer.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8322947c242680cb875c20a3428f4f66b89c224707f531c9d6fbf2f5dba7794 +size 1263150 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_blood_outer.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_blood_outer.png.meta new file mode 100644 index 0000000..14c3009 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_blood_outer.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: 2329e1e6e291acb4da527a201f84fb9d +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/magic circle/zyn_tex_magiccircle_blood_outer.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_dark_core.png b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_dark_core.png new file mode 100644 index 0000000..0979526 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_dark_core.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f47a1145fdfab189f25a0d5e972864e5d95082132293d7f9eb897ebdaf821d7 +size 481379 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_dark_core.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_dark_core.png.meta new file mode 100644 index 0000000..b76b193 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_dark_core.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: 70418af84a299dd419c242fa81f5da00 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/magic circle/zyn_tex_magiccircle_dark_core.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_dark_outer.png b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_dark_outer.png new file mode 100644 index 0000000..55353f7 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_dark_outer.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6816118f40d33772de3aba271485aba3944fc0bf45fbd4aea14376d9d9390f1f +size 1352331 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_dark_outer.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_dark_outer.png.meta new file mode 100644 index 0000000..a37c7f8 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_dark_outer.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: 269f8d93b323851458f925591014de3a +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/magic circle/zyn_tex_magiccircle_dark_outer.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_dark_star.png b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_dark_star.png new file mode 100644 index 0000000..7fe17ee --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_dark_star.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2afb57250c5dd2581f5341c10a8a8168dc403c953138ec353b83c5ab8e1d14d3 +size 879268 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_dark_star.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_dark_star.png.meta new file mode 100644 index 0000000..d5991c3 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_dark_star.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: 20af25ad47bcc434c92ff6362f15a8ca +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/magic circle/zyn_tex_magiccircle_dark_star.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_death_core.png b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_death_core.png new file mode 100644 index 0000000..3f1d228 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_death_core.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:633b4ae7a82b0641087463433b0f430204f57a11bf6907c128605a75818b9233 +size 386682 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_death_core.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_death_core.png.meta new file mode 100644 index 0000000..8081010 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_death_core.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: 73fb95fa148463b48878d323fa64f7f2 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/magic circle/zyn_tex_magiccircle_death_core.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_death_middle.png b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_death_middle.png new file mode 100644 index 0000000..c5d0e22 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_death_middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0f7755ae8999618f4deda4733ec2583d0582215e769e9317f5752627e0f3188 +size 1487821 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_death_middle.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_death_middle.png.meta new file mode 100644 index 0000000..386d6e5 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_death_middle.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: 0af1bc684468de8419f6b4f690d96cea +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/magic circle/zyn_tex_magiccircle_death_middle.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_death_outer.png b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_death_outer.png new file mode 100644 index 0000000..ab35ee1 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_death_outer.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a4c9628c9fe1028afe88f3e1f34bfcccd7cd3bab1abc148fb717d6756b47fd0 +size 1363325 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_death_outer.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_death_outer.png.meta new file mode 100644 index 0000000..5481265 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_death_outer.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: f7357cb8cfbcc6641a20a8da611901db +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/magic circle/zyn_tex_magiccircle_death_outer.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_earth_core.png b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_earth_core.png new file mode 100644 index 0000000..f1ea5fe --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_earth_core.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:050fab33fa8547e00342d6b52ddd60823364047caed2053b4f5983a42ddce798 +size 207301 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_earth_core.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_earth_core.png.meta new file mode 100644 index 0000000..92c6adb --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_earth_core.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: 50484cbb58af41943859e78574219b59 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/magic circle/zyn_tex_magiccircle_earth_core.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_earth_outer.png b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_earth_outer.png new file mode 100644 index 0000000..7bcc029 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_earth_outer.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9697cab0f95020bce01470342c1b58e064e098acd9f025478c6bd8a292b17b16 +size 1523425 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_earth_outer.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_earth_outer.png.meta new file mode 100644 index 0000000..4535cbf --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_earth_outer.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: 49a65df1630279848a41642730093d1b +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/magic circle/zyn_tex_magiccircle_earth_outer.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_earth_secondaryinner.png b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_earth_secondaryinner.png new file mode 100644 index 0000000..b76ea31 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_earth_secondaryinner.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d38d8f5ba1025b4cf6e7dce7b6be7c66bd141e47b05ddbe7bd7dc43f2c57254b +size 875285 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_earth_secondaryinner.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_earth_secondaryinner.png.meta new file mode 100644 index 0000000..b5754da --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_earth_secondaryinner.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: 031244d7569e645409b9dd327a90e176 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/magic circle/zyn_tex_magiccircle_earth_secondaryinner.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_earth_secondaryouter.png b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_earth_secondaryouter.png new file mode 100644 index 0000000..7d5f573 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_earth_secondaryouter.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:448e1cb05d144ee08dc75f95a327ca09ab8ac99de302d16bacab9c6c080167ff +size 862061 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_earth_secondaryouter.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_earth_secondaryouter.png.meta new file mode 100644 index 0000000..5ff8bef --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_earth_secondaryouter.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: df8a99fa745e4fc4c912eececf5c1d00 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/magic circle/zyn_tex_magiccircle_earth_secondaryouter.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_flame_core.png b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_flame_core.png new file mode 100644 index 0000000..e888e19 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_flame_core.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bea2a6d9b16bd2e1599f3d9c170aa4eca4a826eb75be7994cd795c76f18a6d3e +size 739757 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_flame_core.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_flame_core.png.meta new file mode 100644 index 0000000..e9e5d2d --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_flame_core.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: 2021f53293bba6f448fcf458373a363e +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/magic circle/zyn_tex_magiccircle_flame_core.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_flame_outer.png b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_flame_outer.png new file mode 100644 index 0000000..174d2bd --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_flame_outer.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:147b9e9699f71b6df46f2a0ceae333febfc71435ca77652c70461d0866b3fd0a +size 561804 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_flame_outer.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_flame_outer.png.meta new file mode 100644 index 0000000..a3df2b9 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_flame_outer.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: 8a4d5519d64f6374c90ccc72cff14118 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/magic circle/zyn_tex_magiccircle_flame_outer.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_flame_secondary.png b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_flame_secondary.png new file mode 100644 index 0000000..e525f08 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_flame_secondary.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3890bc1c5dbe97a82e6bde34fbf1dc43dcea14201cd7e0c465e5ea02590f7309 +size 745870 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_flame_secondary.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_flame_secondary.png.meta new file mode 100644 index 0000000..f3d4f2a --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_flame_secondary.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: 253c5128d3245e04fbb5f0ace19a043a +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/magic circle/zyn_tex_magiccircle_flame_secondary.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_ice_core.png b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_ice_core.png new file mode 100644 index 0000000..631e753 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_ice_core.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc203c594cecac9f9538794e45f5b22cddd1b9f54883c7d374e96dbea7dbac2c +size 164098 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_ice_core.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_ice_core.png.meta new file mode 100644 index 0000000..b945b3f --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_ice_core.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: 12b41c773c3519545889848665923722 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/magic circle/zyn_tex_magiccircle_ice_core.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_ice_outer.png b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_ice_outer.png new file mode 100644 index 0000000..48557d7 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_ice_outer.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:776c06d780194228f42bb0ebc4e83b1a6544ab70a863b21b0eb3b5d924de5eeb +size 1331737 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_ice_outer.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_ice_outer.png.meta new file mode 100644 index 0000000..c13008f --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_ice_outer.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: de61739c819186e4f92bab1e7586c199 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/magic circle/zyn_tex_magiccircle_ice_outer.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_ice_secondary.png b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_ice_secondary.png new file mode 100644 index 0000000..65d7e96 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_ice_secondary.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97af183acf60b656cfe96252ee7cf23255d3f4dbfd9431e4069e5f844a8e5e2b +size 888453 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_ice_secondary.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_ice_secondary.png.meta new file mode 100644 index 0000000..dbd7903 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_ice_secondary.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: ad1c64ed2c140364e9c0ff8dce4226e5 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/magic circle/zyn_tex_magiccircle_ice_secondary.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_life_core.png b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_life_core.png new file mode 100644 index 0000000..b2133fb --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_life_core.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d15613090cd3dae905dabf3aa9462e70673bab215e291228018ad006afc28b30 +size 168426 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_life_core.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_life_core.png.meta new file mode 100644 index 0000000..0d69216 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_life_core.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: ea71e9f5364e5844da4cef723ef47f8f +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/magic circle/zyn_tex_magiccircle_life_core.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_life_mid.png b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_life_mid.png new file mode 100644 index 0000000..bc44470 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_life_mid.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc73e1d511d8b628158bf34d730050f1d377f73a597825eec7eae7a5b3f78903 +size 624069 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_life_mid.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_life_mid.png.meta new file mode 100644 index 0000000..5c0c16a --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_life_mid.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: 70d101ac6e1693646926e85d2e8678ac +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/magic circle/zyn_tex_magiccircle_life_mid.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_life_outer.png b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_life_outer.png new file mode 100644 index 0000000..f9c8fad --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_life_outer.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1236dd3ca064a6918c7939d5fc34ffece6519eefd9117cf9075966ff025f4c9c +size 1737392 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_life_outer.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_life_outer.png.meta new file mode 100644 index 0000000..9b8545e --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_life_outer.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: 5d89abca7bc16f04194d8483cde6c379 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/magic circle/zyn_tex_magiccircle_life_outer.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_light_core.png b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_light_core.png new file mode 100644 index 0000000..8a989be --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_light_core.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20c817697692b1f6a192dbf2704bd78f655b4646e967b110774a79380f40ea64 +size 642390 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_light_core.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_light_core.png.meta new file mode 100644 index 0000000..5214008 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_light_core.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: 4339a6694f8de9642b386ea61ba8b12a +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/magic circle/zyn_tex_magiccircle_light_core.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_light_outer.png b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_light_outer.png new file mode 100644 index 0000000..3a612e7 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_light_outer.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49ced365ffbc14994b5f8f31e24808d7c2cae3c0a9ac68949e915c8ed97ab63a +size 905195 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_light_outer.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_light_outer.png.meta new file mode 100644 index 0000000..7b06c09 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_light_outer.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: 8ce193253846ace4eb8f78942cdc61af +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/magic circle/zyn_tex_magiccircle_light_outer.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_light_secondary.png b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_light_secondary.png new file mode 100644 index 0000000..c13a510 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_light_secondary.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c52a3fc1a3050c4c606e812cd17dde945ca415319c09f7d5d58050d9eaa96159 +size 1193869 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_light_secondary.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_light_secondary.png.meta new file mode 100644 index 0000000..b3da766 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_light_secondary.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: 5d427bba543c2044a87c3580a45136f8 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/magic circle/zyn_tex_magiccircle_light_secondary.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_lightning_core.png b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_lightning_core.png new file mode 100644 index 0000000..62afae9 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_lightning_core.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63ebe15b844a7f3d478fc86733b61f38662fff8539db4ebd082400ba040e1ba6 +size 574802 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_lightning_core.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_lightning_core.png.meta new file mode 100644 index 0000000..0548eb9 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_lightning_core.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: ae8e11d53186ba04fae8a62150427fea +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/magic circle/zyn_tex_magiccircle_lightning_core.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_lightning_secondary.png b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_lightning_secondary.png new file mode 100644 index 0000000..a0c082b --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_lightning_secondary.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b5cea17f539613d897cac3b9a545f62e4b599cf98688cdd89fb54d8ff9f47b1 +size 1756205 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_lightning_secondary.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_lightning_secondary.png.meta new file mode 100644 index 0000000..ab2c2bc --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_lightning_secondary.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: f175f956663a1e74fa0efcb5cdc8df91 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/magic circle/zyn_tex_magiccircle_lightning_secondary.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_music_core.png b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_music_core.png new file mode 100644 index 0000000..e569cb9 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_music_core.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9ef3db2d54ea033657da832f69b006c64725d3736cfbed1b4d4441e62d181a5 +size 692948 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_music_core.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_music_core.png.meta new file mode 100644 index 0000000..fa5c19b --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_music_core.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: e50de9c4c45acd44893490622eb3f2e0 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/magic circle/zyn_tex_magiccircle_music_core.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_music_middle.png b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_music_middle.png new file mode 100644 index 0000000..7f9066d --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_music_middle.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2afcfc8390311a6140458e887879b9ab30d9a1ad0cdce78dfbbe1a34f7a41a8e +size 1668060 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_music_middle.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_music_middle.png.meta new file mode 100644 index 0000000..ed93e0d --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_music_middle.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: d64dfe7901e07cb4f81843e1b359e120 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/magic circle/zyn_tex_magiccircle_music_middle.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_music_outer.png b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_music_outer.png new file mode 100644 index 0000000..41877b2 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_music_outer.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a77cc93c5595dcc6cd6822592ccc845d5c274a873bdb169d00aae6afa10270ea +size 1712730 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_music_outer.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_music_outer.png.meta new file mode 100644 index 0000000..7530efc --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_music_outer.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: 4b4f0fc2ea2661c488ce32bdd1a6995f +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/magic circle/zyn_tex_magiccircle_music_outer.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_plant_outer.png b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_plant_outer.png new file mode 100644 index 0000000..d265453 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_plant_outer.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3c3b0722287cb6afd499720bd6ad1b23cae0867681569c8975f5b1b8119c30f +size 852382 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_plant_outer.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_plant_outer.png.meta new file mode 100644 index 0000000..39ee7c2 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_plant_outer.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: 39cd9a80025696740a3d1db8b7bd8b53 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/magic circle/zyn_tex_magiccircle_plant_outer.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_plant_rootsleaves.png b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_plant_rootsleaves.png new file mode 100644 index 0000000..cc4fa6f --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_plant_rootsleaves.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:415e287026fad10577534fb713ce8bfe975e06ae7e78f20ec49b7ebdc2d35e47 +size 2009699 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_plant_rootsleaves.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_plant_rootsleaves.png.meta new file mode 100644 index 0000000..455ad8f --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_plant_rootsleaves.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: 27e3e606fba42c0449d4982211273f5c +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/magic circle/zyn_tex_magiccircle_plant_rootsleaves.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_plant_rosecore.png b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_plant_rosecore.png new file mode 100644 index 0000000..c037fcb --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_plant_rosecore.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96608eb66eca2429a725bb00e2e500f7002271d8b78aaa12c6747eb771e5e22f +size 240446 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_plant_rosecore.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_plant_rosecore.png.meta new file mode 100644 index 0000000..13986be --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_plant_rosecore.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: 137d2e114bed25046a6c5e260c18c8f4 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/magic circle/zyn_tex_magiccircle_plant_rosecore.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_poison_core.png b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_poison_core.png new file mode 100644 index 0000000..5f0a39d --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_poison_core.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89178529208f11de2e715b4f02d272fe83fa6e317a59fe9db3b1be68cb5e75d3 +size 267549 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_poison_core.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_poison_core.png.meta new file mode 100644 index 0000000..73acf87 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_poison_core.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: d26798c7082a01e4c960181128ca9cb8 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/magic circle/zyn_tex_magiccircle_poison_core.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_poison_mid.png b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_poison_mid.png new file mode 100644 index 0000000..207852d --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_poison_mid.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13ec8d51225e713b214d7daecffda4d8847b4a6394748dd3eade09490620e221 +size 1028573 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_poison_mid.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_poison_mid.png.meta new file mode 100644 index 0000000..151c15c --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_poison_mid.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: 7a5a5404ce0b3dd44ad9ae9995a8b92b +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/magic circle/zyn_tex_magiccircle_poison_mid.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_poison_outer.png b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_poison_outer.png new file mode 100644 index 0000000..f4de555 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_poison_outer.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:976a92fecf5490c18a40f56789a0cb1260b7d705a4842db0c7fdba03d6029df8 +size 1425277 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_poison_outer.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_poison_outer.png.meta new file mode 100644 index 0000000..ba2d0c1 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_poison_outer.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: d21916581c02af546bd598a4c9e2691c +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/magic circle/zyn_tex_magiccircle_poison_outer.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_water_core.png b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_water_core.png new file mode 100644 index 0000000..6e29534 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_water_core.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8053491a103bf94b61046256d6d2000eefce5e1267ef49bb2d079ea2d3fafb9 +size 226681 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_water_core.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_water_core.png.meta new file mode 100644 index 0000000..cc93a02 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_water_core.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: 46f807e430f70b141a74e68213fa3c85 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/magic circle/zyn_tex_magiccircle_water_core.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_water_outer.png b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_water_outer.png new file mode 100644 index 0000000..93aba50 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_water_outer.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e8277e5cfebe801ff59711e6a198ee22780ef35e9273cf0181ef12fe769e3bd +size 1480246 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_water_outer.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_water_outer.png.meta new file mode 100644 index 0000000..574c7c6 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_water_outer.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: 11b22bc8746d263479c480597f3f3fd8 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/magic circle/zyn_tex_magiccircle_water_outer.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_water_secondary.png b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_water_secondary.png new file mode 100644 index 0000000..3ed35f1 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_water_secondary.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:948554295d03d6637e0e880c8ac6a5e63300ff47b1d4c3e6d8e782ecba1e3183 +size 899999 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_water_secondary.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_water_secondary.png.meta new file mode 100644 index 0000000..4da9bda --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_water_secondary.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: 462410147f21af74e9fa3bdacada4a1b +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/magic circle/zyn_tex_magiccircle_water_secondary.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_wind_core.png b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_wind_core.png new file mode 100644 index 0000000..b915304 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_wind_core.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e04d85954ca557fe5514c9af474e3fd097e8fa331931159fb9e242c7da14a7ff +size 218542 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_wind_core.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_wind_core.png.meta new file mode 100644 index 0000000..e3bf358 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_wind_core.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: a8e2de51e6c9a8f4f9e8dfc60c7854bf +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/magic circle/zyn_tex_magiccircle_wind_core.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_wind_outer.png b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_wind_outer.png new file mode 100644 index 0000000..49fc824 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_wind_outer.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e02b70614b4977cf19460c35fe9cc2e75ef4c1a033ca847a5c055a416315fa1e +size 1304516 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_wind_outer.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_wind_outer.png.meta new file mode 100644 index 0000000..e492e7c --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_wind_outer.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: fb5fdca4184871449915e98ac2288572 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/magic circle/zyn_tex_magiccircle_wind_outer.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_wind_secondary.png b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_wind_secondary.png new file mode 100644 index 0000000..51fac1c --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_wind_secondary.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8224fc1007d685c29586d1f9778e1873a087da346b8d90e538d415cdda6d2d30 +size 442731 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_wind_secondary.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_wind_secondary.png.meta new file mode 100644 index 0000000..8bc39d2 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/magic circle/zyn_tex_magiccircle_wind_secondary.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: 479fe2eb9a8219347beec3e7b567c1a7 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/magic circle/zyn_tex_magiccircle_wind_secondary.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/noise.meta b/Assets/06_Skills/VFX/Zyncope/textures/noise.meta new file mode 100644 index 0000000..2220252 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/noise.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a3dcffa8f20c81145bf90340cc66b3bb +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/06_Skills/VFX/Zyncope/textures/noise/zyn_tex_noise_01.png b/Assets/06_Skills/VFX/Zyncope/textures/noise/zyn_tex_noise_01.png new file mode 100644 index 0000000..64cb396 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/noise/zyn_tex_noise_01.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f568c8779d83153d29569d459216f48c0efb208a972a29bdb6ff0f8c5cd7437 +size 3006634 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/noise/zyn_tex_noise_01.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/noise/zyn_tex_noise_01.png.meta new file mode 100644 index 0000000..6abaa37 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/noise/zyn_tex_noise_01.png.meta @@ -0,0 +1,134 @@ +fileFormatVersion: 2 +guid: 5039867e295193d4a8904b2dcb833608 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/noise/zyn_tex_noise_01.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/noise/zyn_tex_noise_03.png b/Assets/06_Skills/VFX/Zyncope/textures/noise/zyn_tex_noise_03.png new file mode 100644 index 0000000..17bfdc1 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/noise/zyn_tex_noise_03.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71e882621fd728d0d9d800e7371ff0c145a879b6a27340369d9e5ad026d3ee1d +size 2276964 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/noise/zyn_tex_noise_03.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/noise/zyn_tex_noise_03.png.meta new file mode 100644 index 0000000..9d5732b --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/noise/zyn_tex_noise_03.png.meta @@ -0,0 +1,134 @@ +fileFormatVersion: 2 +guid: d895725151c4eeb458f9a342d82278ef +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/noise/zyn_tex_noise_03.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/noise/zyn_tex_noise_06.png b/Assets/06_Skills/VFX/Zyncope/textures/noise/zyn_tex_noise_06.png new file mode 100644 index 0000000..e79619c --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/noise/zyn_tex_noise_06.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec91ef0378418de98c3df27eef1c63560da678729eb386555e3a4cbd41d3e512 +size 1694701 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/noise/zyn_tex_noise_06.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/noise/zyn_tex_noise_06.png.meta new file mode 100644 index 0000000..2288b9f --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/noise/zyn_tex_noise_06.png.meta @@ -0,0 +1,134 @@ +fileFormatVersion: 2 +guid: 9726d8ba98c90a7499397b3da9f57820 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/noise/zyn_tex_noise_06.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/noise/zyn_tex_noise_07.png b/Assets/06_Skills/VFX/Zyncope/textures/noise/zyn_tex_noise_07.png new file mode 100644 index 0000000..2a340e7 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/noise/zyn_tex_noise_07.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad9588709104062c1f8c4055b79cf3dc880502e9b2baad8aa76587705651a1c4 +size 1759258 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/noise/zyn_tex_noise_07.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/noise/zyn_tex_noise_07.png.meta new file mode 100644 index 0000000..4d9ad31 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/noise/zyn_tex_noise_07.png.meta @@ -0,0 +1,134 @@ +fileFormatVersion: 2 +guid: 1c310c211fd69254d84debfb44625ffc +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/noise/zyn_tex_noise_07.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/noise/zyn_tex_noise_10.png b/Assets/06_Skills/VFX/Zyncope/textures/noise/zyn_tex_noise_10.png new file mode 100644 index 0000000..f9d8796 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/noise/zyn_tex_noise_10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:978814e87b7c69dab193d74b9ca65300f4cf75955331d0f29acb00bbb1eb5e60 +size 1771985 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/noise/zyn_tex_noise_10.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/noise/zyn_tex_noise_10.png.meta new file mode 100644 index 0000000..fa57351 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/noise/zyn_tex_noise_10.png.meta @@ -0,0 +1,134 @@ +fileFormatVersion: 2 +guid: c62d4151e068863409b79312c1e7bc95 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/noise/zyn_tex_noise_10.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/noise/zyn_tex_noise_13.png b/Assets/06_Skills/VFX/Zyncope/textures/noise/zyn_tex_noise_13.png new file mode 100644 index 0000000..b58e456 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/noise/zyn_tex_noise_13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a05837f7584f560bd97d31fa8e3165ebbcab4fbdec84c2858bfb87e83697719 +size 2150837 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/noise/zyn_tex_noise_13.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/noise/zyn_tex_noise_13.png.meta new file mode 100644 index 0000000..6848e85 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/noise/zyn_tex_noise_13.png.meta @@ -0,0 +1,134 @@ +fileFormatVersion: 2 +guid: b137d6010ed4a2f49ae52f291e1252be +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/noise/zyn_tex_noise_13.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/noise/zyn_tex_noise_16.png b/Assets/06_Skills/VFX/Zyncope/textures/noise/zyn_tex_noise_16.png new file mode 100644 index 0000000..95ed11a --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/noise/zyn_tex_noise_16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4d9fd192e12f6296456473e160b96e725c7077ecc2ac24f882692fcc4495551 +size 2993337 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/noise/zyn_tex_noise_16.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/noise/zyn_tex_noise_16.png.meta new file mode 100644 index 0000000..e2accf1 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/noise/zyn_tex_noise_16.png.meta @@ -0,0 +1,134 @@ +fileFormatVersion: 2 +guid: 1246ed301dcc8294485d18f446d96007 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/noise/zyn_tex_noise_16.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/noise/zyn_tex_noise_18.png b/Assets/06_Skills/VFX/Zyncope/textures/noise/zyn_tex_noise_18.png new file mode 100644 index 0000000..54a33ab --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/noise/zyn_tex_noise_18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09a7863dab1a2a85a546b012ca2c3058d37b0f9794d85e2d1ce091765bfd1487 +size 3314700 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/noise/zyn_tex_noise_18.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/noise/zyn_tex_noise_18.png.meta new file mode 100644 index 0000000..e0850fb --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/noise/zyn_tex_noise_18.png.meta @@ -0,0 +1,134 @@ +fileFormatVersion: 2 +guid: cb9418db250be7d4982e068711685d33 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/noise/zyn_tex_noise_18.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_bubbles_green_2x2.png b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_bubbles_green_2x2.png new file mode 100644 index 0000000..2c33a76 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_bubbles_green_2x2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d584efb1901f759ba3f344d851ad2c7d2fc6ee628ba17bfd72f3409da11effdb +size 503998 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_bubbles_green_2x2.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_bubbles_green_2x2.png.meta new file mode 100644 index 0000000..e0fafe6 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_bubbles_green_2x2.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: c66f4d36e5baf014b8a9d33945ed0a4e +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/zyn_tex_bubbles_green_2x2.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_direction_dust_02.png b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_direction_dust_02.png new file mode 100644 index 0000000..8f18c92 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_direction_dust_02.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f251e85ea9f6cc1c803dc4584c92b7f93463c464dc9f83e8ec0bfaf8229bced8 +size 180381 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_direction_dust_02.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_direction_dust_02.png.meta new file mode 100644 index 0000000..94ad046 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_direction_dust_02.png.meta @@ -0,0 +1,134 @@ +fileFormatVersion: 2 +guid: e6c9d2e38532d6b4283b4dde5d7e4f65 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/zyn_tex_direction_dust_02.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_direction_dust_03.png b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_direction_dust_03.png new file mode 100644 index 0000000..e69539b --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_direction_dust_03.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2a1f6283a54612560c2706d0060b6e17665cecba4ecb7226758f9c426ff65e1 +size 427717 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_direction_dust_03.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_direction_dust_03.png.meta new file mode 100644 index 0000000..542338b --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_direction_dust_03.png.meta @@ -0,0 +1,134 @@ +fileFormatVersion: 2 +guid: 654d1d700baf2794aae900f7223dabfa +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/zyn_tex_direction_dust_03.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_droplet_blood.png b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_droplet_blood.png new file mode 100644 index 0000000..0420caa --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_droplet_blood.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe7f7f0bc01f032ad842a08f6029df57e16b230bb30af7940c86a59cb630c648 +size 246595 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_droplet_blood.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_droplet_blood.png.meta new file mode 100644 index 0000000..a641afd --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_droplet_blood.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: d342a2943b113ba44bfa08d7bb8a7bee +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/zyn_tex_droplet_blood.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_droplet_posion.png b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_droplet_posion.png new file mode 100644 index 0000000..cb5ef7e --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_droplet_posion.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffe93bb1dc02008722b67632ae57ba7780874f65f1f52c00a1335c255b761792 +size 245980 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_droplet_posion.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_droplet_posion.png.meta new file mode 100644 index 0000000..2ea0f5a --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_droplet_posion.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: 7878655974d37074dbb1ee48263ad8cc +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/zyn_tex_droplet_posion.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_droplet_water.png b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_droplet_water.png new file mode 100644 index 0000000..0296f43 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_droplet_water.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:646a38f4431c6fb16ee525236e969908060e323c6e3343283992f0e9126cc784 +size 220610 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_droplet_water.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_droplet_water.png.meta new file mode 100644 index 0000000..84f8f37 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_droplet_water.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: 320b78e1e3900334ab1672d40e68afb2 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/zyn_tex_droplet_water.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_hard.png b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_hard.png new file mode 100644 index 0000000..0fdd0c5 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_hard.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f0f95e07468df05102c6f924f5cde8501eb1dff7afd01a88e9c52d19dae508d +size 299532 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_hard.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_hard.png.meta new file mode 100644 index 0000000..399e9fc --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_hard.png.meta @@ -0,0 +1,134 @@ +fileFormatVersion: 2 +guid: 75acfe63e6938ee469f03bef017751a2 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/zyn_tex_glow_hard.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_horizontal_01.png b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_horizontal_01.png new file mode 100644 index 0000000..69fd438 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_horizontal_01.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e0886e6067496b1a25aa38a286da3c5b23f96da05b7a8cc264a32fd4449ec8b +size 141684 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_horizontal_01.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_horizontal_01.png.meta new file mode 100644 index 0000000..6dd0e60 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_horizontal_01.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: 9d2742900a2c423409d82659ff33181b +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/zyn_tex_glow_horizontal_01.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_soft.png b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_soft.png new file mode 100644 index 0000000..ab0ab44 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_soft.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73978c7e416fd1870f5dc69c1d9d70f44ab7bc16177d3dade2bd5885f4647b32 +size 494071 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_soft.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_soft.png.meta new file mode 100644 index 0000000..b7cd5fb --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_soft.png.meta @@ -0,0 +1,134 @@ +fileFormatVersion: 2 +guid: f7b97393870dfcc48b60123336abe597 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/zyn_tex_glow_soft.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_soft_black_purple.png b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_soft_black_purple.png new file mode 100644 index 0000000..7f210f8 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_soft_black_purple.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9154d7025fd33d196bb2dd591e271230ccd1ebbf29f4aba400fcfb48fbdc0968 +size 325935 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_soft_black_purple.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_soft_black_purple.png.meta new file mode 100644 index 0000000..842142d --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_soft_black_purple.png.meta @@ -0,0 +1,134 @@ +fileFormatVersion: 2 +guid: 55a14143fb0e26140bf99af289e30dc0 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/zyn_tex_glow_soft_black_purple.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_soft_blue.png b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_soft_blue.png new file mode 100644 index 0000000..260f3b3 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_soft_blue.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b21b9a68d7c153bd2358111bf5574e9427f3fb80a186a1e6a9c397045d0bbb80 +size 334159 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_soft_blue.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_soft_blue.png.meta new file mode 100644 index 0000000..b620d20 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_soft_blue.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: 3b93774a0232dfa45af34c64ca9ab58b +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/zyn_tex_glow_soft_blue.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_soft_green.png b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_soft_green.png new file mode 100644 index 0000000..37f2fc6 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_soft_green.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b56dc7016756bb4067428c843175b9e0f628f23f45932ca15cf8442317d5b00 +size 343749 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_soft_green.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_soft_green.png.meta new file mode 100644 index 0000000..80fb22b --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_soft_green.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: d83f97d016b35e64d9a5e5825241aa53 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/zyn_tex_glow_soft_green.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_soft_purple.png b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_soft_purple.png new file mode 100644 index 0000000..4a51fba --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_soft_purple.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0c076496ad9e7055b9aa60b5f5a9ce7915da2ee64693f892af542cc26f57c6e +size 297055 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_soft_purple.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_soft_purple.png.meta new file mode 100644 index 0000000..4230ac3 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_soft_purple.png.meta @@ -0,0 +1,134 @@ +fileFormatVersion: 2 +guid: 7313069236677ca4c94de17ab6b22e52 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/zyn_tex_glow_soft_purple.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_soft_rainbow.png b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_soft_rainbow.png new file mode 100644 index 0000000..05da263 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_soft_rainbow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:135c69548f7a947bead880a0595c9c0d185916db7d15c2247c2b09d07d7409ae +size 1416804 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_soft_rainbow.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_soft_rainbow.png.meta new file mode 100644 index 0000000..efa1c6f --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_soft_rainbow.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: c00c0825919beb84d8a0ba045d6ade7f +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/zyn_tex_glow_soft_rainbow.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_soft_rainbow_linear.png b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_soft_rainbow_linear.png new file mode 100644 index 0000000..02cd95b --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_soft_rainbow_linear.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a50947856bff8d2637ef971dc84740de6b63dd6b9a3e9fe96aeece4518b9221 +size 398664 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_soft_rainbow_linear.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_soft_rainbow_linear.png.meta new file mode 100644 index 0000000..8bac433 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_soft_rainbow_linear.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: 9a5abd1c796d7e542b4e968729381ad1 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/zyn_tex_glow_soft_rainbow_linear.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_soft_red.png b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_soft_red.png new file mode 100644 index 0000000..00bdcc0 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_soft_red.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37d3173174c755d78b90c9af3c413cef409deaf071bd3c39c9df062ddf1bd43b +size 341208 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_soft_red.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_soft_red.png.meta new file mode 100644 index 0000000..de9d849 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_soft_red.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: ef8ae1625c5afee4ebb6b69282a3e670 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/zyn_tex_glow_soft_red.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_soft_teal.png b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_soft_teal.png new file mode 100644 index 0000000..67e6c9e --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_soft_teal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a211692711b4da8342a37e3945e02081a7390f975c2979a7f5f4e2de0ef720f8 +size 440664 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_soft_teal.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_soft_teal.png.meta new file mode 100644 index 0000000..1438b51 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_soft_teal.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: 65677aadfad83b644b3334b4b96857a3 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/zyn_tex_glow_soft_teal.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_soft_yellowcore_orange.png b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_soft_yellowcore_orange.png new file mode 100644 index 0000000..7599b0f --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_soft_yellowcore_orange.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b920fe87b69d3726d0e4cb7d2102c5f2abbcea1c6f4d53ac66309b100c9ed6f9 +size 281541 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_soft_yellowcore_orange.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_soft_yellowcore_orange.png.meta new file mode 100644 index 0000000..d3ae2bc --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_glow_soft_yellowcore_orange.png.meta @@ -0,0 +1,134 @@ +fileFormatVersion: 2 +guid: da258b94c85ca6247ac350bc30b05dad +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/zyn_tex_glow_soft_yellowcore_orange.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_grid.png b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_grid.png new file mode 100644 index 0000000..22b37e2 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_grid.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6b6f037df1cf147158b6fb113da8ca55a9e217948e90914f644f7237958c738 +size 125051 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_grid.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_grid.png.meta new file mode 100644 index 0000000..73b91e9 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_grid.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: e935b85594b3fbb459e59f04785b4f6c +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 2 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/zyn_tex_grid.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_leaves_01_2x2.png b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_leaves_01_2x2.png new file mode 100644 index 0000000..4a3f859 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_leaves_01_2x2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11b940bdc215558b393f77487fe50923a457999d88a754ed9ecd094d2ec5406f +size 718052 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_leaves_01_2x2.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_leaves_01_2x2.png.meta new file mode 100644 index 0000000..99e7e0d --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_leaves_01_2x2.png.meta @@ -0,0 +1,134 @@ +fileFormatVersion: 2 +guid: 3a4baefb6008e1447a9e54d6a23fed2e +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/zyn_tex_leaves_01_2x2.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_lightningbolts_long_yellow_1x4.png b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_lightningbolts_long_yellow_1x4.png new file mode 100644 index 0000000..648a19d --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_lightningbolts_long_yellow_1x4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5b0389fcf4aab42a1a41648a6d846a895e131a7a9b17c456760f66ee77f4e8b +size 942716 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_lightningbolts_long_yellow_1x4.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_lightningbolts_long_yellow_1x4.png.meta new file mode 100644 index 0000000..b853ce4 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_lightningbolts_long_yellow_1x4.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: 0ff7b340d4ca06b4e8084d60964b78b4 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/zyn_tex_lightningbolts_long_yellow_1x4.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_lightningsparks_yellow_2x2.png b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_lightningsparks_yellow_2x2.png new file mode 100644 index 0000000..308c042 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_lightningsparks_yellow_2x2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b148605edf2931990ef5feee28263f3bd489b7238d82d0399e29ce2f5f8f1f04 +size 386550 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_lightningsparks_yellow_2x2.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_lightningsparks_yellow_2x2.png.meta new file mode 100644 index 0000000..3508283 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_lightningsparks_yellow_2x2.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: 7b31d440f0a97d444862aabfaff7ae8d +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/zyn_tex_lightningsparks_yellow_2x2.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_lightray_01.png b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_lightray_01.png new file mode 100644 index 0000000..d60221a --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_lightray_01.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:616aaad0aafda8d7b1dec14c8933006a8f4fc4ec52a74ada96789f27b7ed84f4 +size 18940 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_lightray_01.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_lightray_01.png.meta new file mode 100644 index 0000000..4686b23 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_lightray_01.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: 71f2214ed6a32944781cfb5333b5d22f +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/zyn_tex_lightray_01.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_lightray_03.png b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_lightray_03.png new file mode 100644 index 0000000..891c313 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_lightray_03.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32887389a3fb2f9b00e3b567275d5465b39643638a1194713eb21975685300d7 +size 272296 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_lightray_03.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_lightray_03.png.meta new file mode 100644 index 0000000..fcffd4e --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_lightray_03.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: 4099d9bbe375ca64b90af810fc990a94 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/zyn_tex_lightray_03.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_lightray_04.png b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_lightray_04.png new file mode 100644 index 0000000..5555977 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_lightray_04.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4913d5c4c2ec245c8b87b3cc0864c28a3e206d194fd1228764254b262f81286 +size 197588 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_lightray_04.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_lightray_04.png.meta new file mode 100644 index 0000000..3a15797 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_lightray_04.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: e145935d5a471ec4caa3aeacd3810ded +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/zyn_tex_lightray_04.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_lightray_05.png b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_lightray_05.png new file mode 100644 index 0000000..69ea3ef --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_lightray_05.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be16a846db2b48a757328aec850d0016ba6f79d22b80dde9354f0164f7979f72 +size 77382 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_lightray_05.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_lightray_05.png.meta new file mode 100644 index 0000000..4fe296d --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_lightray_05.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: 3e991a5dad5e56c4692fdbc79759aefe +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/zyn_tex_lightray_05.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_multibits_2x2.png b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_multibits_2x2.png new file mode 100644 index 0000000..946d543 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_multibits_2x2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04831e8c91e7bd578365ababa1703475e0bf7500b28c0b1edd547db117cec892 +size 97658 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_multibits_2x2.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_multibits_2x2.png.meta new file mode 100644 index 0000000..30fd9c1 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_multibits_2x2.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: bf6d8c973b217054bae2049c7e0e2e73 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/zyn_tex_multibits_2x2.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_musicalnotes_3x3.png b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_musicalnotes_3x3.png new file mode 100644 index 0000000..a792349 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_musicalnotes_3x3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9b91a3ea2695ee5fcc04e085081f646e2c8d1f39f06935873dbb5a43c29b9ce +size 339262 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_musicalnotes_3x3.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_musicalnotes_3x3.png.meta new file mode 100644 index 0000000..b497dde --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_musicalnotes_3x3.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: 12882a56496973245a69f0207e452f2c +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/zyn_tex_musicalnotes_3x3.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_musicbar_rainbow.png b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_musicbar_rainbow.png new file mode 100644 index 0000000..820136c --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_musicbar_rainbow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3429bbfc31ab1a825cdd112097a54c936650ebc43c8fd319f515a1cbdfe77dca +size 94076 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_musicbar_rainbow.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_musicbar_rainbow.png.meta new file mode 100644 index 0000000..e7a1745 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_musicbar_rainbow.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: 3b4c907d9f3dea44e93bcfbd5ccb1fa6 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/zyn_tex_musicbar_rainbow.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_petals_01_2x2.png b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_petals_01_2x2.png new file mode 100644 index 0000000..b8a2f58 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_petals_01_2x2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd44586e5f46393341cd1fe774039966aa9ccee218adf271303cbdf9462f9802 +size 459572 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_petals_01_2x2.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_petals_01_2x2.png.meta new file mode 100644 index 0000000..14866ec --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_petals_01_2x2.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: 5e108de439625e64ca78cf2b6f9c0f33 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/zyn_tex_petals_01_2x2.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_ring_speed_02.png b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_ring_speed_02.png new file mode 100644 index 0000000..47904cb --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_ring_speed_02.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbb99f8ad27fc80a3bbb493d0512405a06481f857bd68897067fa54bb6a4e526 +size 532532 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_ring_speed_02.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_ring_speed_02.png.meta new file mode 100644 index 0000000..767216f --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_ring_speed_02.png.meta @@ -0,0 +1,134 @@ +fileFormatVersion: 2 +guid: c9a0c028ffcb02341b8a4fd15dcb3af2 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/zyn_tex_ring_speed_02.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_rock_3x3.png b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_rock_3x3.png new file mode 100644 index 0000000..00f4d9d --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_rock_3x3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef77ea9e1d4ca72fb1c27bb6d72893cef7e3424f62993c8eabb90196c83b7006 +size 422313 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_rock_3x3.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_rock_3x3.png.meta new file mode 100644 index 0000000..ba87733 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_rock_3x3.png.meta @@ -0,0 +1,134 @@ +fileFormatVersion: 2 +guid: 5dad249779d803d45b49963ef0410f45 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/zyn_tex_rock_3x3.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_smoke_01.png b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_smoke_01.png new file mode 100644 index 0000000..52ab6c9 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_smoke_01.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c4e39380489023d86ec795fd6f9d4e20f75bb4da4489e1bcbfcf2debfd00565 +size 3717866 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_smoke_01.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_smoke_01.png.meta new file mode 100644 index 0000000..e76c31a --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_smoke_01.png.meta @@ -0,0 +1,134 @@ +fileFormatVersion: 2 +guid: 9ea9ed7729ada7049967c9f9508424fa +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/zyn_tex_smoke_01.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_snowflakes_2x2.png b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_snowflakes_2x2.png new file mode 100644 index 0000000..e6b030f --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_snowflakes_2x2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:854748fef508e8da500bac666467d07ad8710111e155901d281babd6d36fcc8c +size 696622 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_snowflakes_2x2.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_snowflakes_2x2.png.meta new file mode 100644 index 0000000..8dc84a6 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_snowflakes_2x2.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: b9bfa81798ec37540be319ff066ae3e4 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/zyn_tex_snowflakes_2x2.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_sparkle_01.png b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_sparkle_01.png new file mode 100644 index 0000000..4260de9 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_sparkle_01.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a23545bd12769ae375ece3deb9debf8ae188dc59867046fecedd61128112948 +size 51855 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_sparkle_01.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_sparkle_01.png.meta new file mode 100644 index 0000000..381de75 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_sparkle_01.png.meta @@ -0,0 +1,134 @@ +fileFormatVersion: 2 +guid: c5171001128e728459b55a6e6d215fa7 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/zyn_tex_sparkle_01.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_sparkle_01_green.png b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_sparkle_01_green.png new file mode 100644 index 0000000..42e5894 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_sparkle_01_green.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5d527fa919daf0722da8624dbfd2051100d15819caaae66643977ec7b34bd0c +size 395053 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_sparkle_01_green.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_sparkle_01_green.png.meta new file mode 100644 index 0000000..427fc59 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_sparkle_01_green.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: 317a91c8209e1224182c283fa979b864 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/zyn_tex_sparkle_01_green.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_sparkle_01_purple.png b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_sparkle_01_purple.png new file mode 100644 index 0000000..c21a01a --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_sparkle_01_purple.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ffd721ff15310faf307446030b6b3cc1e37bb1b9f37638064e29e3cc9cc4915 +size 388844 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_sparkle_01_purple.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_sparkle_01_purple.png.meta new file mode 100644 index 0000000..316d05e --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_sparkle_01_purple.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: ac9cdb368618cdf4ba7a213d05b3429d +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/zyn_tex_sparkle_01_purple.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_sparkle_01_yellow.png b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_sparkle_01_yellow.png new file mode 100644 index 0000000..f47a99f --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_sparkle_01_yellow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15dfe37c6f2cc2bc38613fd5fa25231c5c25f2c13bcd4e60466f301aab31dad2 +size 303617 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_sparkle_01_yellow.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_sparkle_01_yellow.png.meta new file mode 100644 index 0000000..39df479 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_sparkle_01_yellow.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: 06a2e824e154b8c4897d2b8f32106cda +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/zyn_tex_sparkle_01_yellow.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_trail_03.png b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_trail_03.png new file mode 100644 index 0000000..683f9b6 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_trail_03.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5654a313bc4f871cf0fc7cb387704610e96364296fe3e5a4049d8703bbdbdd5d +size 560274 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_trail_03.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_trail_03.png.meta new file mode 100644 index 0000000..31ffd4d --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_trail_03.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: b9dd34898caaed44197e4a0bab1d2ebf +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/zyn_tex_trail_03.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_trail_dark.png b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_trail_dark.png new file mode 100644 index 0000000..4fd2e89 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_trail_dark.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:209898dec4c176f03888e2f86ab80b28f78495d1d2ff920ef14774b7f1f50e2a +size 832700 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_trail_dark.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_trail_dark.png.meta new file mode 100644 index 0000000..9065287 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_trail_dark.png.meta @@ -0,0 +1,150 @@ +fileFormatVersion: 2 +guid: 7a1a04494e05cdb4f856b52116d31f89 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/zyn_tex_trail_dark.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_watersplash_01.png b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_watersplash_01.png new file mode 100644 index 0000000..f77e841 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_watersplash_01.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:865e4585f6a38c1eaf65378b50c92e1d7250dd323c71133e2a2c788d47116cf2 +size 324845 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_watersplash_01.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_watersplash_01.png.meta new file mode 100644 index 0000000..942147f --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_watersplash_01.png.meta @@ -0,0 +1,134 @@ +fileFormatVersion: 2 +guid: 581a1223d77f2804997883980dc8a4f5 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/zyn_tex_watersplash_01.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_watersplash_03.png b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_watersplash_03.png new file mode 100644 index 0000000..f61f3be --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_watersplash_03.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0380814356e3abdcb479805b4addec80568d76eab53f77edab5d34929d1a39b3 +size 233565 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_watersplash_03.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_watersplash_03.png.meta new file mode 100644 index 0000000..2740fae --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_watersplash_03.png.meta @@ -0,0 +1,134 @@ +fileFormatVersion: 2 +guid: 651267a023ccdde4cb8bc93bd2e4abd1 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/zyn_tex_watersplash_03.png + uploadId: 829394 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_windlines_1x4_green.png b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_windlines_1x4_green.png new file mode 100644 index 0000000..449cb95 --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_windlines_1x4_green.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c3b2a7786a889e237578ff3c5d78226eb0db6a6750301195239cd11d53bf8b4 +size 453741 diff --git a/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_windlines_1x4_green.png.meta b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_windlines_1x4_green.png.meta new file mode 100644 index 0000000..95cb93e --- /dev/null +++ b/Assets/06_Skills/VFX/Zyncope/textures/zyn_tex_windlines_1x4_green.png.meta @@ -0,0 +1,134 @@ +fileFormatVersion: 2 +guid: db34dfb1b83f0454186237058dc8afb5 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 1 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/Zyncope/textures/zyn_tex_windlines_1x4_green.png + uploadId: 829394 diff --git a/Assets/07_Environments/Objects/Rocks/Model/SM_Rocks_01.fbx b/Assets/07_Environments/Objects/Rocks/Model/SM_Rocks_01.fbx deleted file mode 100644 index 3bef5c1..0000000 --- a/Assets/07_Environments/Objects/Rocks/Model/SM_Rocks_01.fbx +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:dc9c7580c66e26a0c9348e05d9ded67deb8693e5fe6c5721b54dd30826ac3540 -size 33920 diff --git a/Assets/07_Environments/Objects/Rocks/Model/SM_Rocks_02.fbx b/Assets/07_Environments/Objects/Rocks/Model/SM_Rocks_02.fbx deleted file mode 100644 index 58141bf..0000000 --- a/Assets/07_Environments/Objects/Rocks/Model/SM_Rocks_02.fbx +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7d7a494343edd70c0b97be6d0ea4a2b0d478bcf19e6ff96ef312e5c0d75c7fdc -size 33616 diff --git a/Assets/07_Environments/Objects/Rocks/Model/SM_Rocks_03.fbx b/Assets/07_Environments/Objects/Rocks/Model/SM_Rocks_03.fbx deleted file mode 100644 index 4e9004b..0000000 --- a/Assets/07_Environments/Objects/Rocks/Model/SM_Rocks_03.fbx +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0cdf713e7cd59825e28e1892fc2153335dabc2c2d541a448df5666f1a8664eb0 -size 89072 diff --git a/Assets/07_Environments/Objects/Rocks/Model/SM_Rocks_04.fbx b/Assets/07_Environments/Objects/Rocks/Model/SM_Rocks_04.fbx deleted file mode 100644 index a1df9c0..0000000 --- a/Assets/07_Environments/Objects/Rocks/Model/SM_Rocks_04.fbx +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:cb32e3869964d497b1bfccb497539d57c239eb26b472c8f478143b7e48619b36 -size 49712 diff --git a/Assets/07_Environments/Objects/Rocks/Model/SM_Rocks_05.fbx b/Assets/07_Environments/Objects/Rocks/Model/SM_Rocks_05.fbx deleted file mode 100644 index d932779..0000000 --- a/Assets/07_Environments/Objects/Rocks/Model/SM_Rocks_05.fbx +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:84bcac8f8a73068bdcec50b9f1f12f7a4e0e1787ed6ee801b46929c0a454bec7 -size 38224 diff --git a/Assets/07_Environments/Objects/Rocks/Model/SM_Rocks_06.fbx b/Assets/07_Environments/Objects/Rocks/Model/SM_Rocks_06.fbx deleted file mode 100644 index 36c2c2b..0000000 --- a/Assets/07_Environments/Objects/Rocks/Model/SM_Rocks_06.fbx +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f7ce6532e22f1457cfbe3e19879cf20cde435e2cdfc04107738cf6aa1e60abdf -size 29456 diff --git a/Assets/07_Environments/Objects/Rocks/Model/SM_Rocks_07.fbx b/Assets/07_Environments/Objects/Rocks/Model/SM_Rocks_07.fbx deleted file mode 100644 index 90706e1..0000000 --- a/Assets/07_Environments/Objects/Rocks/Model/SM_Rocks_07.fbx +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d36d8377aa281e4c66bbf6f284dcf11d26c11f4693875eed3bc26cb19404fb88 -size 29568 diff --git a/Assets/07_Environments/Objects/Rocks/Model/SM_Rocks_08.fbx b/Assets/07_Environments/Objects/Rocks/Model/SM_Rocks_08.fbx deleted file mode 100644 index 188435f..0000000 --- a/Assets/07_Environments/Objects/Rocks/Model/SM_Rocks_08.fbx +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9817e81878b5072f2932267710a2ac6847518390807ba69512893c5bb0ab1973 -size 29520 diff --git a/Assets/07_Environments/Objects/Rocks/Model/SM_Rocks_09.fbx b/Assets/07_Environments/Objects/Rocks/Model/SM_Rocks_09.fbx deleted file mode 100644 index 57f87ab..0000000 --- a/Assets/07_Environments/Objects/Rocks/Model/SM_Rocks_09.fbx +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0ffe493488f992b50f4bfe8a943ab361469945df0b1ab2968262aca6529b25d1 -size 30512 diff --git a/Assets/07_Environments/Objects/Rocks/Model/SM_Rocks_10.fbx b/Assets/07_Environments/Objects/Rocks/Model/SM_Rocks_10.fbx deleted file mode 100644 index c2c8cbb..0000000 --- a/Assets/07_Environments/Objects/Rocks/Model/SM_Rocks_10.fbx +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d1a1dbf08ec31784b0484becf7f2916a61f7b28ba628b17b874c273d0e16a2dc -size 28752 diff --git a/Assets/07_Environments/Objects/Rocks/Model/SM_Rocks_11.fbx b/Assets/07_Environments/Objects/Rocks/Model/SM_Rocks_11.fbx deleted file mode 100644 index 8a1a4ca..0000000 --- a/Assets/07_Environments/Objects/Rocks/Model/SM_Rocks_11.fbx +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:34bbc8a108148b1c199c35326e8aa48363b5e06d0385c31f70f20b81ffd3caec -size 28752 diff --git a/Assets/07_Environments/Objects/Rocks/Prefabs/SM_Rocks_01.prefab b/Assets/07_Environments/Objects/Rocks/Prefabs/SM_Rocks_01.prefab deleted file mode 100644 index f4ffbca..0000000 --- a/Assets/07_Environments/Objects/Rocks/Prefabs/SM_Rocks_01.prefab +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ef053027602d361f4201e30880607e84d7a54e42fe38d0383af41a1f1b0494f9 -size 2430 diff --git a/Assets/07_Environments/Objects/Rocks/Prefabs/SM_Rocks_02.prefab b/Assets/07_Environments/Objects/Rocks/Prefabs/SM_Rocks_02.prefab deleted file mode 100644 index 2ce551c..0000000 --- a/Assets/07_Environments/Objects/Rocks/Prefabs/SM_Rocks_02.prefab +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2f2eb5985352bd11425629e88f9b7bdf140320b9372758e5dd64fd4ee7235b94 -size 2429 diff --git a/Assets/07_Environments/Objects/Rocks/Prefabs/SM_Rocks_03.prefab b/Assets/07_Environments/Objects/Rocks/Prefabs/SM_Rocks_03.prefab deleted file mode 100644 index 3d85b34..0000000 --- a/Assets/07_Environments/Objects/Rocks/Prefabs/SM_Rocks_03.prefab +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c0aba041d63d643e6c89bf600d48944bb28fc4b305ae7867ac6fe78c07f5d872 -size 2424 diff --git a/Assets/07_Environments/Objects/Rocks/Prefabs/SM_Rocks_04.prefab b/Assets/07_Environments/Objects/Rocks/Prefabs/SM_Rocks_04.prefab deleted file mode 100644 index 5333d47..0000000 --- a/Assets/07_Environments/Objects/Rocks/Prefabs/SM_Rocks_04.prefab +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:26548c5324c344ab407934fa9950a26f2c9e5254f42e0655b8d2435aa0411dc5 -size 2431 diff --git a/Assets/07_Environments/Objects/Rocks/Prefabs/SM_Rocks_05.prefab b/Assets/07_Environments/Objects/Rocks/Prefabs/SM_Rocks_05.prefab deleted file mode 100644 index aa133c0..0000000 --- a/Assets/07_Environments/Objects/Rocks/Prefabs/SM_Rocks_05.prefab +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:81405c928cf93ec8298532b30a7d6e0acf09760eeeba33a6fbad3c44a8064d84 -size 2428 diff --git a/Assets/07_Environments/Objects/Rocks/Prefabs/SM_Rocks_06.prefab b/Assets/07_Environments/Objects/Rocks/Prefabs/SM_Rocks_06.prefab deleted file mode 100644 index 14de523..0000000 --- a/Assets/07_Environments/Objects/Rocks/Prefabs/SM_Rocks_06.prefab +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8849e536a30d332ec0e2ca2b5dd12af919cbd4b2993c85960592d15d31d9b5eb -size 2430 diff --git a/Assets/07_Environments/Objects/Rocks/Prefabs/SM_Rocks_07.prefab b/Assets/07_Environments/Objects/Rocks/Prefabs/SM_Rocks_07.prefab deleted file mode 100644 index 2cdba90..0000000 --- a/Assets/07_Environments/Objects/Rocks/Prefabs/SM_Rocks_07.prefab +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:994077e9a59821b1d3fbec17b8c821838072965c68fd03a00a6728e9603dc81a -size 2430 diff --git a/Assets/07_Environments/Objects/Rocks/Prefabs/SM_Rocks_08.prefab b/Assets/07_Environments/Objects/Rocks/Prefabs/SM_Rocks_08.prefab deleted file mode 100644 index d496cc6..0000000 --- a/Assets/07_Environments/Objects/Rocks/Prefabs/SM_Rocks_08.prefab +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f6a0539bb6c327b71e19d5fe848708a18a63f4094e804d6b9a621f17544d2dae -size 2430 diff --git a/Assets/07_Environments/Objects/Rocks/Prefabs/SM_Rocks_09.prefab b/Assets/07_Environments/Objects/Rocks/Prefabs/SM_Rocks_09.prefab deleted file mode 100644 index 2f6a1ce..0000000 --- a/Assets/07_Environments/Objects/Rocks/Prefabs/SM_Rocks_09.prefab +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:158e7481c5a8bf52e05ff5c84845221d1ea8be5e1b0fe94831fca3f7b0c5446d -size 2431 diff --git a/Assets/07_Environments/Objects/Rocks/Prefabs/SM_Rocks_10.prefab b/Assets/07_Environments/Objects/Rocks/Prefabs/SM_Rocks_10.prefab deleted file mode 100644 index eb2044c..0000000 --- a/Assets/07_Environments/Objects/Rocks/Prefabs/SM_Rocks_10.prefab +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d161bafaf68b16e014373e74d6a44c229513eccda8381ac7097053516ac27399 -size 2427 diff --git a/Assets/07_Environments/Objects/Rocks/Prefabs/SM_Rocks_11.prefab b/Assets/07_Environments/Objects/Rocks/Prefabs/SM_Rocks_11.prefab deleted file mode 100644 index e4aad61..0000000 --- a/Assets/07_Environments/Objects/Rocks/Prefabs/SM_Rocks_11.prefab +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:cf961af31ae394ff46d59e4d3578c566063b6ef2347145449e9e965e78128b13 -size 2430 diff --git a/Assets/07_Environments/Objects/Rocks/Texture/Rocks_Stylized_Color.png b/Assets/07_Environments/Objects/Rocks/Texture/Rocks_Stylized_Color.png deleted file mode 100644 index 78cb340..0000000 --- a/Assets/07_Environments/Objects/Rocks/Texture/Rocks_Stylized_Color.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a0bde5d323d1756c800e3dcda523842574bac50083a8423a2946b683d896ed61 -size 8345234 diff --git a/Assets/Polytope Studio.meta b/Assets/08_Environments/Objects/Polytope Studio.meta similarity index 100% rename from Assets/Polytope Studio.meta rename to Assets/08_Environments/Objects/Polytope Studio.meta diff --git a/Assets/Polytope Studio/Lowpoly_Demos.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Demos.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos.meta diff --git a/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Demos/Environment_Free.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free.meta diff --git a/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers.meta diff --git a/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Fence.prefab b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Fence.prefab new file mode 100644 index 0000000..07344cd --- /dev/null +++ b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Fence.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c7754f9e0de7b721fbce6a848bebc89cf1c8007961c99d0a5b3b4bf20691c72 +size 189741 diff --git a/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Fence.prefab.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Fence.prefab.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Fence.prefab.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Fence.prefab.meta diff --git a/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Ground_Layer_01.terrainlayer b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Ground_Layer_01.terrainlayer similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Ground_Layer_01.terrainlayer rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Ground_Layer_01.terrainlayer diff --git a/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Ground_Layer_01.terrainlayer.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Ground_Layer_01.terrainlayer.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Ground_Layer_01.terrainlayer.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Ground_Layer_01.terrainlayer.meta diff --git a/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Ground_Layer_02.terrainlayer b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Ground_Layer_02.terrainlayer similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Ground_Layer_02.terrainlayer rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Ground_Layer_02.terrainlayer diff --git a/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Ground_Layer_02.terrainlayer.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Ground_Layer_02.terrainlayer.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Ground_Layer_02.terrainlayer.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Ground_Layer_02.terrainlayer.meta diff --git a/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_Grass_02_v1.prefab b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_Grass_02_v1.prefab new file mode 100644 index 0000000..fffb08a --- /dev/null +++ b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_Grass_02_v1.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47149becf9d2336e7140937c82c4be018fcb4d4d570151f14f070e617b61ed1d +size 2442 diff --git a/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_Grass_02_v1.prefab.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_Grass_02_v1.prefab.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_Grass_02_v1.prefab.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_Grass_02_v1.prefab.meta diff --git a/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_Grass_02_v2.prefab b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_Grass_02_v2.prefab new file mode 100644 index 0000000..43dff39 --- /dev/null +++ b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_Grass_02_v2.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0adff183d444380d124ddbe836c3e0172ef331762bcbf445f20ef10555a17adf +size 2442 diff --git a/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_Grass_02_v2.prefab.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_Grass_02_v2.prefab.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_Grass_02_v2.prefab.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_Grass_02_v2.prefab.meta diff --git a/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_Grass_Mat 1.mat b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_Grass_Mat 1.mat similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_Grass_Mat 1.mat rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_Grass_Mat 1.mat diff --git a/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_Grass_Mat 1.mat.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_Grass_Mat 1.mat.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_Grass_Mat 1.mat.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_Grass_Mat 1.mat.meta diff --git a/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_High_Grass_02_v1.prefab b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_High_Grass_02_v1.prefab new file mode 100644 index 0000000..29335ba --- /dev/null +++ b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_High_Grass_02_v1.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84869ddbbe5d7323c7043c337bc010c36ea266d804ea5499dab892571a365337 +size 2445 diff --git a/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_High_Grass_02_v1.prefab.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_High_Grass_02_v1.prefab.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_High_Grass_02_v1.prefab.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_High_Grass_02_v1.prefab.meta diff --git a/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_High_Grass_Mat.mat b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_High_Grass_Mat.mat similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_High_Grass_Mat.mat rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_High_Grass_Mat.mat diff --git a/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_High_Grass_Mat.mat.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_High_Grass_Mat.mat.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_High_Grass_Mat.mat.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_High_Grass_Mat.mat.meta diff --git a/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_MouseLook.cs b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_MouseLook.cs similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_MouseLook.cs rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_MouseLook.cs diff --git a/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_MouseLook.cs.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_MouseLook.cs.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_MouseLook.cs.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_MouseLook.cs.meta diff --git a/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_PlayerMovement.cs b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_PlayerMovement.cs similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_PlayerMovement.cs rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_PlayerMovement.cs diff --git a/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_PlayerMovement.cs.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_PlayerMovement.cs.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_PlayerMovement.cs.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_PlayerMovement.cs.meta diff --git a/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_Poppy_02_v1.prefab b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_Poppy_02_v1.prefab new file mode 100644 index 0000000..6089f9c --- /dev/null +++ b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_Poppy_02_v1.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a726345d7e2401ce9899a0fb4c0ceeed5d1f90075bdb6cf6a790e798fe2873b +size 2442 diff --git a/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_Poppy_02_v1.prefab.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_Poppy_02_v1.prefab.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_Poppy_02_v1.prefab.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_Poppy_02_v1.prefab.meta diff --git a/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_River_Rock_Pile_02_v1.prefab b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_River_Rock_Pile_02_v1.prefab new file mode 100644 index 0000000..ced8c9e --- /dev/null +++ b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_River_Rock_Pile_02_v1.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:183536087da49ebf931f10a551ed07709e7a4433812f455253c771c42f997b3d +size 2453 diff --git a/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_River_Rock_Pile_02_v1.prefab.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_River_Rock_Pile_02_v1.prefab.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_River_Rock_Pile_02_v1.prefab.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_River_Rock_Pile_02_v1.prefab.meta diff --git a/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Plane mat.mat b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Plane mat.mat similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Plane mat.mat rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Plane mat.mat diff --git a/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Plane mat.mat.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Plane mat.mat.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Plane mat.mat.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Plane mat.mat.meta diff --git a/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain.meta diff --git a/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/New Terrain.asset b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/New Terrain.asset similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/New Terrain.asset rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/New Terrain.asset diff --git a/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/New Terrain.asset.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/New Terrain.asset.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/New Terrain.asset.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/New Terrain.asset.meta diff --git a/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_445999c2-5240-4b5c-9394-4cacb62d7eec.asset b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_445999c2-5240-4b5c-9394-4cacb62d7eec.asset new file mode 100644 index 0000000..5dffc97 --- /dev/null +++ b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_445999c2-5240-4b5c-9394-4cacb62d7eec.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a055727197b3da85647f7b40ef6df3cb35816d09a2d68bafcf69cfd1252cdfa +size 6703652 diff --git a/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_445999c2-5240-4b5c-9394-4cacb62d7eec.asset.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_445999c2-5240-4b5c-9394-4cacb62d7eec.asset.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_445999c2-5240-4b5c-9394-4cacb62d7eec.asset.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_445999c2-5240-4b5c-9394-4cacb62d7eec.asset.meta diff --git a/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_6dc76592-a48a-4163-91df-c29ec1a99c66.asset b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_6dc76592-a48a-4163-91df-c29ec1a99c66.asset similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_6dc76592-a48a-4163-91df-c29ec1a99c66.asset rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_6dc76592-a48a-4163-91df-c29ec1a99c66.asset diff --git a/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_6dc76592-a48a-4163-91df-c29ec1a99c66.asset.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_6dc76592-a48a-4163-91df-c29ec1a99c66.asset.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_6dc76592-a48a-4163-91df-c29ec1a99c66.asset.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_6dc76592-a48a-4163-91df-c29ec1a99c66.asset.meta diff --git a/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_832163fb-b19c-4118-97c2-cf0a3b224fca.asset b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_832163fb-b19c-4118-97c2-cf0a3b224fca.asset new file mode 100644 index 0000000..91351e1 --- /dev/null +++ b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_832163fb-b19c-4118-97c2-cf0a3b224fca.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e66e942bfab6c4e87923aee3a28f98466da5644a291288c387b67f9bd058fbbb +size 6712728 diff --git a/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_832163fb-b19c-4118-97c2-cf0a3b224fca.asset.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_832163fb-b19c-4118-97c2-cf0a3b224fca.asset.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_832163fb-b19c-4118-97c2-cf0a3b224fca.asset.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_832163fb-b19c-4118-97c2-cf0a3b224fca.asset.meta diff --git a/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_88efe361-6f68-4188-bcd0-e9554ca440b9.asset b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_88efe361-6f68-4188-bcd0-e9554ca440b9.asset new file mode 100644 index 0000000..635d82b --- /dev/null +++ b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_88efe361-6f68-4188-bcd0-e9554ca440b9.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:756fa7e1b205e04d1c66a5c38e79234460473dd5ea270e25a1996cd154870e2d +size 6707728 diff --git a/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_88efe361-6f68-4188-bcd0-e9554ca440b9.asset.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_88efe361-6f68-4188-bcd0-e9554ca440b9.asset.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_88efe361-6f68-4188-bcd0-e9554ca440b9.asset.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_88efe361-6f68-4188-bcd0-e9554ca440b9.asset.meta diff --git a/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_984456c3-d32f-475f-a118-27bb19f92a65.asset b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_984456c3-d32f-475f-a118-27bb19f92a65.asset similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_984456c3-d32f-475f-a118-27bb19f92a65.asset rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_984456c3-d32f-475f-a118-27bb19f92a65.asset diff --git a/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_984456c3-d32f-475f-a118-27bb19f92a65.asset.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_984456c3-d32f-475f-a118-27bb19f92a65.asset.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_984456c3-d32f-475f-a118-27bb19f92a65.asset.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_984456c3-d32f-475f-a118-27bb19f92a65.asset.meta diff --git a/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_c82c1fc5-a7ad-4f88-a7ff-c071a4dae8e5.asset b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_c82c1fc5-a7ad-4f88-a7ff-c071a4dae8e5.asset similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_c82c1fc5-a7ad-4f88-a7ff-c071a4dae8e5.asset rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_c82c1fc5-a7ad-4f88-a7ff-c071a4dae8e5.asset diff --git a/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_c82c1fc5-a7ad-4f88-a7ff-c071a4dae8e5.asset.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_c82c1fc5-a7ad-4f88-a7ff-c071a4dae8e5.asset.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_c82c1fc5-a7ad-4f88-a7ff-c071a4dae8e5.asset.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_c82c1fc5-a7ad-4f88-a7ff-c071a4dae8e5.asset.meta diff --git a/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_d3c37e8d-6092-48f4-b81e-93b97326e4d2.asset b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_d3c37e8d-6092-48f4-b81e-93b97326e4d2.asset new file mode 100644 index 0000000..3006053 --- /dev/null +++ b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_d3c37e8d-6092-48f4-b81e-93b97326e4d2.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c79778fa042f2fd56a414220102acc0852ad455a82cb64abf005541b9d6ed762 +size 6703412 diff --git a/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_d3c37e8d-6092-48f4-b81e-93b97326e4d2.asset.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_d3c37e8d-6092-48f4-b81e-93b97326e4d2.asset.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_d3c37e8d-6092-48f4-b81e-93b97326e4d2.asset.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_d3c37e8d-6092-48f4-b81e-93b97326e4d2.asset.meta diff --git a/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_ff4b5190-b520-4d46-b960-ee1d0967df26.asset b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_ff4b5190-b520-4d46-b960-ee1d0967df26.asset similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_ff4b5190-b520-4d46-b960-ee1d0967df26.asset rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_ff4b5190-b520-4d46-b960-ee1d0967df26.asset diff --git a/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_ff4b5190-b520-4d46-b960-ee1d0967df26.asset.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_ff4b5190-b520-4d46-b960-ee1d0967df26.asset.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_ff4b5190-b520-4d46-b960-ee1d0967df26.asset.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_ff4b5190-b520-4d46-b960-ee1d0967df26.asset.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Prefabs.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Flowers.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Flowers.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Flowers.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Flowers.meta diff --git a/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Flowers/PT_Poppy_02.prefab b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Flowers/PT_Poppy_02.prefab new file mode 100644 index 0000000..ef4fff0 --- /dev/null +++ b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Flowers/PT_Poppy_02.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7a41356311234d8104f63af8a618b931c412030d66daf76235e3e1acd3e88f9 +size 9112 diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Flowers/PT_Poppy_02.prefab.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Flowers/PT_Poppy_02.prefab.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Flowers/PT_Poppy_02.prefab.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Flowers/PT_Poppy_02.prefab.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Mushrooms.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Mushrooms.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Mushrooms.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Mushrooms.meta diff --git a/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Mushrooms/PT_Caesars_Mushroom_01.prefab b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Mushrooms/PT_Caesars_Mushroom_01.prefab new file mode 100644 index 0000000..6336a40 --- /dev/null +++ b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Mushrooms/PT_Caesars_Mushroom_01.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e9553225680007640238d1977ab2af106592f49664a5e9367434029874fbd7c +size 2445 diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Mushrooms/PT_Caesars_Mushroom_01.prefab.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Mushrooms/PT_Caesars_Mushroom_01.prefab.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Mushrooms/PT_Caesars_Mushroom_01.prefab.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Mushrooms/PT_Caesars_Mushroom_01.prefab.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Plants.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Plants.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Plants.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Plants.meta diff --git a/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Plants/PT_Grass_02.prefab b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Plants/PT_Grass_02.prefab new file mode 100644 index 0000000..160fd2d --- /dev/null +++ b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Plants/PT_Grass_02.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f45707e7f0eded909af4999f69eb21a27792b9cbc3f44a0f69c1cb123785ff4c +size 9102 diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Plants/PT_Grass_02.prefab.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Plants/PT_Grass_02.prefab.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Plants/PT_Grass_02.prefab.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Plants/PT_Grass_02.prefab.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Rocks.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Rocks.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Rocks.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Rocks.meta diff --git a/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Rocks/PT_Generic_Rock_01.prefab b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Rocks/PT_Generic_Rock_01.prefab new file mode 100644 index 0000000..40b9f2a --- /dev/null +++ b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Rocks/PT_Generic_Rock_01.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2da5cc4fbd8abdd606d2184d3745dbd65ba39d5ae0aed3d3827b340082ae5460 +size 9096 diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Rocks/PT_Generic_Rock_01.prefab.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Rocks/PT_Generic_Rock_01.prefab.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Rocks/PT_Generic_Rock_01.prefab.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Rocks/PT_Generic_Rock_01.prefab.meta diff --git a/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Rocks/PT_Menhir_Rock_02.prefab b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Rocks/PT_Menhir_Rock_02.prefab new file mode 100644 index 0000000..0f7c8ce --- /dev/null +++ b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Rocks/PT_Menhir_Rock_02.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a431d8df15784e16a48ddc49644105f810dfc50dc27e88b43b6ae18b456fc6e9 +size 9099 diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Rocks/PT_Menhir_Rock_02.prefab.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Rocks/PT_Menhir_Rock_02.prefab.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Rocks/PT_Menhir_Rock_02.prefab.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Rocks/PT_Menhir_Rock_02.prefab.meta diff --git a/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Rocks/PT_Ore_Rock_01_split.prefab b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Rocks/PT_Ore_Rock_01_split.prefab new file mode 100644 index 0000000..b955592 --- /dev/null +++ b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Rocks/PT_Ore_Rock_01_split.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a75509ae95edb58b190237083266a5a7c0cba7797706b5f89a2c63d1349e3644 +size 9099 diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Rocks/PT_Ore_Rock_01_split.prefab.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Rocks/PT_Ore_Rock_01_split.prefab.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Rocks/PT_Ore_Rock_01_split.prefab.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Rocks/PT_Ore_Rock_01_split.prefab.meta diff --git a/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Rocks/PT_River_Rock_Pile_02.prefab b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Rocks/PT_River_Rock_Pile_02.prefab new file mode 100644 index 0000000..0cc76ed --- /dev/null +++ b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Rocks/PT_River_Rock_Pile_02.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04a7fdbd0900045f91c495fa5922798751bcf74d8b03ffc679e6f84157d8e199 +size 9111 diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Rocks/PT_River_Rock_Pile_02.prefab.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Rocks/PT_River_Rock_Pile_02.prefab.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Rocks/PT_River_Rock_Pile_02.prefab.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Rocks/PT_River_Rock_Pile_02.prefab.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Shrubs.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Shrubs.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Shrubs.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Shrubs.meta diff --git a/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Shrubs/PT_Generic_Shrub_01_dead.prefab b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Shrubs/PT_Generic_Shrub_01_dead.prefab new file mode 100644 index 0000000..0f8182c --- /dev/null +++ b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Shrubs/PT_Generic_Shrub_01_dead.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2e60ee5d832f56f4a50af713991c218fbaad36c59b32d22d6e7b62b4a1dfe5a +size 9159 diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Shrubs/PT_Generic_Shrub_01_dead.prefab.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Shrubs/PT_Generic_Shrub_01_dead.prefab.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Shrubs/PT_Generic_Shrub_01_dead.prefab.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Shrubs/PT_Generic_Shrub_01_dead.prefab.meta diff --git a/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Shrubs/PT_Generic_Shrub_01_green.prefab b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Shrubs/PT_Generic_Shrub_01_green.prefab new file mode 100644 index 0000000..f8e2a42 --- /dev/null +++ b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Shrubs/PT_Generic_Shrub_01_green.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b7ee5a0bded544a168b754f3d0a1df063ab880a3c1373f07d5e0a3af9e0c883 +size 9390 diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Shrubs/PT_Generic_Shrub_01_green.prefab.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Shrubs/PT_Generic_Shrub_01_green.prefab.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Shrubs/PT_Generic_Shrub_01_green.prefab.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Shrubs/PT_Generic_Shrub_01_green.prefab.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees.meta diff --git a/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_apples.prefab b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_apples.prefab new file mode 100644 index 0000000..1a779f7 --- /dev/null +++ b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_apples.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4ebd6bfd60734f9160949c968d41e2794189acdbac7fa3fa4d901c34ffaa7e5 +size 9348 diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_apples.prefab.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_apples.prefab.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_apples.prefab.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_apples.prefab.meta diff --git a/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_dead.prefab b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_dead.prefab new file mode 100644 index 0000000..80e6662 --- /dev/null +++ b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_dead.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c09b8a52d4a30c6e6007f61af9b825517626e230c727adcf62bbf7a9f70c04d1 +size 9149 diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_dead.prefab.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_dead.prefab.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_dead.prefab.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_dead.prefab.meta diff --git a/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_dead_cut.prefab b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_dead_cut.prefab new file mode 100644 index 0000000..3835788 --- /dev/null +++ b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_dead_cut.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22387101c1a2ddaecfe0e043d15a8c7f181a10ca6de0dad30493b7145c71ff13 +size 2445 diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_dead_cut.prefab.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_dead_cut.prefab.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_dead_cut.prefab.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_dead_cut.prefab.meta diff --git a/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_green.prefab b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_green.prefab new file mode 100644 index 0000000..8a8cbe0 --- /dev/null +++ b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_green.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:138943d4d2b12d03476676fc105b74b2affcccb67225fdbc270af4b8514ee96f +size 9347 diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_green.prefab.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_green.prefab.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_green.prefab.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_green.prefab.meta diff --git a/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_green_cut.prefab b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_green_cut.prefab new file mode 100644 index 0000000..bd3a04b --- /dev/null +++ b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_green_cut.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf0e821e707c87999bacb05fb84dca56c2519b2256e6922b94958d0db6fe98e7 +size 2514 diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_green_cut.prefab.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_green_cut.prefab.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_green_cut.prefab.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_green_cut.prefab.meta diff --git a/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_logs.prefab b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_logs.prefab new file mode 100644 index 0000000..5c15052 --- /dev/null +++ b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_logs.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7aa80c24c68e2f68b824206efbac11060bf95ef374c2cba788ceb02eb7a5972 +size 2440 diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_logs.prefab.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_logs.prefab.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_logs.prefab.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_logs.prefab.meta diff --git a/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_pears.prefab b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_pears.prefab new file mode 100644 index 0000000..7e8b49d --- /dev/null +++ b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_pears.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:718af6b70bbc184c9c234662df72e6ca2500184f4949ee0fa2723b64bdc78ec9 +size 9348 diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_pears.prefab.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_pears.prefab.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_pears.prefab.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_pears.prefab.meta diff --git a/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_plums.prefab b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_plums.prefab new file mode 100644 index 0000000..d93f88e --- /dev/null +++ b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_plums.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3fbf77673f748e72f0f9a51ddb76bdaccf9b74a11518dc54959e4489859231c +size 9355 diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_plums.prefab.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_plums.prefab.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_plums.prefab.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_plums.prefab.meta diff --git a/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_stump.prefab b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_stump.prefab new file mode 100644 index 0000000..a04abf5 --- /dev/null +++ b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_stump.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:070d30e8a8cb2b82c4b4ac2c46ca6317e9ce58e9defaf9818b9b78a18d2f4a22 +size 2443 diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_stump.prefab.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_stump.prefab.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_stump.prefab.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_stump.prefab.meta diff --git a/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Pine_Tree_03_dead.prefab b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Pine_Tree_03_dead.prefab new file mode 100644 index 0000000..1a17692 --- /dev/null +++ b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Pine_Tree_03_dead.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:231590119ead1ff4b52ce6934c314670e4fe7c656b4f4091e309aee8d4a0fc99 +size 9108 diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Pine_Tree_03_dead.prefab.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Pine_Tree_03_dead.prefab.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Pine_Tree_03_dead.prefab.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Pine_Tree_03_dead.prefab.meta diff --git a/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Pine_Tree_03_dead_cut.prefab b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Pine_Tree_03_dead_cut.prefab new file mode 100644 index 0000000..e575dc0 --- /dev/null +++ b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Pine_Tree_03_dead_cut.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b527fade48faca62c1c5704a85270f2cf1f4145f4de63b629762f4f00165f32 +size 2447 diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Pine_Tree_03_dead_cut.prefab.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Pine_Tree_03_dead_cut.prefab.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Pine_Tree_03_dead_cut.prefab.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Pine_Tree_03_dead_cut.prefab.meta diff --git a/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Pine_Tree_03_green.prefab b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Pine_Tree_03_green.prefab new file mode 100644 index 0000000..fa8b0c0 --- /dev/null +++ b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Pine_Tree_03_green.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c809c5a63e14bf4d0ad2e03bc191ced7d61e32fb20f22e3c0d79d539e432577 +size 9343 diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Pine_Tree_03_green.prefab.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Pine_Tree_03_green.prefab.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Pine_Tree_03_green.prefab.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Pine_Tree_03_green.prefab.meta diff --git a/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Pine_Tree_03_green_cut.prefab b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Pine_Tree_03_green_cut.prefab new file mode 100644 index 0000000..d8003fd --- /dev/null +++ b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Pine_Tree_03_green_cut.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf4e262ab00e8e717f166bbfe2379391de2787fb84f8055ea1ff388e5b237a03 +size 2519 diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Pine_Tree_03_green_cut.prefab.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Pine_Tree_03_green_cut.prefab.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Pine_Tree_03_green_cut.prefab.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Pine_Tree_03_green_cut.prefab.meta diff --git a/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Pine_Tree_03_logs.prefab b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Pine_Tree_03_logs.prefab new file mode 100644 index 0000000..534275b --- /dev/null +++ b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Pine_Tree_03_logs.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3da9780f55bd7968a1ec8d21c97fc9651a7d9fb0db50fc91b34a2785725e2330 +size 2442 diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Pine_Tree_03_logs.prefab.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Pine_Tree_03_logs.prefab.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Pine_Tree_03_logs.prefab.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Pine_Tree_03_logs.prefab.meta diff --git a/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Pine_Tree_03_stump.prefab b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Pine_Tree_03_stump.prefab new file mode 100644 index 0000000..1e5a3e3 --- /dev/null +++ b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Pine_Tree_03_stump.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b46043ba0beaafc3376758d7d7b4f5dce83dad4b892ff4e446e2b52adce7fb7 +size 2444 diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Pine_Tree_03_stump.prefab.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Pine_Tree_03_stump.prefab.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Pine_Tree_03_stump.prefab.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Pine_Tree_03_stump.prefab.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Materials.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Materials.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Materials.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Materials.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Fruit_Tree_Foliage_Mat.mat b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Fruit_Tree_Foliage_Mat.mat similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Fruit_Tree_Foliage_Mat.mat rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Fruit_Tree_Foliage_Mat.mat diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Fruit_Tree_Foliage_Mat.mat.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Fruit_Tree_Foliage_Mat.mat.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Fruit_Tree_Foliage_Mat.mat.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Fruit_Tree_Foliage_Mat.mat.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Fruit_Tree_Opaque_mat.mat b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Fruit_Tree_Opaque_mat.mat similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Fruit_Tree_Opaque_mat.mat rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Fruit_Tree_Opaque_mat.mat diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Fruit_Tree_Opaque_mat.mat.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Fruit_Tree_Opaque_mat.mat.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Fruit_Tree_Opaque_mat.mat.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Fruit_Tree_Opaque_mat.mat.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Generic_Leaf_mat.mat b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Generic_Leaf_mat.mat similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Generic_Leaf_mat.mat rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Generic_Leaf_mat.mat diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Generic_Leaf_mat.mat.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Generic_Leaf_mat.mat.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Generic_Leaf_mat.mat.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Generic_Leaf_mat.mat.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Generic_Tree_Leaves_mat.mat b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Generic_Tree_Leaves_mat.mat similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Generic_Tree_Leaves_mat.mat rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Generic_Tree_Leaves_mat.mat diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Generic_Tree_Leaves_mat.mat.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Generic_Tree_Leaves_mat.mat.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Generic_Tree_Leaves_mat.mat.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Generic_Tree_Leaves_mat.mat.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Generic_Tree_Trunk_mat.mat b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Generic_Tree_Trunk_mat.mat similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Generic_Tree_Trunk_mat.mat rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Generic_Tree_Trunk_mat.mat diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Generic_Tree_Trunk_mat.mat.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Generic_Tree_Trunk_mat.mat.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Generic_Tree_Trunk_mat.mat.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Generic_Tree_Trunk_mat.mat.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Grass_Mat.mat b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Grass_Mat.mat similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Grass_Mat.mat rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Grass_Mat.mat diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Grass_Mat.mat.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Grass_Mat.mat.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Grass_Mat.mat.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Grass_Mat.mat.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Mushrooms_mat.mat b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Mushrooms_mat.mat similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Mushrooms_mat.mat rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Mushrooms_mat.mat diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Mushrooms_mat.mat.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Mushrooms_mat.mat.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Mushrooms_mat.mat.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Mushrooms_mat.mat.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Pine_Tree_Leaves_Mat.mat b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Pine_Tree_Leaves_Mat.mat similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Pine_Tree_Leaves_Mat.mat rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Pine_Tree_Leaves_Mat.mat diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Pine_Tree_Leaves_Mat.mat.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Pine_Tree_Leaves_Mat.mat.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Pine_Tree_Leaves_Mat.mat.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Pine_Tree_Leaves_Mat.mat.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Pine_Tree_Trunk_Mat.mat b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Pine_Tree_Trunk_Mat.mat similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Pine_Tree_Trunk_Mat.mat rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Pine_Tree_Trunk_Mat.mat diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Pine_Tree_Trunk_Mat.mat.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Pine_Tree_Trunk_Mat.mat.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Pine_Tree_Trunk_Mat.mat.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Pine_Tree_Trunk_Mat.mat.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Poppy_mat.mat b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Poppy_mat.mat similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Poppy_mat.mat rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Poppy_mat.mat diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Poppy_mat.mat.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Poppy_mat.mat.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Poppy_mat.mat.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Poppy_mat.mat.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Rocks_mat.mat b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Rocks_mat.mat similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Rocks_mat.mat rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Rocks_mat.mat diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Rocks_mat.mat.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Rocks_mat.mat.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Rocks_mat.mat.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Rocks_mat.mat.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Skybox_mat.mat b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Skybox_mat.mat similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Skybox_mat.mat rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Skybox_mat.mat diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Skybox_mat.mat.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Skybox_mat.mat.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Skybox_mat.mat.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Skybox_mat.mat.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Terrain_mat.mat b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Terrain_mat.mat similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Terrain_mat.mat rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Terrain_mat.mat diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Terrain_mat.mat.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Terrain_mat.mat.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Terrain_mat.mat.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Terrain_mat.mat.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Water_mat.mat b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Water_mat.mat similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Water_mat.mat rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Water_mat.mat diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Water_mat.mat.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Water_mat.mat.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Water_mat.mat.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Materials/PT_Water_mat.mat.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Flowers.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Flowers.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Flowers.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Flowers.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Flowers/PT_Poppy_02.fbx b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Flowers/PT_Poppy_02.fbx similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Flowers/PT_Poppy_02.fbx rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Flowers/PT_Poppy_02.fbx diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Flowers/PT_Poppy_02.fbx.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Flowers/PT_Poppy_02.fbx.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Flowers/PT_Poppy_02.fbx.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Flowers/PT_Poppy_02.fbx.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Mushrooms.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Mushrooms.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Mushrooms.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Mushrooms.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Mushrooms/PT_Caesars_Mushroom_01.fbx b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Mushrooms/PT_Caesars_Mushroom_01.fbx similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Mushrooms/PT_Caesars_Mushroom_01.fbx rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Mushrooms/PT_Caesars_Mushroom_01.fbx diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Mushrooms/PT_Caesars_Mushroom_01.fbx.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Mushrooms/PT_Caesars_Mushroom_01.fbx.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Mushrooms/PT_Caesars_Mushroom_01.fbx.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Mushrooms/PT_Caesars_Mushroom_01.fbx.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Plants.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Plants.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Plants.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Plants.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Plants/PT_Grass_02.fbx b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Plants/PT_Grass_02.fbx similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Plants/PT_Grass_02.fbx rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Plants/PT_Grass_02.fbx diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Plants/PT_Grass_02.fbx.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Plants/PT_Grass_02.fbx.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Plants/PT_Grass_02.fbx.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Plants/PT_Grass_02.fbx.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Rocks.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Rocks.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Rocks.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Rocks.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Rocks/PT_Generic_Rock_01.fbx b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Rocks/PT_Generic_Rock_01.fbx similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Rocks/PT_Generic_Rock_01.fbx rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Rocks/PT_Generic_Rock_01.fbx diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Rocks/PT_Generic_Rock_01.fbx.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Rocks/PT_Generic_Rock_01.fbx.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Rocks/PT_Generic_Rock_01.fbx.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Rocks/PT_Generic_Rock_01.fbx.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Rocks/PT_Menhir_Rock_02.fbx b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Rocks/PT_Menhir_Rock_02.fbx similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Rocks/PT_Menhir_Rock_02.fbx rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Rocks/PT_Menhir_Rock_02.fbx diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Rocks/PT_Menhir_Rock_02.fbx.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Rocks/PT_Menhir_Rock_02.fbx.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Rocks/PT_Menhir_Rock_02.fbx.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Rocks/PT_Menhir_Rock_02.fbx.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Rocks/PT_Ore_Rock_01.fbx b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Rocks/PT_Ore_Rock_01.fbx similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Rocks/PT_Ore_Rock_01.fbx rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Rocks/PT_Ore_Rock_01.fbx diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Rocks/PT_Ore_Rock_01.fbx.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Rocks/PT_Ore_Rock_01.fbx.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Rocks/PT_Ore_Rock_01.fbx.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Rocks/PT_Ore_Rock_01.fbx.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Rocks/PT_Ore_Rock_01_split.fbx b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Rocks/PT_Ore_Rock_01_split.fbx similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Rocks/PT_Ore_Rock_01_split.fbx rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Rocks/PT_Ore_Rock_01_split.fbx diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Rocks/PT_Ore_Rock_01_split.fbx.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Rocks/PT_Ore_Rock_01_split.fbx.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Rocks/PT_Ore_Rock_01_split.fbx.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Rocks/PT_Ore_Rock_01_split.fbx.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Rocks/PT_River_Rock_Pile_02.fbx b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Rocks/PT_River_Rock_Pile_02.fbx similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Rocks/PT_River_Rock_Pile_02.fbx rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Rocks/PT_River_Rock_Pile_02.fbx diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Rocks/PT_River_Rock_Pile_02.fbx.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Rocks/PT_River_Rock_Pile_02.fbx.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Rocks/PT_River_Rock_Pile_02.fbx.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Rocks/PT_River_Rock_Pile_02.fbx.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Shrubs.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Shrubs.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Shrubs.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Shrubs.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Shrubs/PT_Generic_Shrub_01_dead.fbx b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Shrubs/PT_Generic_Shrub_01_dead.fbx similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Shrubs/PT_Generic_Shrub_01_dead.fbx rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Shrubs/PT_Generic_Shrub_01_dead.fbx diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Shrubs/PT_Generic_Shrub_01_dead.fbx.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Shrubs/PT_Generic_Shrub_01_dead.fbx.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Shrubs/PT_Generic_Shrub_01_dead.fbx.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Shrubs/PT_Generic_Shrub_01_dead.fbx.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Shrubs/PT_Generic_Shrub_01_green.fbx b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Shrubs/PT_Generic_Shrub_01_green.fbx similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Shrubs/PT_Generic_Shrub_01_green.fbx rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Shrubs/PT_Generic_Shrub_01_green.fbx diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Shrubs/PT_Generic_Shrub_01_green.fbx.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Shrubs/PT_Generic_Shrub_01_green.fbx.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Shrubs/PT_Generic_Shrub_01_green.fbx.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Shrubs/PT_Generic_Shrub_01_green.fbx.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_apples.fbx b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_apples.fbx similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_apples.fbx rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_apples.fbx diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_apples.fbx.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_apples.fbx.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_apples.fbx.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_apples.fbx.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_dead.fbx b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_dead.fbx similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_dead.fbx rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_dead.fbx diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_dead.fbx.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_dead.fbx.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_dead.fbx.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_dead.fbx.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_dead_cut.fbx b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_dead_cut.fbx similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_dead_cut.fbx rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_dead_cut.fbx diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_dead_cut.fbx.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_dead_cut.fbx.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_dead_cut.fbx.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_dead_cut.fbx.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_green.fbx b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_green.fbx similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_green.fbx rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_green.fbx diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_green.fbx.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_green.fbx.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_green.fbx.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_green.fbx.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_green_cut.fbx b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_green_cut.fbx similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_green_cut.fbx rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_green_cut.fbx diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_green_cut.fbx.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_green_cut.fbx.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_green_cut.fbx.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_green_cut.fbx.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_logs.fbx b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_logs.fbx similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_logs.fbx rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_logs.fbx diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_logs.fbx.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_logs.fbx.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_logs.fbx.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_logs.fbx.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_pears.fbx b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_pears.fbx similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_pears.fbx rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_pears.fbx diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_pears.fbx.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_pears.fbx.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_pears.fbx.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_pears.fbx.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_plums.fbx b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_plums.fbx similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_plums.fbx rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_plums.fbx diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_plums.fbx.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_plums.fbx.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_plums.fbx.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_plums.fbx.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_stump.fbx b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_stump.fbx similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_stump.fbx rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_stump.fbx diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_stump.fbx.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_stump.fbx.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_stump.fbx.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Fruit_Tree_01_stump.fbx.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Pine_Tree_03_dead.fbx b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Pine_Tree_03_dead.fbx similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Pine_Tree_03_dead.fbx rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Pine_Tree_03_dead.fbx diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Pine_Tree_03_dead.fbx.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Pine_Tree_03_dead.fbx.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Pine_Tree_03_dead.fbx.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Pine_Tree_03_dead.fbx.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Pine_Tree_03_dead_cut.fbx b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Pine_Tree_03_dead_cut.fbx similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Pine_Tree_03_dead_cut.fbx rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Pine_Tree_03_dead_cut.fbx diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Pine_Tree_03_dead_cut.fbx.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Pine_Tree_03_dead_cut.fbx.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Pine_Tree_03_dead_cut.fbx.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Pine_Tree_03_dead_cut.fbx.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Pine_Tree_03_green.fbx b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Pine_Tree_03_green.fbx similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Pine_Tree_03_green.fbx rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Pine_Tree_03_green.fbx diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Pine_Tree_03_green.fbx.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Pine_Tree_03_green.fbx.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Pine_Tree_03_green.fbx.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Pine_Tree_03_green.fbx.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Pine_Tree_03_green_cut.fbx b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Pine_Tree_03_green_cut.fbx similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Pine_Tree_03_green_cut.fbx rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Pine_Tree_03_green_cut.fbx diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Pine_Tree_03_green_cut.fbx.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Pine_Tree_03_green_cut.fbx.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Pine_Tree_03_green_cut.fbx.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Pine_Tree_03_green_cut.fbx.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Pine_Tree_03_logs.fbx b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Pine_Tree_03_logs.fbx similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Pine_Tree_03_logs.fbx rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Pine_Tree_03_logs.fbx diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Pine_Tree_03_logs.fbx.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Pine_Tree_03_logs.fbx.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Pine_Tree_03_logs.fbx.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Pine_Tree_03_logs.fbx.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Pine_Tree_03_stump.fbx b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Pine_Tree_03_stump.fbx similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Pine_Tree_03_stump.fbx rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Pine_Tree_03_stump.fbx diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Pine_Tree_03_stump.fbx.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Pine_Tree_03_stump.fbx.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Pine_Tree_03_stump.fbx.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Meshes/Trees/PT_Pine_Tree_03_stump.fbx.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Shaders.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Shaders.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Shaders.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Shaders.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Shaders/PT_Rock_Shader.shader b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Shaders/PT_Rock_Shader.shader similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Shaders/PT_Rock_Shader.shader rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Shaders/PT_Rock_Shader.shader diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Shaders/PT_Rock_Shader.shader.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Shaders/PT_Rock_Shader.shader.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Shaders/PT_Rock_Shader.shader.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Shaders/PT_Rock_Shader.shader.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Shaders/PT_Vegetation_Flowers_Shader.shader b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Shaders/PT_Vegetation_Flowers_Shader.shader similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Shaders/PT_Vegetation_Flowers_Shader.shader rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Shaders/PT_Vegetation_Flowers_Shader.shader diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Shaders/PT_Vegetation_Flowers_Shader.shader.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Shaders/PT_Vegetation_Flowers_Shader.shader.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Shaders/PT_Vegetation_Flowers_Shader.shader.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Shaders/PT_Vegetation_Flowers_Shader.shader.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Shaders/PT_Vegetation_Foliage_Shader.shader b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Shaders/PT_Vegetation_Foliage_Shader.shader similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Shaders/PT_Vegetation_Foliage_Shader.shader rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Shaders/PT_Vegetation_Foliage_Shader.shader diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Shaders/PT_Vegetation_Foliage_Shader.shader.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Shaders/PT_Vegetation_Foliage_Shader.shader.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Shaders/PT_Vegetation_Foliage_Shader.shader.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Shaders/PT_Vegetation_Foliage_Shader.shader.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Shaders/PT_Vegetation_Opaque_Shader.shader b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Shaders/PT_Vegetation_Opaque_Shader.shader similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Shaders/PT_Vegetation_Opaque_Shader.shader rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Shaders/PT_Vegetation_Opaque_Shader.shader diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Shaders/PT_Vegetation_Opaque_Shader.shader.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Shaders/PT_Vegetation_Opaque_Shader.shader.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Shaders/PT_Vegetation_Opaque_Shader.shader.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Shaders/PT_Vegetation_Opaque_Shader.shader.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Shaders/PT_Vegetation_Plants_Shader.shader b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Shaders/PT_Vegetation_Plants_Shader.shader similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Shaders/PT_Vegetation_Plants_Shader.shader rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Shaders/PT_Vegetation_Plants_Shader.shader diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Shaders/PT_Vegetation_Plants_Shader.shader.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Shaders/PT_Vegetation_Plants_Shader.shader.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Shaders/PT_Vegetation_Plants_Shader.shader.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Shaders/PT_Vegetation_Plants_Shader.shader.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Shaders/PT_Water_Shader.shader b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Shaders/PT_Water_Shader.shader similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Shaders/PT_Water_Shader.shader rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Shaders/PT_Water_Shader.shader diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Shaders/PT_Water_Shader.shader.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Shaders/PT_Water_Shader.shader.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Shaders/PT_Water_Shader.shader.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Shaders/PT_Water_Shader.shader.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Textures.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Textures.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Textures.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Textures.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Fruit_Tree_Flowers_01.png b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Fruit_Tree_Flowers_01.png similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Fruit_Tree_Flowers_01.png rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Fruit_Tree_Flowers_01.png diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Fruit_Tree_Flowers_01.png.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Fruit_Tree_Flowers_01.png.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Fruit_Tree_Flowers_01.png.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Fruit_Tree_Flowers_01.png.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Fruit_Tree_Leaves_01.png b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Fruit_Tree_Leaves_01.png similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Fruit_Tree_Leaves_01.png rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Fruit_Tree_Leaves_01.png diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Fruit_Tree_Leaves_01.png.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Fruit_Tree_Leaves_01.png.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Fruit_Tree_Leaves_01.png.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Fruit_Tree_Leaves_01.png.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Generic_Leaves_01.png b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Generic_Leaves_01.png similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Generic_Leaves_01.png rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Generic_Leaves_01.png diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Generic_Leaves_01.png.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Generic_Leaves_01.png.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Generic_Leaves_01.png.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Generic_Leaves_01.png.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Generic_Tree_Leaves_01.png b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Generic_Tree_Leaves_01.png similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Generic_Tree_Leaves_01.png rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Generic_Tree_Leaves_01.png diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Generic_Tree_Leaves_01.png.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Generic_Tree_Leaves_01.png.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Generic_Tree_Leaves_01.png.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Generic_Tree_Leaves_01.png.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Grass_01.png b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Grass_01.png similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Grass_01.png rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Grass_01.png diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Grass_01.png.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Grass_01.png.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Grass_01.png.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Grass_01.png.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Grass_High_01.png b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Grass_High_01.png similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Grass_High_01.png rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Grass_High_01.png diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Grass_High_01.png.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Grass_High_01.png.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Grass_High_01.png.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Grass_High_01.png.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Ground_Generic_03.png b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Ground_Generic_03.png similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Ground_Generic_03.png rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Ground_Generic_03.png diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Ground_Generic_03.png.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Ground_Generic_03.png.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Ground_Generic_03.png.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Ground_Generic_03.png.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Ground_Grass_Green_01.png b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Ground_Grass_Green_01.png similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Ground_Grass_Green_01.png rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Ground_Grass_Green_01.png diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Ground_Grass_Green_01.png.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Ground_Grass_Green_01.png.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Ground_Grass_Green_01.png.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Ground_Grass_Green_01.png.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Mushrooms_01.png b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Mushrooms_01.png similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Mushrooms_01.png rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Mushrooms_01.png diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Mushrooms_01.png.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Mushrooms_01.png.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Mushrooms_01.png.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Mushrooms_01.png.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Pine_Tree_01.png b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Pine_Tree_01.png similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Pine_Tree_01.png rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Pine_Tree_01.png diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Pine_Tree_01.png.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Pine_Tree_01.png.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Pine_Tree_01.png.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Pine_Tree_01.png.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Poppy_01.png b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Poppy_01.png similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Poppy_01.png rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Poppy_01.png diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Poppy_01.png.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Poppy_01.png.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Poppy_01.png.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Poppy_01.png.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Rocks_01.png b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Rocks_01.png similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Rocks_01.png rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Rocks_01.png diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Rocks_01.png.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Rocks_01.png.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Rocks_01.png.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Rocks_01.png.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Runes_02.png b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Runes_02.png similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Runes_02.png rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Runes_02.png diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Runes_02.png.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Runes_02.png.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Runes_02.png.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Runes_02.png.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Skybox_Texture_01.png b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Skybox_Texture_01.png similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Skybox_Texture_01.png rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Skybox_Texture_01.png diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Skybox_Texture_01.png.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Skybox_Texture_01.png.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Skybox_Texture_01.png.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Skybox_Texture_01.png.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Tree_Trunk_01.png b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Tree_Trunk_01.png similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Tree_Trunk_01.png rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Tree_Trunk_01.png diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Tree_Trunk_01.png.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Tree_Trunk_01.png.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Tree_Trunk_01.png.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Tree_Trunk_01.png.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Water_NM_01.png b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Water_NM_01.png similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Water_NM_01.png rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Water_NM_01.png diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Water_NM_01.png.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Water_NM_01.png.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Water_NM_01.png.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/Sources/Textures/PT_Water_NM_01.png.meta diff --git a/Assets/Polytope Studio/Lowpoly_Environments/URP.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/URP.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Environments/URP.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Environments/URP.meta diff --git a/Assets/Polytope Studio/Lowpoly_Village.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Village.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village.meta diff --git a/Assets/Polytope Studio/Lowpoly_Village/Prefabs.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Prefabs.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Village/Prefabs.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Prefabs.meta diff --git a/Assets/Polytope Studio/Lowpoly_Village/Prefabs/Modular.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Prefabs/Modular.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Village/Prefabs/Modular.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Prefabs/Modular.meta diff --git a/Assets/Polytope Studio/Lowpoly_Village/Prefabs/Modular/Bridge.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Prefabs/Modular/Bridge.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Village/Prefabs/Modular/Bridge.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Prefabs/Modular/Bridge.meta diff --git a/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Prefabs/Modular/Bridge/PT_Wooden_Bridge_02.prefab b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Prefabs/Modular/Bridge/PT_Wooden_Bridge_02.prefab new file mode 100644 index 0000000..e79f848 --- /dev/null +++ b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Prefabs/Modular/Bridge/PT_Wooden_Bridge_02.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83d16064572ea4680e7640812bd5d895e202e92e086112f3ff66272b3dc69fa1 +size 7315 diff --git a/Assets/Polytope Studio/Lowpoly_Village/Prefabs/Modular/Bridge/PT_Wooden_Bridge_02.prefab.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Prefabs/Modular/Bridge/PT_Wooden_Bridge_02.prefab.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Village/Prefabs/Modular/Bridge/PT_Wooden_Bridge_02.prefab.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Prefabs/Modular/Bridge/PT_Wooden_Bridge_02.prefab.meta diff --git a/Assets/Polytope Studio/Lowpoly_Village/Prefabs/Modular/Fence.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Prefabs/Modular/Fence.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Village/Prefabs/Modular/Fence.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Prefabs/Modular/Fence.meta diff --git a/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Prefabs/Modular/Fence/PT_Modular_Fence_Wood_01.prefab b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Prefabs/Modular/Fence/PT_Modular_Fence_Wood_01.prefab new file mode 100644 index 0000000..d3078ec --- /dev/null +++ b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Prefabs/Modular/Fence/PT_Modular_Fence_Wood_01.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38e34b5f330c74173267fa3944bb77b21a85b7bcea5f4d05eb1ef1173b013e2d +size 2856 diff --git a/Assets/Polytope Studio/Lowpoly_Village/Prefabs/Modular/Fence/PT_Modular_Fence_Wood_01.prefab.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Prefabs/Modular/Fence/PT_Modular_Fence_Wood_01.prefab.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Village/Prefabs/Modular/Fence/PT_Modular_Fence_Wood_01.prefab.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Prefabs/Modular/Fence/PT_Modular_Fence_Wood_01.prefab.meta diff --git a/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Prefabs/Modular/Fence/PT_Modular_Fence_Wood_02.prefab b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Prefabs/Modular/Fence/PT_Modular_Fence_Wood_02.prefab new file mode 100644 index 0000000..ed89ac1 --- /dev/null +++ b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Prefabs/Modular/Fence/PT_Modular_Fence_Wood_02.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dfe2360e1ab976582d1cb7522c37a4e3c4b0a517bd12a94fcb95f66c6581f8b +size 2843 diff --git a/Assets/Polytope Studio/Lowpoly_Village/Prefabs/Modular/Fence/PT_Modular_Fence_Wood_02.prefab.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Prefabs/Modular/Fence/PT_Modular_Fence_Wood_02.prefab.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Village/Prefabs/Modular/Fence/PT_Modular_Fence_Wood_02.prefab.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Prefabs/Modular/Fence/PT_Modular_Fence_Wood_02.prefab.meta diff --git a/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Prefabs/Modular/Fence/PT_Modular_Fence_Wood_03.prefab b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Prefabs/Modular/Fence/PT_Modular_Fence_Wood_03.prefab new file mode 100644 index 0000000..a2c3054 --- /dev/null +++ b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Prefabs/Modular/Fence/PT_Modular_Fence_Wood_03.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae7ec751e2a92b531a56f84acd498a3ae776206903ac85e6b0ee0a7abb1f83f0 +size 2856 diff --git a/Assets/Polytope Studio/Lowpoly_Village/Prefabs/Modular/Fence/PT_Modular_Fence_Wood_03.prefab.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Prefabs/Modular/Fence/PT_Modular_Fence_Wood_03.prefab.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Village/Prefabs/Modular/Fence/PT_Modular_Fence_Wood_03.prefab.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Prefabs/Modular/Fence/PT_Modular_Fence_Wood_03.prefab.meta diff --git a/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Prefabs/Modular/Fence/PT_Modular_Gate_Wood_01.prefab b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Prefabs/Modular/Fence/PT_Modular_Gate_Wood_01.prefab new file mode 100644 index 0000000..cfcce57 --- /dev/null +++ b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Prefabs/Modular/Fence/PT_Modular_Gate_Wood_01.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d11129b428f1cafbb1bb14fa2c286a345e3dee05fb2fecd9636d7ed073d12939 +size 9551 diff --git a/Assets/Polytope Studio/Lowpoly_Village/Prefabs/Modular/Fence/PT_Modular_Gate_Wood_01.prefab.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Prefabs/Modular/Fence/PT_Modular_Gate_Wood_01.prefab.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Village/Prefabs/Modular/Fence/PT_Modular_Gate_Wood_01.prefab.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Prefabs/Modular/Fence/PT_Modular_Gate_Wood_01.prefab.meta diff --git a/Assets/Polytope Studio/Lowpoly_Village/Sources.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Village/Sources.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources.meta diff --git a/Assets/Polytope Studio/Lowpoly_Village/Sources/Materials.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources/Materials.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Village/Sources/Materials.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources/Materials.meta diff --git a/Assets/Polytope Studio/Lowpoly_Village/Sources/Materials/PT_Buildings_mat.mat b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources/Materials/PT_Buildings_mat.mat similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Village/Sources/Materials/PT_Buildings_mat.mat rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources/Materials/PT_Buildings_mat.mat diff --git a/Assets/Polytope Studio/Lowpoly_Village/Sources/Materials/PT_Buildings_mat.mat.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources/Materials/PT_Buildings_mat.mat.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Village/Sources/Materials/PT_Buildings_mat.mat.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources/Materials/PT_Buildings_mat.mat.meta diff --git a/Assets/Polytope Studio/Lowpoly_Village/Sources/Materials/PT_mat.mat b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources/Materials/PT_mat.mat similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Village/Sources/Materials/PT_mat.mat rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources/Materials/PT_mat.mat diff --git a/Assets/Polytope Studio/Lowpoly_Village/Sources/Materials/PT_mat.mat.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources/Materials/PT_mat.mat.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Village/Sources/Materials/PT_mat.mat.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources/Materials/PT_mat.mat.meta diff --git a/Assets/Polytope Studio/Lowpoly_Village/Sources/Meshes.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources/Meshes.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Village/Sources/Meshes.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources/Meshes.meta diff --git a/Assets/Polytope Studio/Lowpoly_Village/Sources/Meshes/Modular.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources/Meshes/Modular.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Village/Sources/Meshes/Modular.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources/Meshes/Modular.meta diff --git a/Assets/Polytope Studio/Lowpoly_Village/Sources/Meshes/Modular/Bridge.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources/Meshes/Modular/Bridge.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Village/Sources/Meshes/Modular/Bridge.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources/Meshes/Modular/Bridge.meta diff --git a/Assets/Polytope Studio/Lowpoly_Village/Sources/Meshes/Modular/Bridge/PT_Wooden_Bridge_02.fbx b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources/Meshes/Modular/Bridge/PT_Wooden_Bridge_02.fbx similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Village/Sources/Meshes/Modular/Bridge/PT_Wooden_Bridge_02.fbx rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources/Meshes/Modular/Bridge/PT_Wooden_Bridge_02.fbx diff --git a/Assets/Polytope Studio/Lowpoly_Village/Sources/Meshes/Modular/Bridge/PT_Wooden_Bridge_02.fbx.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources/Meshes/Modular/Bridge/PT_Wooden_Bridge_02.fbx.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Village/Sources/Meshes/Modular/Bridge/PT_Wooden_Bridge_02.fbx.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources/Meshes/Modular/Bridge/PT_Wooden_Bridge_02.fbx.meta diff --git a/Assets/Polytope Studio/Lowpoly_Village/Sources/Meshes/Modular/Fence.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources/Meshes/Modular/Fence.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Village/Sources/Meshes/Modular/Fence.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources/Meshes/Modular/Fence.meta diff --git a/Assets/Polytope Studio/Lowpoly_Village/Sources/Meshes/Modular/Fence/PT_Modular_Fence_Wood_01.fbx b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources/Meshes/Modular/Fence/PT_Modular_Fence_Wood_01.fbx similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Village/Sources/Meshes/Modular/Fence/PT_Modular_Fence_Wood_01.fbx rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources/Meshes/Modular/Fence/PT_Modular_Fence_Wood_01.fbx diff --git a/Assets/Polytope Studio/Lowpoly_Village/Sources/Meshes/Modular/Fence/PT_Modular_Fence_Wood_01.fbx.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources/Meshes/Modular/Fence/PT_Modular_Fence_Wood_01.fbx.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Village/Sources/Meshes/Modular/Fence/PT_Modular_Fence_Wood_01.fbx.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources/Meshes/Modular/Fence/PT_Modular_Fence_Wood_01.fbx.meta diff --git a/Assets/Polytope Studio/Lowpoly_Village/Sources/Meshes/Modular/Fence/PT_Modular_Fence_Wood_02.fbx b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources/Meshes/Modular/Fence/PT_Modular_Fence_Wood_02.fbx similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Village/Sources/Meshes/Modular/Fence/PT_Modular_Fence_Wood_02.fbx rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources/Meshes/Modular/Fence/PT_Modular_Fence_Wood_02.fbx diff --git a/Assets/Polytope Studio/Lowpoly_Village/Sources/Meshes/Modular/Fence/PT_Modular_Fence_Wood_02.fbx.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources/Meshes/Modular/Fence/PT_Modular_Fence_Wood_02.fbx.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Village/Sources/Meshes/Modular/Fence/PT_Modular_Fence_Wood_02.fbx.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources/Meshes/Modular/Fence/PT_Modular_Fence_Wood_02.fbx.meta diff --git a/Assets/Polytope Studio/Lowpoly_Village/Sources/Meshes/Modular/Fence/PT_Modular_Fence_Wood_03.fbx b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources/Meshes/Modular/Fence/PT_Modular_Fence_Wood_03.fbx similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Village/Sources/Meshes/Modular/Fence/PT_Modular_Fence_Wood_03.fbx rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources/Meshes/Modular/Fence/PT_Modular_Fence_Wood_03.fbx diff --git a/Assets/Polytope Studio/Lowpoly_Village/Sources/Meshes/Modular/Fence/PT_Modular_Fence_Wood_03.fbx.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources/Meshes/Modular/Fence/PT_Modular_Fence_Wood_03.fbx.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Village/Sources/Meshes/Modular/Fence/PT_Modular_Fence_Wood_03.fbx.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources/Meshes/Modular/Fence/PT_Modular_Fence_Wood_03.fbx.meta diff --git a/Assets/Polytope Studio/Lowpoly_Village/Sources/Meshes/Modular/Fence/PT_Modular_Gate_Wood_01.fbx b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources/Meshes/Modular/Fence/PT_Modular_Gate_Wood_01.fbx similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Village/Sources/Meshes/Modular/Fence/PT_Modular_Gate_Wood_01.fbx rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources/Meshes/Modular/Fence/PT_Modular_Gate_Wood_01.fbx diff --git a/Assets/Polytope Studio/Lowpoly_Village/Sources/Meshes/Modular/Fence/PT_Modular_Gate_Wood_01.fbx.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources/Meshes/Modular/Fence/PT_Modular_Gate_Wood_01.fbx.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Village/Sources/Meshes/Modular/Fence/PT_Modular_Gate_Wood_01.fbx.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources/Meshes/Modular/Fence/PT_Modular_Gate_Wood_01.fbx.meta diff --git a/Assets/Polytope Studio/Lowpoly_Village/Sources/Shaders.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources/Shaders.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Village/Sources/Shaders.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources/Shaders.meta diff --git a/Assets/Polytope Studio/Lowpoly_Village/Sources/Shaders/PT_Buildings_Glass_PBR.shader b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources/Shaders/PT_Buildings_Glass_PBR.shader similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Village/Sources/Shaders/PT_Buildings_Glass_PBR.shader rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources/Shaders/PT_Buildings_Glass_PBR.shader diff --git a/Assets/Polytope Studio/Lowpoly_Village/Sources/Shaders/PT_Buildings_Glass_PBR.shader.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources/Shaders/PT_Buildings_Glass_PBR.shader.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Village/Sources/Shaders/PT_Buildings_Glass_PBR.shader.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources/Shaders/PT_Buildings_Glass_PBR.shader.meta diff --git a/Assets/Polytope Studio/Lowpoly_Village/Sources/Shaders/PT_Buildings_Shader_PBR.shader b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources/Shaders/PT_Buildings_Shader_PBR.shader similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Village/Sources/Shaders/PT_Buildings_Shader_PBR.shader rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources/Shaders/PT_Buildings_Shader_PBR.shader diff --git a/Assets/Polytope Studio/Lowpoly_Village/Sources/Shaders/PT_Buildings_Shader_PBR.shader.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources/Shaders/PT_Buildings_Shader_PBR.shader.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Village/Sources/Shaders/PT_Buildings_Shader_PBR.shader.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources/Shaders/PT_Buildings_Shader_PBR.shader.meta diff --git a/Assets/Polytope Studio/Lowpoly_Village/Sources/Textures.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources/Textures.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Village/Sources/Textures.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources/Textures.meta diff --git a/Assets/Polytope Studio/Lowpoly_Village/Sources/Textures/PT_Medieval_Buildings_Texture_01.png b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources/Textures/PT_Medieval_Buildings_Texture_01.png similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Village/Sources/Textures/PT_Medieval_Buildings_Texture_01.png rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources/Textures/PT_Medieval_Buildings_Texture_01.png diff --git a/Assets/Polytope Studio/Lowpoly_Village/Sources/Textures/PT_Medieval_Buildings_Texture_01.png.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources/Textures/PT_Medieval_Buildings_Texture_01.png.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Village/Sources/Textures/PT_Medieval_Buildings_Texture_01.png.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources/Textures/PT_Medieval_Buildings_Texture_01.png.meta diff --git a/Assets/Polytope Studio/Lowpoly_Village/Sources/Textures/PT_Medieval_Buildings_Texture_01mask2.png b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources/Textures/PT_Medieval_Buildings_Texture_01mask2.png similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Village/Sources/Textures/PT_Medieval_Buildings_Texture_01mask2.png rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources/Textures/PT_Medieval_Buildings_Texture_01mask2.png diff --git a/Assets/Polytope Studio/Lowpoly_Village/Sources/Textures/PT_Medieval_Buildings_Texture_01mask2.png.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources/Textures/PT_Medieval_Buildings_Texture_01mask2.png.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Village/Sources/Textures/PT_Medieval_Buildings_Texture_01mask2.png.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources/Textures/PT_Medieval_Buildings_Texture_01mask2.png.meta diff --git a/Assets/Polytope Studio/Lowpoly_Village/Sources/Textures/PT_Medieval_Buildings_Texture_Mask_01.png b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources/Textures/PT_Medieval_Buildings_Texture_Mask_01.png similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Village/Sources/Textures/PT_Medieval_Buildings_Texture_Mask_01.png rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources/Textures/PT_Medieval_Buildings_Texture_Mask_01.png diff --git a/Assets/Polytope Studio/Lowpoly_Village/Sources/Textures/PT_Medieval_Buildings_Texture_Mask_01.png.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources/Textures/PT_Medieval_Buildings_Texture_Mask_01.png.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Village/Sources/Textures/PT_Medieval_Buildings_Texture_Mask_01.png.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources/Textures/PT_Medieval_Buildings_Texture_Mask_01.png.meta diff --git a/Assets/Polytope Studio/Lowpoly_Village/Sources/Textures/PT_texture.tga b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources/Textures/PT_texture.tga similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Village/Sources/Textures/PT_texture.tga rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources/Textures/PT_texture.tga diff --git a/Assets/Polytope Studio/Lowpoly_Village/Sources/Textures/PT_texture.tga.meta b/Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources/Textures/PT_texture.tga.meta similarity index 100% rename from Assets/Polytope Studio/Lowpoly_Village/Sources/Textures/PT_texture.tga.meta rename to Assets/08_Environments/Objects/Polytope Studio/Lowpoly_Village/Sources/Textures/PT_texture.tga.meta diff --git a/Assets/Polytope Studio/Welcome_Screen.meta b/Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen.meta similarity index 100% rename from Assets/Polytope Studio/Welcome_Screen.meta rename to Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen.meta diff --git a/Assets/Polytope Studio/Welcome_Screen/Editor.meta b/Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor.meta similarity index 100% rename from Assets/Polytope Studio/Welcome_Screen/Editor.meta rename to Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor.meta diff --git a/Assets/Polytope Studio/Welcome_Screen/Editor/PT_Welcome_Screen.cs b/Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor/PT_Welcome_Screen.cs similarity index 100% rename from Assets/Polytope Studio/Welcome_Screen/Editor/PT_Welcome_Screen.cs rename to Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor/PT_Welcome_Screen.cs diff --git a/Assets/Polytope Studio/Welcome_Screen/Editor/PT_Welcome_Screen.cs.meta b/Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor/PT_Welcome_Screen.cs.meta similarity index 100% rename from Assets/Polytope Studio/Welcome_Screen/Editor/PT_Welcome_Screen.cs.meta rename to Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor/PT_Welcome_Screen.cs.meta diff --git a/Assets/Polytope Studio/Welcome_Screen/Editor/Textures.meta b/Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor/Textures.meta similarity index 100% rename from Assets/Polytope Studio/Welcome_Screen/Editor/Textures.meta rename to Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor/Textures.meta diff --git a/Assets/Polytope Studio/Welcome_Screen/Editor/Textures/banner_dark.png b/Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor/Textures/banner_dark.png similarity index 100% rename from Assets/Polytope Studio/Welcome_Screen/Editor/Textures/banner_dark.png rename to Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor/Textures/banner_dark.png diff --git a/Assets/Polytope Studio/Welcome_Screen/Editor/Textures/banner_dark.png.meta b/Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor/Textures/banner_dark.png.meta similarity index 100% rename from Assets/Polytope Studio/Welcome_Screen/Editor/Textures/banner_dark.png.meta rename to Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor/Textures/banner_dark.png.meta diff --git a/Assets/Polytope Studio/Welcome_Screen/Editor/Textures/demo1.png b/Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor/Textures/demo1.png similarity index 100% rename from Assets/Polytope Studio/Welcome_Screen/Editor/Textures/demo1.png rename to Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor/Textures/demo1.png diff --git a/Assets/Polytope Studio/Welcome_Screen/Editor/Textures/demo1.png.meta b/Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor/Textures/demo1.png.meta similarity index 100% rename from Assets/Polytope Studio/Welcome_Screen/Editor/Textures/demo1.png.meta rename to Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor/Textures/demo1.png.meta diff --git a/Assets/Polytope Studio/Welcome_Screen/Editor/Textures/demo2.png b/Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor/Textures/demo2.png similarity index 100% rename from Assets/Polytope Studio/Welcome_Screen/Editor/Textures/demo2.png rename to Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor/Textures/demo2.png diff --git a/Assets/Polytope Studio/Welcome_Screen/Editor/Textures/demo2.png.meta b/Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor/Textures/demo2.png.meta similarity index 100% rename from Assets/Polytope Studio/Welcome_Screen/Editor/Textures/demo2.png.meta rename to Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor/Textures/demo2.png.meta diff --git a/Assets/Polytope Studio/Welcome_Screen/Editor/Textures/game1.png b/Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor/Textures/game1.png similarity index 100% rename from Assets/Polytope Studio/Welcome_Screen/Editor/Textures/game1.png rename to Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor/Textures/game1.png diff --git a/Assets/Polytope Studio/Welcome_Screen/Editor/Textures/game1.png.meta b/Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor/Textures/game1.png.meta similarity index 100% rename from Assets/Polytope Studio/Welcome_Screen/Editor/Textures/game1.png.meta rename to Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor/Textures/game1.png.meta diff --git a/Assets/Polytope Studio/Welcome_Screen/Editor/Textures/game2.png b/Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor/Textures/game2.png similarity index 100% rename from Assets/Polytope Studio/Welcome_Screen/Editor/Textures/game2.png rename to Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor/Textures/game2.png diff --git a/Assets/Polytope Studio/Welcome_Screen/Editor/Textures/game2.png.meta b/Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor/Textures/game2.png.meta similarity index 100% rename from Assets/Polytope Studio/Welcome_Screen/Editor/Textures/game2.png.meta rename to Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor/Textures/game2.png.meta diff --git a/Assets/Polytope Studio/Welcome_Screen/Editor/Textures/game3.png b/Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor/Textures/game3.png similarity index 100% rename from Assets/Polytope Studio/Welcome_Screen/Editor/Textures/game3.png rename to Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor/Textures/game3.png diff --git a/Assets/Polytope Studio/Welcome_Screen/Editor/Textures/game3.png.meta b/Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor/Textures/game3.png.meta similarity index 100% rename from Assets/Polytope Studio/Welcome_Screen/Editor/Textures/game3.png.meta rename to Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor/Textures/game3.png.meta diff --git a/Assets/Polytope Studio/Welcome_Screen/Editor/Textures/game4.png b/Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor/Textures/game4.png similarity index 100% rename from Assets/Polytope Studio/Welcome_Screen/Editor/Textures/game4.png rename to Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor/Textures/game4.png diff --git a/Assets/Polytope Studio/Welcome_Screen/Editor/Textures/game4.png.meta b/Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor/Textures/game4.png.meta similarity index 100% rename from Assets/Polytope Studio/Welcome_Screen/Editor/Textures/game4.png.meta rename to Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor/Textures/game4.png.meta diff --git a/Assets/Polytope Studio/Welcome_Screen/Editor/Textures/game5.png b/Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor/Textures/game5.png similarity index 100% rename from Assets/Polytope Studio/Welcome_Screen/Editor/Textures/game5.png rename to Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor/Textures/game5.png diff --git a/Assets/Polytope Studio/Welcome_Screen/Editor/Textures/game5.png.meta b/Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor/Textures/game5.png.meta similarity index 100% rename from Assets/Polytope Studio/Welcome_Screen/Editor/Textures/game5.png.meta rename to Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor/Textures/game5.png.meta diff --git a/Assets/Polytope Studio/Welcome_Screen/Editor/Textures/game6.png b/Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor/Textures/game6.png similarity index 100% rename from Assets/Polytope Studio/Welcome_Screen/Editor/Textures/game6.png rename to Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor/Textures/game6.png diff --git a/Assets/Polytope Studio/Welcome_Screen/Editor/Textures/game6.png.meta b/Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor/Textures/game6.png.meta similarity index 100% rename from Assets/Polytope Studio/Welcome_Screen/Editor/Textures/game6.png.meta rename to Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor/Textures/game6.png.meta diff --git a/Assets/Polytope Studio/Welcome_Screen/Editor/Textures/icon_Instagram.png b/Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor/Textures/icon_Instagram.png similarity index 100% rename from Assets/Polytope Studio/Welcome_Screen/Editor/Textures/icon_Instagram.png rename to Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor/Textures/icon_Instagram.png diff --git a/Assets/Polytope Studio/Welcome_Screen/Editor/Textures/icon_Instagram.png.meta b/Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor/Textures/icon_Instagram.png.meta similarity index 100% rename from Assets/Polytope Studio/Welcome_Screen/Editor/Textures/icon_Instagram.png.meta rename to Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor/Textures/icon_Instagram.png.meta diff --git a/Assets/Polytope Studio/Welcome_Screen/Editor/Textures/icon_Tiktok.png b/Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor/Textures/icon_Tiktok.png similarity index 100% rename from Assets/Polytope Studio/Welcome_Screen/Editor/Textures/icon_Tiktok.png rename to Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor/Textures/icon_Tiktok.png diff --git a/Assets/Polytope Studio/Welcome_Screen/Editor/Textures/icon_Tiktok.png.meta b/Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor/Textures/icon_Tiktok.png.meta similarity index 100% rename from Assets/Polytope Studio/Welcome_Screen/Editor/Textures/icon_Tiktok.png.meta rename to Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor/Textures/icon_Tiktok.png.meta diff --git a/Assets/Polytope Studio/Welcome_Screen/Editor/Textures/icon_Youtube.png b/Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor/Textures/icon_Youtube.png similarity index 100% rename from Assets/Polytope Studio/Welcome_Screen/Editor/Textures/icon_Youtube.png rename to Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor/Textures/icon_Youtube.png diff --git a/Assets/Polytope Studio/Welcome_Screen/Editor/Textures/icon_Youtube.png.meta b/Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor/Textures/icon_Youtube.png.meta similarity index 100% rename from Assets/Polytope Studio/Welcome_Screen/Editor/Textures/icon_Youtube.png.meta rename to Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor/Textures/icon_Youtube.png.meta diff --git a/Assets/Polytope Studio/Welcome_Screen/Editor/Textures/icon_artstation.png b/Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor/Textures/icon_artstation.png similarity index 100% rename from Assets/Polytope Studio/Welcome_Screen/Editor/Textures/icon_artstation.png rename to Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor/Textures/icon_artstation.png diff --git a/Assets/Polytope Studio/Welcome_Screen/Editor/Textures/icon_artstation.png.meta b/Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor/Textures/icon_artstation.png.meta similarity index 100% rename from Assets/Polytope Studio/Welcome_Screen/Editor/Textures/icon_artstation.png.meta rename to Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor/Textures/icon_artstation.png.meta diff --git a/Assets/Polytope Studio/Welcome_Screen/Editor/Textures/icon_facebook.png b/Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor/Textures/icon_facebook.png similarity index 100% rename from Assets/Polytope Studio/Welcome_Screen/Editor/Textures/icon_facebook.png rename to Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor/Textures/icon_facebook.png diff --git a/Assets/Polytope Studio/Welcome_Screen/Editor/Textures/icon_facebook.png.meta b/Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor/Textures/icon_facebook.png.meta similarity index 100% rename from Assets/Polytope Studio/Welcome_Screen/Editor/Textures/icon_facebook.png.meta rename to Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor/Textures/icon_facebook.png.meta diff --git a/Assets/Polytope Studio/Welcome_Screen/Editor/Textures/icon_twitter.png b/Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor/Textures/icon_twitter.png similarity index 100% rename from Assets/Polytope Studio/Welcome_Screen/Editor/Textures/icon_twitter.png rename to Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor/Textures/icon_twitter.png diff --git a/Assets/Polytope Studio/Welcome_Screen/Editor/Textures/icon_twitter.png.meta b/Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor/Textures/icon_twitter.png.meta similarity index 100% rename from Assets/Polytope Studio/Welcome_Screen/Editor/Textures/icon_twitter.png.meta rename to Assets/08_Environments/Objects/Polytope Studio/Welcome_Screen/Editor/Textures/icon_twitter.png.meta diff --git a/Assets/08_UI/Combat/Image/crosshair.png b/Assets/08_UI/Combat/Image/crosshair.png deleted file mode 100644 index c6e8df7..0000000 --- a/Assets/08_UI/Combat/Image/crosshair.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:928e4930d27d04d3e365f976830665efb18f730153cf1b3e772bfd1ed05169a2 -size 6077 diff --git a/Assets/08_UI/Combat/Textures/crosshair.png b/Assets/08_UI/Combat/Textures/crosshair.png deleted file mode 100644 index c6e8df7..0000000 --- a/Assets/08_UI/Combat/Textures/crosshair.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:928e4930d27d04d3e365f976830665efb18f730153cf1b3e772bfd1ed05169a2 -size 6077 diff --git a/Assets/08_UI/Health/Textures/UI_HPBar.png b/Assets/08_UI/Health/Textures/UI_HPBar.png deleted file mode 100644 index 06ee5c9..0000000 --- a/Assets/08_UI/Health/Textures/UI_HPBar.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c574a06e4fecac5dfa10868b536356a7fa50eef41e9e94fcda80c98bfd8acb5e -size 64675 diff --git a/Assets/08_UI/Health/Textures/UI_HPBar_Background.png b/Assets/08_UI/Health/Textures/UI_HPBar_Background.png deleted file mode 100644 index 33d2925..0000000 --- a/Assets/08_UI/Health/Textures/UI_HPBar_Background.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a44c1bcbc07af2d0ccbd0446145431a7bf688e51faab92b02653a04dc4ed275e -size 1740 diff --git a/Assets/08_UI/Health/Textures/UI_ManaBar.png b/Assets/08_UI/Health/Textures/UI_ManaBar.png deleted file mode 100644 index a324549..0000000 --- a/Assets/08_UI/Health/Textures/UI_ManaBar.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b94f8e9ba84a0f5436236a10d7647bcf04a8b5d18d502249868bff9313259b91 -size 13474 diff --git a/Assets/08_UI/Health/Textures/UI_ManaBar_Background.png b/Assets/08_UI/Health/Textures/UI_ManaBar_Background.png deleted file mode 100644 index 07736cd..0000000 --- a/Assets/08_UI/Health/Textures/UI_ManaBar_Background.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:636c75392471a2eb85f77e384e38cf4e92075fc976edb62534e01d4e86a240b8 -size 437 diff --git a/Assets/08_UI/Health/Textures/UI_StaminaBar.png b/Assets/08_UI/Health/Textures/UI_StaminaBar.png deleted file mode 100644 index 0895619..0000000 --- a/Assets/08_UI/Health/Textures/UI_StaminaBar.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:51a4ac7e5461d4930e526dcb76c7edf84b41ab772a10b4d74c6c55bb564f06e2 -size 3292 diff --git a/Assets/08_UI/Health/Textures/UI_StaminaBar_Background.png b/Assets/08_UI/Health/Textures/UI_StaminaBar_Background.png deleted file mode 100644 index 07736cd..0000000 --- a/Assets/08_UI/Health/Textures/UI_StaminaBar_Background.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:636c75392471a2eb85f77e384e38cf4e92075fc976edb62534e01d4e86a240b8 -size 437 diff --git a/Assets/08_UI/Inventory/Prefabs/Slot.prefab b/Assets/08_UI/Inventory/Prefabs/Slot.prefab deleted file mode 100644 index 8b3e4b6..0000000 --- a/Assets/08_UI/Inventory/Prefabs/Slot.prefab +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ad45b10af25b7d5f2d036000f8726f5b77e36a30946435fccae4efb3a9fb47c6 -size 16476 diff --git a/Assets/08_UI/Inventory/Textures/Inven_Bg.png b/Assets/08_UI/Inventory/Textures/Inven_Bg.png deleted file mode 100644 index 961ff27..0000000 --- a/Assets/08_UI/Inventory/Textures/Inven_Bg.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:833182d36d94e99583715fd7bc446fc0e90605d3ae382f4e9e993cbc9626ca9b -size 84250 diff --git a/Assets/08_UI/Inventory/Textures/Item_Bg_1.png b/Assets/08_UI/Inventory/Textures/Item_Bg_1.png deleted file mode 100644 index 2675e2e..0000000 --- a/Assets/08_UI/Inventory/Textures/Item_Bg_1.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:79e4003136f3437f91d7b980136015207f9b9a9d09d1963d9ec79ef109bd3790 -size 15763 diff --git a/Assets/08_UI/Inventory/Textures/Item_Bg_2.png b/Assets/08_UI/Inventory/Textures/Item_Bg_2.png deleted file mode 100644 index 83a1203..0000000 --- a/Assets/08_UI/Inventory/Textures/Item_Bg_2.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8a943dca28f92a1b0659edf4fff99939301568e1ce4d6bda694cd9f0264adf4e -size 14990 diff --git a/Assets/08_UI/Inventory/Textures/Item_Bg_3.png b/Assets/08_UI/Inventory/Textures/Item_Bg_3.png deleted file mode 100644 index 94f3e13..0000000 --- a/Assets/08_UI/Inventory/Textures/Item_Bg_3.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:711a4017f4a44e76661551f04182f326582d36a95e8c22c4bca7472033a33520 -size 14788 diff --git a/Assets/08_UI/Inventory/Textures/Item_Bg_4.png b/Assets/08_UI/Inventory/Textures/Item_Bg_4.png deleted file mode 100644 index 091a59e..0000000 --- a/Assets/08_UI/Inventory/Textures/Item_Bg_4.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:84138374b69c8be8d952c63ea11a73630c33d8d70bb3a3fdca7b60696d46d623 -size 14955 diff --git a/Assets/08_UI/Inventory/Textures/Item_Bg_None.png b/Assets/08_UI/Inventory/Textures/Item_Bg_None.png deleted file mode 100644 index c5f0d76..0000000 --- a/Assets/08_UI/Inventory/Textures/Item_Bg_None.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f3c6c375266d08fa363185e6a41d4e4c3a35f32224c2fd5e9e40c66118e5e656 -size 15180 diff --git a/Assets/08_UI/Inventory/Textures/Item_Select.png b/Assets/08_UI/Inventory/Textures/Item_Select.png deleted file mode 100644 index 4f6788c..0000000 --- a/Assets/08_UI/Inventory/Textures/Item_Select.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b2ea081fb95538c531428d17c363e41e700788507ed8feda36f8731a23f8f011 -size 1244 diff --git a/Assets/08_UI/Inventory/Textures/Tap_Off.png b/Assets/08_UI/Inventory/Textures/Tap_Off.png deleted file mode 100644 index a173c7a..0000000 --- a/Assets/08_UI/Inventory/Textures/Tap_Off.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:dd2284b17cca86f2799b2aa8149b07c8390290040770df5a1bc65bd1b8d7ebb4 -size 1117 diff --git a/Assets/08_UI/Inventory/Textures/Tap_On.png b/Assets/08_UI/Inventory/Textures/Tap_On.png deleted file mode 100644 index 3ea7b4a..0000000 --- a/Assets/08_UI/Inventory/Textures/Tap_On.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:fe25d2f235c84e9e36699a8d6e76ad69866f0a0ce8a57e8b9a55b220c4f7923a -size 1716 diff --git a/Assets/08_UI/Loading/Image/로딩바.png b/Assets/08_UI/Loading/Image/로딩바.png deleted file mode 100644 index 97e1e2c..0000000 --- a/Assets/08_UI/Loading/Image/로딩바.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:349951d905dfc3c2f48c80b47655e88dae6de7f8e995967b0131bd36c62e8ee9 -size 2083 diff --git a/Assets/08_UI/Shape/Circle.png b/Assets/08_UI/Shape/Circle.png deleted file mode 100644 index f7e0dd6..0000000 --- a/Assets/08_UI/Shape/Circle.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4fc6c4600794e712a241ea489575d9c99129b161cef8d6bb4fe782eb07109f99 -size 4781 diff --git a/Assets/08_UI/Title/Image/Background.png b/Assets/08_UI/Title/Image/Background.png deleted file mode 100644 index c6a028b..0000000 --- a/Assets/08_UI/Title/Image/Background.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6bf6427cec96e393a751ef6249769bdbcacba51b97bc4c30b6053869679395ba -size 1836617 diff --git a/Assets/08_UI/Title/Image/UI_Exit_Edit.png b/Assets/08_UI/Title/Image/UI_Exit_Edit.png deleted file mode 100644 index 9e35949..0000000 --- a/Assets/08_UI/Title/Image/UI_Exit_Edit.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:848227ebaa76b7f8f3fb53cccb29bddd5d451f04dbf7c787b15a362604aedfbd -size 40301 diff --git a/Assets/08_UI/Title/Image/UI_GameStart_Edit.png b/Assets/08_UI/Title/Image/UI_GameStart_Edit.png deleted file mode 100644 index 5212c2f..0000000 --- a/Assets/08_UI/Title/Image/UI_GameStart_Edit.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c6c69a21ca1a1362b8438b2131ed8d2dfa308c20e20e6ef5ea0c2ee6ead3f71c -size 90850 diff --git a/Assets/08_UI/_Shared/Icon/Icon_All.png b/Assets/08_UI/_Shared/Icon/Icon_All.png deleted file mode 100644 index cf22a63..0000000 --- a/Assets/08_UI/_Shared/Icon/Icon_All.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:45e7ef0cc0745925059470b65dfc9f1ce4a173f4c58d9f49dd27862be095e03a -size 14265 diff --git a/Assets/08_UI/_Shared/Icon/Icon_Attack.png b/Assets/08_UI/_Shared/Icon/Icon_Attack.png deleted file mode 100644 index f100149..0000000 --- a/Assets/08_UI/_Shared/Icon/Icon_Attack.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c2a356a202df1dac9bee4b65cdbe4fca53d3d2c75494cb97325b12a04ad1f71e -size 1514 diff --git a/Assets/08_UI/_Shared/Icon/Icon_Consumables.png b/Assets/08_UI/_Shared/Icon/Icon_Consumables.png deleted file mode 100644 index 475df66..0000000 --- a/Assets/08_UI/_Shared/Icon/Icon_Consumables.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1d74f45e4018837076c61b5ac42c9813e9773a3c2e30b1ab592a76325c5948a8 -size 17175 diff --git a/Assets/08_UI/_Shared/Icon/Icon_Currency.png b/Assets/08_UI/_Shared/Icon/Icon_Currency.png deleted file mode 100644 index a516ca0..0000000 --- a/Assets/08_UI/_Shared/Icon/Icon_Currency.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:60d3137e423625ad81e964686034dedee96c95dead554187fb694dbdbd42ce0c -size 19287 diff --git a/Assets/08_UI/_Shared/Icon/Icon_Exit.png b/Assets/08_UI/_Shared/Icon/Icon_Exit.png deleted file mode 100644 index f41167c..0000000 --- a/Assets/08_UI/_Shared/Icon/Icon_Exit.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b362dff733848ec335d117e5c04d4a24cfb0b8c3d8a6b4e5938ca2b9e266af67 -size 15867 diff --git a/Assets/08_UI/_Shared/Icon/Icon_Materials.png b/Assets/08_UI/_Shared/Icon/Icon_Materials.png deleted file mode 100644 index f5737ac..0000000 --- a/Assets/08_UI/_Shared/Icon/Icon_Materials.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ea177d98e722cc4bb6548e54f6b9bd000b9b088a6458d817c9e463d6ad605393 -size 17607 diff --git a/Assets/08_UI/_Shared/Icon/Icon_Sit.png b/Assets/08_UI/_Shared/Icon/Icon_Sit.png deleted file mode 100644 index 4b4c4b5..0000000 --- a/Assets/08_UI/_Shared/Icon/Icon_Sit.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:96ed6ce3108fbde00004c6913945893e8022981f3258b7fffeb0aca38a22dff5 -size 7024 diff --git a/Assets/08_UI/_Shared/Icon/Icon_bag.png b/Assets/08_UI/_Shared/Icon/Icon_bag.png deleted file mode 100644 index 131e807..0000000 --- a/Assets/08_UI/_Shared/Icon/Icon_bag.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b9ca1f6011ad60203cd7061d621794047b30b190e0ce0de35195196a52c5a039 -size 18147 diff --git a/Assets/08_UI/_Shared/Textures/DecoLine.png b/Assets/08_UI/_Shared/Textures/DecoLine.png deleted file mode 100644 index 92da1c9..0000000 --- a/Assets/08_UI/_Shared/Textures/DecoLine.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:75b4173e98ac16aa87152156fc7e03e4411a75081551a23cdb12ccc18714bddf -size 305 diff --git a/Assets/08_UI/_Shared/Textures/Popup_Bg.png b/Assets/08_UI/_Shared/Textures/Popup_Bg.png deleted file mode 100644 index ece7d24..0000000 --- a/Assets/08_UI/_Shared/Textures/Popup_Bg.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1d75a92b08c8ad2c4176744f909ff0c0356a534870251244286cec99ff884a84 -size 1066207 diff --git a/Assets/08_UI/_Shared/Textures/White_Btn.png b/Assets/08_UI/_Shared/Textures/White_Btn.png deleted file mode 100644 index 9736cff..0000000 --- a/Assets/08_UI/_Shared/Textures/White_Btn.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:945c9f84a9938fc8da7e07729c0dac73b3107c7e59a02f52acbc0c925d338970 -size 2719 diff --git a/Assets/MagicaCloth2/PT_Ore_Rock_01.prefab.meta b/Assets/MagicaCloth2/PT_Ore_Rock_01.prefab.meta index 3b8e630..199ce72 100644 --- a/Assets/MagicaCloth2/PT_Ore_Rock_01.prefab.meta +++ b/Assets/MagicaCloth2/PT_Ore_Rock_01.prefab.meta @@ -10,5 +10,5 @@ AssetOrigin: productId: 187052 packageName: Lowpoly Environment - Nature Free - MEDIEVAL FANTASY SERIES packageVersion: 1.1.1 - assetPath: Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Rocks/PT_Ore_Rock_01.prefab + assetPath: Assets/MagicaCloth2/PT_Ore_Rock_01.prefab uploadId: 870152 diff --git a/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Environment_Free.unity b/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Environment_Free.unity deleted file mode 100644 index 0e6124f..0000000 --- a/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Environment_Free.unity +++ /dev/null @@ -1,2675 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!29 &1 -OcclusionCullingSettings: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_OcclusionBakeSettings: - smallestOccluder: 5 - smallestHole: 0.25 - backfaceThreshold: 100 - m_SceneGUID: 00000000000000000000000000000000 - m_OcclusionCullingData: {fileID: 0} ---- !u!104 &2 -RenderSettings: - m_ObjectHideFlags: 0 - serializedVersion: 9 - m_Fog: 1 - m_FogColor: {r: 0.6313726, g: 1, b: 1, a: 1} - m_FogMode: 1 - m_FogDensity: 0.01 - m_LinearFogStart: 15 - m_LinearFogEnd: 290.2 - m_AmbientSkyColor: {r: 0.212, g: 0.227, b: 0.259, a: 1} - m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1} - m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1} - m_AmbientIntensity: 1 - m_AmbientMode: 0 - m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} - m_SkyboxMaterial: {fileID: 2100000, guid: 59573b088aaea0442bf29e0a0e9d1339, type: 2} - m_HaloStrength: 0.5 - m_FlareStrength: 1 - m_FlareFadeSpeed: 3 - m_HaloTexture: {fileID: 0} - m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} - m_DefaultReflectionMode: 0 - m_DefaultReflectionResolution: 128 - m_ReflectionBounces: 1 - m_ReflectionIntensity: 1 - m_CustomReflection: {fileID: 0} - m_Sun: {fileID: 0} - m_UseRadianceAmbientProbe: 0 ---- !u!157 &3 -LightmapSettings: - m_ObjectHideFlags: 0 - serializedVersion: 12 - m_GIWorkflowMode: 1 - m_GISettings: - serializedVersion: 2 - m_BounceScale: 1 - m_IndirectOutputScale: 1 - m_AlbedoBoost: 1 - m_EnvironmentLightingMode: 0 - m_EnableBakedLightmaps: 1 - m_EnableRealtimeLightmaps: 0 - m_LightmapEditorSettings: - serializedVersion: 12 - m_Resolution: 2 - m_BakeResolution: 40 - m_AtlasSize: 1024 - m_AO: 0 - m_AOMaxDistance: 1 - m_CompAOExponent: 1 - m_CompAOExponentDirect: 0 - m_ExtractAmbientOcclusion: 0 - m_Padding: 2 - m_LightmapParameters: {fileID: 0} - m_LightmapsBakeMode: 1 - m_TextureCompression: 1 - m_FinalGather: 0 - m_FinalGatherFiltering: 1 - m_FinalGatherRayCount: 256 - m_ReflectionCompression: 2 - m_MixedBakeMode: 2 - m_BakeBackend: 1 - m_PVRSampling: 1 - m_PVRDirectSampleCount: 32 - m_PVRSampleCount: 512 - m_PVRBounces: 2 - m_PVREnvironmentSampleCount: 256 - m_PVREnvironmentReferencePointCount: 2048 - m_PVRFilteringMode: 1 - m_PVRDenoiserTypeDirect: 1 - m_PVRDenoiserTypeIndirect: 1 - m_PVRDenoiserTypeAO: 1 - m_PVRFilterTypeDirect: 0 - m_PVRFilterTypeIndirect: 0 - m_PVRFilterTypeAO: 0 - m_PVREnvironmentMIS: 1 - m_PVRCulling: 1 - m_PVRFilteringGaussRadiusDirect: 1 - m_PVRFilteringGaussRadiusIndirect: 5 - m_PVRFilteringGaussRadiusAO: 2 - m_PVRFilteringAtrousPositionSigmaDirect: 0.5 - m_PVRFilteringAtrousPositionSigmaIndirect: 2 - m_PVRFilteringAtrousPositionSigmaAO: 1 - m_ExportTrainingData: 0 - m_TrainingDataDestination: TrainingData - m_LightProbeSampleCountMultiplier: 4 - m_LightingDataAsset: {fileID: 0} - m_LightingSettings: {fileID: 0} ---- !u!196 &4 -NavMeshSettings: - serializedVersion: 2 - m_ObjectHideFlags: 0 - m_BuildSettings: - serializedVersion: 3 - agentTypeID: 0 - agentRadius: 0.5 - agentHeight: 2 - agentSlope: 45 - agentClimb: 0.4 - ledgeDropHeight: 0 - maxJumpAcrossDistance: 0 - minRegionArea: 2 - manualCellSize: 0 - cellSize: 0.16666667 - manualTileSize: 0 - tileSize: 256 - buildHeightMesh: 0 - maxJobWorkers: 0 - preserveTilesOutsideBounds: 0 - debug: - m_Flags: 0 - m_NavMeshData: {fileID: 0} ---- !u!1 &59547872 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 59547875} - - component: {fileID: 59547874} - - component: {fileID: 59547873} - m_Layer: 0 - m_Name: Terrain_(-100.0, 0.0, 26.9) - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 - m_IsActive: 1 ---- !u!154 &59547873 -TerrainCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 59547872} - m_Material: {fileID: 0} - m_IncludeLayers: - serializedVersion: 2 - m_Bits: 0 - m_ExcludeLayers: - serializedVersion: 2 - m_Bits: 0 - m_LayerOverridePriority: 0 - m_ProvidesContacts: 0 - m_Enabled: 1 - serializedVersion: 2 - m_TerrainData: {fileID: 15600000, guid: abd9fc8a29ea3f549bf82c3d3b8c843f, type: 2} - m_EnableTreeColliders: 1 ---- !u!218 &59547874 -Terrain: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 59547872} - m_Enabled: 1 - serializedVersion: 6 - m_TerrainData: {fileID: 15600000, guid: abd9fc8a29ea3f549bf82c3d3b8c843f, type: 2} - m_TreeDistance: 1000 - m_TreeBillboardDistance: 300 - m_TreeCrossFadeLength: 5 - m_TreeMaximumFullLODCount: 50 - m_DetailObjectDistance: 200 - m_DetailObjectDensity: 1 - m_HeightmapPixelError: 5 - m_SplatMapDistance: 1000 - m_HeightmapMinimumLODSimplification: 0 - m_HeightmapMaximumLOD: 0 - m_ShadowCastingMode: 2 - m_DrawHeightmap: 1 - m_DrawInstanced: 0 - m_DrawTreesAndFoliage: 1 - m_StaticShadowCaster: 0 - m_IgnoreQualitySettings: 0 - m_ReflectionProbeUsage: 1 - m_MaterialTemplate: {fileID: 10652, guid: 0000000000000000f000000000000000, type: 0} - m_BakeLightProbesForTrees: 0 - m_PreserveTreePrototypeLayers: 1 - m_DeringLightProbesForTrees: 1 - m_ReceiveGI: 1 - m_ScaleInLightmap: 0.256 - m_LightmapParameters: {fileID: 15203, guid: 0000000000000000f000000000000000, type: 0} - m_GroupingID: 0 - m_RenderingLayerMask: 1 - m_AllowAutoConnect: 1 - m_EnableHeightmapRayTracing: 1 - m_EnableTreesAndDetailsRayTracing: 0 - m_TreeMotionVectorModeOverride: 3 ---- !u!4 &59547875 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 59547872} - serializedVersion: 2 - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -100, y: 0, z: 26.9} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 894822543} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!1 &139766767 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 139766769} - - component: {fileID: 139766768} - - component: {fileID: 139766770} - m_Layer: 0 - m_Name: Player - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!143 &139766768 -CharacterController: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 139766767} - m_Material: {fileID: 0} - m_IncludeLayers: - serializedVersion: 2 - m_Bits: 0 - m_ExcludeLayers: - serializedVersion: 2 - m_Bits: 0 - m_LayerOverridePriority: 0 - m_IsTrigger: 0 - m_ProvidesContacts: 0 - m_Enabled: 1 - serializedVersion: 3 - m_Height: 1.8 - m_Radius: 0.5 - m_SlopeLimit: 45 - m_StepOffset: 0.3 - m_SkinWidth: 0.08 - m_MinMoveDistance: 0.001 - m_Center: {x: 0, y: 0, z: 0} ---- !u!4 &139766769 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 139766767} - serializedVersion: 2 - m_LocalRotation: {x: 0.04314583, y: 0.7489485, z: -0.0490049, w: 0.6594036} - m_LocalPosition: {x: 25.08, y: 4, z: 68.8} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 1589245845} - m_Father: {fileID: 0} - m_LocalEulerAnglesHint: {x: 7.4870005, y: 97.276, z: 0} ---- !u!114 &139766770 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 139766767} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 8f5721f45a4372242a249d3bb70958a8, type: 3} - m_Name: - m_EditorClassIdentifier: - controller: {fileID: 139766768} - speed: 3 - gravity: -9.18 - jumpHeight: 3 - groundCheck: {fileID: 894822543} - groundDistance: 0.4 - groundMask: - serializedVersion: 2 - m_Bits: 0 ---- !u!1 &201706614 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 201706615} - m_Layer: 0 - m_Name: colliders - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &201706615 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 201706614} - serializedVersion: 2 - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 496346999} - - {fileID: 996878108} - - {fileID: 1906367010} - - {fileID: 1193500419} - m_Father: {fileID: 0} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!1001 &333149449 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 0} - m_Modifications: - - target: {fileID: -8679921383154817045, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} - propertyPath: m_RootOrder - value: 11 - objectReference: {fileID: 0} - - target: {fileID: -8679921383154817045, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} - propertyPath: m_LocalScale.x - value: 0.58139 - objectReference: {fileID: 0} - - target: {fileID: -8679921383154817045, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} - propertyPath: m_LocalScale.y - value: 0.58139 - objectReference: {fileID: 0} - - target: {fileID: -8679921383154817045, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} - propertyPath: m_LocalScale.z - value: 0.58139 - objectReference: {fileID: 0} - - target: {fileID: -8679921383154817045, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} - propertyPath: m_LocalPosition.x - value: 30.856613 - objectReference: {fileID: 0} - - target: {fileID: -8679921383154817045, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} - propertyPath: m_LocalPosition.y - value: 3.069 - objectReference: {fileID: 0} - - target: {fileID: -8679921383154817045, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} - propertyPath: m_LocalPosition.z - value: 67.229 - objectReference: {fileID: 0} - - target: {fileID: -8679921383154817045, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} - propertyPath: m_LocalRotation.w - value: 0.98971844 - objectReference: {fileID: 0} - - target: {fileID: -8679921383154817045, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} - propertyPath: m_LocalRotation.x - value: -0 - objectReference: {fileID: 0} - - target: {fileID: -8679921383154817045, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} - propertyPath: m_LocalRotation.y - value: -0 - objectReference: {fileID: 0} - - target: {fileID: -8679921383154817045, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} - propertyPath: m_LocalRotation.z - value: -0.1430295 - objectReference: {fileID: 0} - - target: {fileID: -8679921383154817045, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: -8679921383154817045, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: -8679921383154817045, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: -16.446 - objectReference: {fileID: 0} - - target: {fileID: 919132149155446097, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} - propertyPath: m_Name - value: PT_Caesars_Mushroom_01 (5) - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} ---- !u!1 &348962308 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 348962311} - - component: {fileID: 348962310} - - component: {fileID: 348962309} - m_Layer: 0 - m_Name: Terrain_(-100.0, 0.0, -73.1) - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 - m_IsActive: 1 ---- !u!154 &348962309 -TerrainCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 348962308} - m_Material: {fileID: 0} - m_IncludeLayers: - serializedVersion: 2 - m_Bits: 0 - m_ExcludeLayers: - serializedVersion: 2 - m_Bits: 0 - m_LayerOverridePriority: 0 - m_ProvidesContacts: 0 - m_Enabled: 1 - serializedVersion: 2 - m_TerrainData: {fileID: 15600000, guid: b273ce15435a60644bcd2c174476a708, type: 2} - m_EnableTreeColliders: 1 ---- !u!218 &348962310 -Terrain: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 348962308} - m_Enabled: 1 - serializedVersion: 6 - m_TerrainData: {fileID: 15600000, guid: b273ce15435a60644bcd2c174476a708, type: 2} - m_TreeDistance: 1000 - m_TreeBillboardDistance: 300 - m_TreeCrossFadeLength: 5 - m_TreeMaximumFullLODCount: 50 - m_DetailObjectDistance: 200 - m_DetailObjectDensity: 1 - m_HeightmapPixelError: 5 - m_SplatMapDistance: 1000 - m_HeightmapMinimumLODSimplification: 0 - m_HeightmapMaximumLOD: 0 - m_ShadowCastingMode: 2 - m_DrawHeightmap: 1 - m_DrawInstanced: 0 - m_DrawTreesAndFoliage: 1 - m_StaticShadowCaster: 0 - m_IgnoreQualitySettings: 0 - m_ReflectionProbeUsage: 1 - m_MaterialTemplate: {fileID: 10652, guid: 0000000000000000f000000000000000, type: 0} - m_BakeLightProbesForTrees: 0 - m_PreserveTreePrototypeLayers: 1 - m_DeringLightProbesForTrees: 1 - m_ReceiveGI: 1 - m_ScaleInLightmap: 0.256 - m_LightmapParameters: {fileID: 15203, guid: 0000000000000000f000000000000000, type: 0} - m_GroupingID: 0 - m_RenderingLayerMask: 1 - m_AllowAutoConnect: 1 - m_EnableHeightmapRayTracing: 1 - m_EnableTreesAndDetailsRayTracing: 0 - m_TreeMotionVectorModeOverride: 3 ---- !u!4 &348962311 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 348962308} - serializedVersion: 2 - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -100, y: 0, z: -73.1} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 894822543} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!1 &496346995 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 496346999} - - component: {fileID: 496346998} - - component: {fileID: 496346997} - - component: {fileID: 496346996} - m_Layer: 0 - m_Name: Cube - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!65 &496346996 -BoxCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 496346995} - m_Material: {fileID: 0} - m_IncludeLayers: - serializedVersion: 2 - m_Bits: 0 - m_ExcludeLayers: - serializedVersion: 2 - m_Bits: 0 - m_LayerOverridePriority: 0 - m_IsTrigger: 0 - m_ProvidesContacts: 0 - m_Enabled: 1 - serializedVersion: 3 - m_Size: {x: 1, y: 1, z: 1} - m_Center: {x: 0, y: 0, z: 0} ---- !u!23 &496346997 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 496346995} - m_Enabled: 0 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 10303, guid: 0000000000000000f000000000000000, type: 0} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!33 &496346998 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 496346995} - m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} ---- !u!4 &496346999 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 496346995} - serializedVersion: 2 - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 50.2, y: 10.1, z: 141.7} - m_LocalScale: {x: 220.92015, y: 37.056255, z: 1.6788} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 201706615} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!1 &894822542 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 894822543} - m_Layer: 0 - m_Name: Terrain - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &894822543 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 894822542} - serializedVersion: 2 - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 59547875} - - {fileID: 1699032206} - - {fileID: 1011112322} - - {fileID: 1626380782} - - {fileID: 2092571625} - - {fileID: 2129354789} - - {fileID: 1697539112} - - {fileID: 348962311} - - {fileID: 1143006926} - m_Father: {fileID: 0} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!1 &996878104 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 996878108} - - component: {fileID: 996878107} - - component: {fileID: 996878106} - - component: {fileID: 996878105} - m_Layer: 0 - m_Name: Cube (1) - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!65 &996878105 -BoxCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 996878104} - m_Material: {fileID: 0} - m_IncludeLayers: - serializedVersion: 2 - m_Bits: 0 - m_ExcludeLayers: - serializedVersion: 2 - m_Bits: 0 - m_LayerOverridePriority: 0 - m_IsTrigger: 0 - m_ProvidesContacts: 0 - m_Enabled: 1 - serializedVersion: 3 - m_Size: {x: 1, y: 1, z: 1} - m_Center: {x: 0, y: 0, z: 0} ---- !u!23 &996878106 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 996878104} - m_Enabled: 0 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 10303, guid: 0000000000000000f000000000000000, type: 0} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!33 &996878107 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 996878104} - m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} ---- !u!4 &996878108 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 996878104} - serializedVersion: 2 - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 50.2, y: 10.1, z: -1.3} - m_LocalScale: {x: 165.09795, y: 27.692863, z: 1.2546} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 201706615} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!1 &1011112319 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1011112322} - - component: {fileID: 1011112321} - - component: {fileID: 1011112320} - m_Layer: 0 - m_Name: Terrain_(0.0, 0.0, 126.9) - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 - m_IsActive: 1 ---- !u!154 &1011112320 -TerrainCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1011112319} - m_Material: {fileID: 0} - m_IncludeLayers: - serializedVersion: 2 - m_Bits: 0 - m_ExcludeLayers: - serializedVersion: 2 - m_Bits: 0 - m_LayerOverridePriority: 0 - m_ProvidesContacts: 0 - m_Enabled: 1 - serializedVersion: 2 - m_TerrainData: {fileID: 15600000, guid: d9f3564d21751d046890366f3fc55400, type: 2} - m_EnableTreeColliders: 1 ---- !u!218 &1011112321 -Terrain: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1011112319} - m_Enabled: 1 - serializedVersion: 6 - m_TerrainData: {fileID: 15600000, guid: d9f3564d21751d046890366f3fc55400, type: 2} - m_TreeDistance: 1000 - m_TreeBillboardDistance: 300 - m_TreeCrossFadeLength: 5 - m_TreeMaximumFullLODCount: 50 - m_DetailObjectDistance: 200 - m_DetailObjectDensity: 1 - m_HeightmapPixelError: 5 - m_SplatMapDistance: 1000 - m_HeightmapMinimumLODSimplification: 0 - m_HeightmapMaximumLOD: 0 - m_ShadowCastingMode: 2 - m_DrawHeightmap: 1 - m_DrawInstanced: 0 - m_DrawTreesAndFoliage: 1 - m_StaticShadowCaster: 0 - m_IgnoreQualitySettings: 0 - m_ReflectionProbeUsage: 1 - m_MaterialTemplate: {fileID: 10652, guid: 0000000000000000f000000000000000, type: 0} - m_BakeLightProbesForTrees: 0 - m_PreserveTreePrototypeLayers: 1 - m_DeringLightProbesForTrees: 1 - m_ReceiveGI: 1 - m_ScaleInLightmap: 0.256 - m_LightmapParameters: {fileID: 15203, guid: 0000000000000000f000000000000000, type: 0} - m_GroupingID: 0 - m_RenderingLayerMask: 1 - m_AllowAutoConnect: 1 - m_EnableHeightmapRayTracing: 1 - m_EnableTreesAndDetailsRayTracing: 0 - m_TreeMotionVectorModeOverride: 3 ---- !u!4 &1011112322 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1011112319} - serializedVersion: 2 - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 126.9} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 894822543} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!1 &1143006923 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1143006926} - - component: {fileID: 1143006925} - - component: {fileID: 1143006924} - m_Layer: 0 - m_Name: Terrain - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 - m_IsActive: 1 ---- !u!154 &1143006924 -TerrainCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1143006923} - m_Material: {fileID: 0} - m_IncludeLayers: - serializedVersion: 2 - m_Bits: 0 - m_ExcludeLayers: - serializedVersion: 2 - m_Bits: 0 - m_LayerOverridePriority: 0 - m_ProvidesContacts: 0 - m_Enabled: 1 - serializedVersion: 2 - m_TerrainData: {fileID: 15600000, guid: e0829138c40f356458f259edb063d67a, type: 2} - m_EnableTreeColliders: 1 ---- !u!218 &1143006925 -Terrain: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1143006923} - m_Enabled: 1 - serializedVersion: 6 - m_TerrainData: {fileID: 15600000, guid: e0829138c40f356458f259edb063d67a, type: 2} - m_TreeDistance: 1000 - m_TreeBillboardDistance: 300 - m_TreeCrossFadeLength: 5 - m_TreeMaximumFullLODCount: 50 - m_DetailObjectDistance: 200 - m_DetailObjectDensity: 1 - m_HeightmapPixelError: 5 - m_SplatMapDistance: 1000 - m_HeightmapMinimumLODSimplification: 0 - m_HeightmapMaximumLOD: 0 - m_ShadowCastingMode: 2 - m_DrawHeightmap: 1 - m_DrawInstanced: 0 - m_DrawTreesAndFoliage: 1 - m_StaticShadowCaster: 0 - m_IgnoreQualitySettings: 0 - m_ReflectionProbeUsage: 1 - m_MaterialTemplate: {fileID: 10652, guid: 0000000000000000f000000000000000, type: 0} - m_BakeLightProbesForTrees: 0 - m_PreserveTreePrototypeLayers: 1 - m_DeringLightProbesForTrees: 1 - m_ReceiveGI: 1 - m_ScaleInLightmap: 0.0256 - m_LightmapParameters: {fileID: 15203, guid: 0000000000000000f000000000000000, type: 0} - m_GroupingID: 0 - m_RenderingLayerMask: 1 - m_AllowAutoConnect: 1 - m_EnableHeightmapRayTracing: 1 - m_EnableTreesAndDetailsRayTracing: 0 - m_TreeMotionVectorModeOverride: 3 ---- !u!4 &1143006926 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1143006923} - serializedVersion: 2 - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 26.9} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 894822543} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!1 &1151806831 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1151806835} - - component: {fileID: 1151806834} - - component: {fileID: 1151806833} - - component: {fileID: 1151806832} - m_Layer: 0 - m_Name: Plane - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!64 &1151806832 -MeshCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1151806831} - m_Material: {fileID: 0} - m_IncludeLayers: - serializedVersion: 2 - m_Bits: 0 - m_ExcludeLayers: - serializedVersion: 2 - m_Bits: 0 - m_LayerOverridePriority: 0 - m_IsTrigger: 0 - m_ProvidesContacts: 0 - m_Enabled: 1 - serializedVersion: 5 - m_Convex: 0 - m_CookingOptions: 30 - m_Mesh: {fileID: 10209, guid: 0000000000000000e000000000000000, type: 0} ---- !u!23 &1151806833 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1151806831} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: 3e36df56c6fa5f64085c14d9d4f6f8d9, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!33 &1151806834 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1151806831} - m_Mesh: {fileID: 10209, guid: 0000000000000000e000000000000000, type: 0} ---- !u!4 &1151806835 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1151806831} - serializedVersion: 2 - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 50, y: 2.5, z: 78} - m_LocalScale: {x: 10, y: 10, z: 28.086283} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 0} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!1 &1193500415 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1193500419} - - component: {fileID: 1193500418} - - component: {fileID: 1193500417} - - component: {fileID: 1193500416} - m_Layer: 0 - m_Name: Cube (3) - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!65 &1193500416 -BoxCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1193500415} - m_Material: {fileID: 0} - m_IncludeLayers: - serializedVersion: 2 - m_Bits: 0 - m_ExcludeLayers: - serializedVersion: 2 - m_Bits: 0 - m_LayerOverridePriority: 0 - m_IsTrigger: 0 - m_ProvidesContacts: 0 - m_Enabled: 1 - serializedVersion: 3 - m_Size: {x: 1, y: 1, z: 1} - m_Center: {x: 0, y: 0, z: 0} ---- !u!23 &1193500417 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1193500415} - m_Enabled: 0 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 10303, guid: 0000000000000000f000000000000000, type: 0} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!33 &1193500418 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1193500415} - m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} ---- !u!4 &1193500419 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1193500415} - serializedVersion: 2 - m_LocalRotation: {x: -0, y: 0.7071068, z: -0, w: 0.7071068} - m_LocalPosition: {x: 131.4, y: 10.1, z: 77.4} - m_LocalScale: {x: 206.97118, y: 34.71651, z: 1.5728} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 201706615} - m_LocalEulerAnglesHint: {x: 0, y: 90, z: 0} ---- !u!1001 &1269491061 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 0} - m_Modifications: - - target: {fileID: -8679921383154817045, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} - propertyPath: m_RootOrder - value: 9 - objectReference: {fileID: 0} - - target: {fileID: -8679921383154817045, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} - propertyPath: m_LocalPosition.x - value: 30.85 - objectReference: {fileID: 0} - - target: {fileID: -8679921383154817045, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} - propertyPath: m_LocalPosition.y - value: 3.003113 - objectReference: {fileID: 0} - - target: {fileID: -8679921383154817045, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} - propertyPath: m_LocalPosition.z - value: 67.03 - objectReference: {fileID: 0} - - target: {fileID: -8679921383154817045, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: -8679921383154817045, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: -8679921383154817045, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} - propertyPath: m_LocalRotation.y - value: -0 - objectReference: {fileID: 0} - - target: {fileID: -8679921383154817045, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} - propertyPath: m_LocalRotation.z - value: -0 - objectReference: {fileID: 0} - - target: {fileID: -8679921383154817045, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: -8679921383154817045, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: -8679921383154817045, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 919132149155446097, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} - propertyPath: m_Name - value: PT_Caesars_Mushroom_01 (3) - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} ---- !u!1001 &1413231522 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 0} - m_Modifications: - - target: {fileID: 2758808173843430218, guid: 46f8d17b9eeef754ebc1008196f84bdd, type: 3} - propertyPath: m_RootOrder - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 2758808173843430218, guid: 46f8d17b9eeef754ebc1008196f84bdd, type: 3} - propertyPath: m_LocalPosition.x - value: 32.784 - objectReference: {fileID: 0} - - target: {fileID: 2758808173843430218, guid: 46f8d17b9eeef754ebc1008196f84bdd, type: 3} - propertyPath: m_LocalPosition.y - value: 2.962 - objectReference: {fileID: 0} - - target: {fileID: 2758808173843430218, guid: 46f8d17b9eeef754ebc1008196f84bdd, type: 3} - propertyPath: m_LocalPosition.z - value: 69.209 - objectReference: {fileID: 0} - - target: {fileID: 2758808173843430218, guid: 46f8d17b9eeef754ebc1008196f84bdd, type: 3} - propertyPath: m_LocalRotation.w - value: 0.999992 - objectReference: {fileID: 0} - - target: {fileID: 2758808173843430218, guid: 46f8d17b9eeef754ebc1008196f84bdd, type: 3} - propertyPath: m_LocalRotation.x - value: -0 - objectReference: {fileID: 0} - - target: {fileID: 2758808173843430218, guid: 46f8d17b9eeef754ebc1008196f84bdd, type: 3} - propertyPath: m_LocalRotation.y - value: 0.0040011285 - objectReference: {fileID: 0} - - target: {fileID: 2758808173843430218, guid: 46f8d17b9eeef754ebc1008196f84bdd, type: 3} - propertyPath: m_LocalRotation.z - value: -0 - objectReference: {fileID: 0} - - target: {fileID: 2758808173843430218, guid: 46f8d17b9eeef754ebc1008196f84bdd, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 2758808173843430218, guid: 46f8d17b9eeef754ebc1008196f84bdd, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0.458 - objectReference: {fileID: 0} - - target: {fileID: 2758808173843430218, guid: 46f8d17b9eeef754ebc1008196f84bdd, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3243314962588885488, guid: 46f8d17b9eeef754ebc1008196f84bdd, type: 3} - propertyPath: m_Name - value: PT_Wooden_Bridge_02 - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 46f8d17b9eeef754ebc1008196f84bdd, type: 3} ---- !u!1001 &1474834544 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 0} - m_Modifications: - - target: {fileID: -8679921383154817045, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} - propertyPath: m_RootOrder - value: 1 - objectReference: {fileID: 0} - - target: {fileID: -8679921383154817045, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} - propertyPath: m_LocalPosition.x - value: 28.127974 - objectReference: {fileID: 0} - - target: {fileID: -8679921383154817045, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} - propertyPath: m_LocalPosition.y - value: 3.003113 - objectReference: {fileID: 0} - - target: {fileID: -8679921383154817045, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} - propertyPath: m_LocalPosition.z - value: 67.76928 - objectReference: {fileID: 0} - - target: {fileID: -8679921383154817045, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: -8679921383154817045, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: -8679921383154817045, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} - propertyPath: m_LocalRotation.y - value: -0 - objectReference: {fileID: 0} - - target: {fileID: -8679921383154817045, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} - propertyPath: m_LocalRotation.z - value: -0 - objectReference: {fileID: 0} - - target: {fileID: -8679921383154817045, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: -8679921383154817045, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: -8679921383154817045, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 919132149155446097, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} - propertyPath: m_Name - value: PT_Caesars_Mushroom_01 (1) - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} ---- !u!1001 &1546470280 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 0} - m_Modifications: - - target: {fileID: -8679921383154817045, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} - propertyPath: m_RootOrder - value: 10 - objectReference: {fileID: 0} - - target: {fileID: -8679921383154817045, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} - propertyPath: m_LocalScale.x - value: 0.58139 - objectReference: {fileID: 0} - - target: {fileID: -8679921383154817045, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} - propertyPath: m_LocalScale.y - value: 0.58139 - objectReference: {fileID: 0} - - target: {fileID: -8679921383154817045, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} - propertyPath: m_LocalScale.z - value: 0.58139 - objectReference: {fileID: 0} - - target: {fileID: -8679921383154817045, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} - propertyPath: m_LocalPosition.x - value: 30.726757 - objectReference: {fileID: 0} - - target: {fileID: -8679921383154817045, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} - propertyPath: m_LocalPosition.y - value: 3.041 - objectReference: {fileID: 0} - - target: {fileID: -8679921383154817045, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} - propertyPath: m_LocalPosition.z - value: 67.229 - objectReference: {fileID: 0} - - target: {fileID: -8679921383154817045, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} - propertyPath: m_LocalRotation.w - value: 0.9872567 - objectReference: {fileID: 0} - - target: {fileID: -8679921383154817045, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} - propertyPath: m_LocalRotation.x - value: -0 - objectReference: {fileID: 0} - - target: {fileID: -8679921383154817045, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} - propertyPath: m_LocalRotation.y - value: -0 - objectReference: {fileID: 0} - - target: {fileID: -8679921383154817045, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} - propertyPath: m_LocalRotation.z - value: 0.1591358 - objectReference: {fileID: 0} - - target: {fileID: -8679921383154817045, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: -8679921383154817045, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: -8679921383154817045, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 18.313 - objectReference: {fileID: 0} - - target: {fileID: 919132149155446097, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} - propertyPath: m_Name - value: PT_Caesars_Mushroom_01 (4) - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} ---- !u!1001 &1560350455 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 0} - m_Modifications: - - target: {fileID: -8679921383154817045, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} - propertyPath: m_RootOrder - value: 8 - objectReference: {fileID: 0} - - target: {fileID: -8679921383154817045, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} - propertyPath: m_LocalPosition.x - value: 26.738 - objectReference: {fileID: 0} - - target: {fileID: -8679921383154817045, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} - propertyPath: m_LocalPosition.y - value: 3.003113 - objectReference: {fileID: 0} - - target: {fileID: -8679921383154817045, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} - propertyPath: m_LocalPosition.z - value: 67.077 - objectReference: {fileID: 0} - - target: {fileID: -8679921383154817045, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: -8679921383154817045, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: -8679921383154817045, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} - propertyPath: m_LocalRotation.y - value: -0 - objectReference: {fileID: 0} - - target: {fileID: -8679921383154817045, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} - propertyPath: m_LocalRotation.z - value: -0 - objectReference: {fileID: 0} - - target: {fileID: -8679921383154817045, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: -8679921383154817045, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: -8679921383154817045, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 919132149155446097, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} - propertyPath: m_Name - value: PT_Caesars_Mushroom_01 (2) - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} ---- !u!1 &1570689918 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1570689920} - - component: {fileID: 1570689919} - m_Layer: 0 - m_Name: Directional Light - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!108 &1570689919 -Light: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1570689918} - m_Enabled: 1 - serializedVersion: 10 - m_Type: 1 - m_Shape: 0 - m_Color: {r: 1, g: 0.95686275, b: 0.8392157, a: 1} - m_Intensity: 1.2 - m_Range: 10 - m_SpotAngle: 30 - m_InnerSpotAngle: 21.80208 - m_CookieSize: 10 - m_Shadows: - m_Type: 2 - m_Resolution: -1 - m_CustomResolution: -1 - m_Strength: 1 - m_Bias: 0.05 - m_NormalBias: 0.4 - m_NearPlane: 0.2 - m_CullingMatrixOverride: - e00: 1 - e01: 0 - e02: 0 - e03: 0 - e10: 0 - e11: 1 - e12: 0 - e13: 0 - e20: 0 - e21: 0 - e22: 1 - e23: 0 - e30: 0 - e31: 0 - e32: 0 - e33: 1 - m_UseCullingMatrixOverride: 0 - m_Cookie: {fileID: 0} - m_DrawHalo: 0 - m_Flare: {fileID: 0} - m_RenderMode: 0 - m_CullingMask: - serializedVersion: 2 - m_Bits: 4294967295 - m_RenderingLayerMask: 1 - m_Lightmapping: 4 - m_LightShadowCasterMode: 0 - m_AreaSize: {x: 1, y: 1} - m_BounceIntensity: 1 - m_ColorTemperature: 6570 - m_UseColorTemperature: 0 - m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0} - m_UseBoundingSphereOverride: 0 - m_UseViewFrustumForShadowCasterCull: 1 - m_ShadowRadius: 0 - m_ShadowAngle: 0 ---- !u!4 &1570689920 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1570689918} - serializedVersion: 2 - m_LocalRotation: {x: 0.40821788, y: -0.23456968, z: 0.10938163, w: 0.8754261} - m_LocalPosition: {x: 0, y: 3, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 0} - m_LocalEulerAnglesHint: {x: 50, y: -30, z: 0} ---- !u!1 &1589245842 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1589245845} - - component: {fileID: 1589245844} - - component: {fileID: 1589245843} - - component: {fileID: 1589245846} - m_Layer: 0 - m_Name: Main Camera - m_TagString: MainCamera - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!81 &1589245843 -AudioListener: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1589245842} - m_Enabled: 1 ---- !u!20 &1589245844 -Camera: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1589245842} - m_Enabled: 1 - serializedVersion: 2 - m_ClearFlags: 1 - m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0} - m_projectionMatrixMode: 1 - m_GateFitMode: 2 - m_FOVAxisMode: 0 - m_Iso: 200 - m_ShutterSpeed: 0.005 - m_Aperture: 16 - m_FocusDistance: 10 - m_FocalLength: 50 - m_BladeCount: 5 - m_Curvature: {x: 2, y: 11} - m_BarrelClipping: 0.25 - m_Anamorphism: 0 - m_SensorSize: {x: 36, y: 24} - m_LensShift: {x: 0, y: 0} - m_NormalizedViewPortRect: - serializedVersion: 2 - x: 0 - y: 0 - width: 1 - height: 1 - near clip plane: 0.3 - far clip plane: 1000 - field of view: 60 - orthographic: 0 - orthographic size: 5 - m_Depth: 0 - m_CullingMask: - serializedVersion: 2 - m_Bits: 4294967295 - m_RenderingPath: 1 - m_TargetTexture: {fileID: 0} - m_TargetDisplay: 0 - m_TargetEye: 3 - m_HDR: 1 - m_AllowMSAA: 1 - m_AllowDynamicResolution: 0 - m_ForceIntoRT: 0 - m_OcclusionCulling: 1 - m_StereoConvergence: 10 - m_StereoSeparation: 0.022 ---- !u!4 &1589245845 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1589245842} - serializedVersion: 2 - m_LocalRotation: {x: 0.039154578, y: -0, z: -0, w: 0.99923325} - m_LocalPosition: {x: -0, y: 1.86, z: -0.04} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 139766769} - m_LocalEulerAnglesHint: {x: 4.4880004, y: 0, z: 0} ---- !u!114 &1589245846 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1589245842} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 51763bafdae3792488a76927e0169d7a, type: 3} - m_Name: - m_EditorClassIdentifier: - mouseSensitivity: 10 - playerBody: {fileID: 139766769} ---- !u!1001 &1590409431 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 0} - m_Modifications: - - target: {fileID: -8679921383154817045, guid: c2dcabc4d03cc9b4098225e59529d20d, type: 3} - propertyPath: m_RootOrder - value: 2 - objectReference: {fileID: 0} - - target: {fileID: -8679921383154817045, guid: c2dcabc4d03cc9b4098225e59529d20d, type: 3} - propertyPath: m_LocalPosition.x - value: 16.433529 - objectReference: {fileID: 0} - - target: {fileID: -8679921383154817045, guid: c2dcabc4d03cc9b4098225e59529d20d, type: 3} - propertyPath: m_LocalPosition.y - value: 5.942024 - objectReference: {fileID: 0} - - target: {fileID: -8679921383154817045, guid: c2dcabc4d03cc9b4098225e59529d20d, type: 3} - propertyPath: m_LocalPosition.z - value: 47.6359 - objectReference: {fileID: 0} - - target: {fileID: -8679921383154817045, guid: c2dcabc4d03cc9b4098225e59529d20d, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: -8679921383154817045, guid: c2dcabc4d03cc9b4098225e59529d20d, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: -8679921383154817045, guid: c2dcabc4d03cc9b4098225e59529d20d, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: -8679921383154817045, guid: c2dcabc4d03cc9b4098225e59529d20d, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: -8679921383154817045, guid: c2dcabc4d03cc9b4098225e59529d20d, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: -8679921383154817045, guid: c2dcabc4d03cc9b4098225e59529d20d, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: -8679921383154817045, guid: c2dcabc4d03cc9b4098225e59529d20d, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 919132149155446097, guid: c2dcabc4d03cc9b4098225e59529d20d, type: 3} - propertyPath: m_Name - value: PT_Pine_Tree_03_green - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: c2dcabc4d03cc9b4098225e59529d20d, type: 3} ---- !u!1 &1626380779 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1626380782} - - component: {fileID: 1626380781} - - component: {fileID: 1626380780} - m_Layer: 0 - m_Name: Terrain_(100.0, 0.0, 26.9) - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 - m_IsActive: 1 ---- !u!154 &1626380780 -TerrainCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1626380779} - m_Material: {fileID: 0} - m_IncludeLayers: - serializedVersion: 2 - m_Bits: 0 - m_ExcludeLayers: - serializedVersion: 2 - m_Bits: 0 - m_LayerOverridePriority: 0 - m_ProvidesContacts: 0 - m_Enabled: 1 - serializedVersion: 2 - m_TerrainData: {fileID: 15600000, guid: c40d5572f8d7d6843bd8d20c21f1c0be, type: 2} - m_EnableTreeColliders: 1 ---- !u!218 &1626380781 -Terrain: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1626380779} - m_Enabled: 1 - serializedVersion: 6 - m_TerrainData: {fileID: 15600000, guid: c40d5572f8d7d6843bd8d20c21f1c0be, type: 2} - m_TreeDistance: 1000 - m_TreeBillboardDistance: 300 - m_TreeCrossFadeLength: 5 - m_TreeMaximumFullLODCount: 50 - m_DetailObjectDistance: 200 - m_DetailObjectDensity: 1 - m_HeightmapPixelError: 5 - m_SplatMapDistance: 1000 - m_HeightmapMinimumLODSimplification: 0 - m_HeightmapMaximumLOD: 0 - m_ShadowCastingMode: 2 - m_DrawHeightmap: 1 - m_DrawInstanced: 0 - m_DrawTreesAndFoliage: 1 - m_StaticShadowCaster: 0 - m_IgnoreQualitySettings: 0 - m_ReflectionProbeUsage: 1 - m_MaterialTemplate: {fileID: 10652, guid: 0000000000000000f000000000000000, type: 0} - m_BakeLightProbesForTrees: 0 - m_PreserveTreePrototypeLayers: 1 - m_DeringLightProbesForTrees: 1 - m_ReceiveGI: 1 - m_ScaleInLightmap: 0.256 - m_LightmapParameters: {fileID: 15203, guid: 0000000000000000f000000000000000, type: 0} - m_GroupingID: 0 - m_RenderingLayerMask: 1 - m_AllowAutoConnect: 1 - m_EnableHeightmapRayTracing: 1 - m_EnableTreesAndDetailsRayTracing: 0 - m_TreeMotionVectorModeOverride: 3 ---- !u!4 &1626380782 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1626380779} - serializedVersion: 2 - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 100, y: 0, z: 26.9} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 894822543} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!1 &1697539109 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1697539112} - - component: {fileID: 1697539111} - - component: {fileID: 1697539110} - m_Layer: 0 - m_Name: Terrain_(0.0, 0.0, -73.1) - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 - m_IsActive: 1 ---- !u!154 &1697539110 -TerrainCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1697539109} - m_Material: {fileID: 0} - m_IncludeLayers: - serializedVersion: 2 - m_Bits: 0 - m_ExcludeLayers: - serializedVersion: 2 - m_Bits: 0 - m_LayerOverridePriority: 0 - m_ProvidesContacts: 0 - m_Enabled: 1 - serializedVersion: 2 - m_TerrainData: {fileID: 15600000, guid: 3349f3f4495a62f40895e095545b535e, type: 2} - m_EnableTreeColliders: 1 ---- !u!218 &1697539111 -Terrain: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1697539109} - m_Enabled: 1 - serializedVersion: 6 - m_TerrainData: {fileID: 15600000, guid: 3349f3f4495a62f40895e095545b535e, type: 2} - m_TreeDistance: 1000 - m_TreeBillboardDistance: 300 - m_TreeCrossFadeLength: 5 - m_TreeMaximumFullLODCount: 50 - m_DetailObjectDistance: 200 - m_DetailObjectDensity: 1 - m_HeightmapPixelError: 5 - m_SplatMapDistance: 1000 - m_HeightmapMinimumLODSimplification: 0 - m_HeightmapMaximumLOD: 0 - m_ShadowCastingMode: 2 - m_DrawHeightmap: 1 - m_DrawInstanced: 0 - m_DrawTreesAndFoliage: 1 - m_StaticShadowCaster: 0 - m_IgnoreQualitySettings: 0 - m_ReflectionProbeUsage: 1 - m_MaterialTemplate: {fileID: 10652, guid: 0000000000000000f000000000000000, type: 0} - m_BakeLightProbesForTrees: 0 - m_PreserveTreePrototypeLayers: 1 - m_DeringLightProbesForTrees: 1 - m_ReceiveGI: 1 - m_ScaleInLightmap: 0.256 - m_LightmapParameters: {fileID: 15203, guid: 0000000000000000f000000000000000, type: 0} - m_GroupingID: 0 - m_RenderingLayerMask: 1 - m_AllowAutoConnect: 1 - m_EnableHeightmapRayTracing: 1 - m_EnableTreesAndDetailsRayTracing: 0 - m_TreeMotionVectorModeOverride: 3 ---- !u!4 &1697539112 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1697539109} - serializedVersion: 2 - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: -73.1} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 894822543} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!1 &1699032203 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1699032206} - - component: {fileID: 1699032205} - - component: {fileID: 1699032204} - m_Layer: 0 - m_Name: Terrain_(-100.0, 0.0, 126.9) - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 - m_IsActive: 1 ---- !u!154 &1699032204 -TerrainCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1699032203} - m_Material: {fileID: 0} - m_IncludeLayers: - serializedVersion: 2 - m_Bits: 0 - m_ExcludeLayers: - serializedVersion: 2 - m_Bits: 0 - m_LayerOverridePriority: 0 - m_ProvidesContacts: 0 - m_Enabled: 1 - serializedVersion: 2 - m_TerrainData: {fileID: 15600000, guid: dbe8ee5abb1344a4e8a8b80348f13db8, type: 2} - m_EnableTreeColliders: 1 ---- !u!218 &1699032205 -Terrain: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1699032203} - m_Enabled: 1 - serializedVersion: 6 - m_TerrainData: {fileID: 15600000, guid: dbe8ee5abb1344a4e8a8b80348f13db8, type: 2} - m_TreeDistance: 1000 - m_TreeBillboardDistance: 300 - m_TreeCrossFadeLength: 5 - m_TreeMaximumFullLODCount: 50 - m_DetailObjectDistance: 200 - m_DetailObjectDensity: 1 - m_HeightmapPixelError: 5 - m_SplatMapDistance: 1000 - m_HeightmapMinimumLODSimplification: 0 - m_HeightmapMaximumLOD: 0 - m_ShadowCastingMode: 2 - m_DrawHeightmap: 1 - m_DrawInstanced: 0 - m_DrawTreesAndFoliage: 1 - m_StaticShadowCaster: 0 - m_IgnoreQualitySettings: 0 - m_ReflectionProbeUsage: 1 - m_MaterialTemplate: {fileID: 10652, guid: 0000000000000000f000000000000000, type: 0} - m_BakeLightProbesForTrees: 0 - m_PreserveTreePrototypeLayers: 1 - m_DeringLightProbesForTrees: 1 - m_ReceiveGI: 1 - m_ScaleInLightmap: 0.256 - m_LightmapParameters: {fileID: 15203, guid: 0000000000000000f000000000000000, type: 0} - m_GroupingID: 0 - m_RenderingLayerMask: 1 - m_AllowAutoConnect: 1 - m_EnableHeightmapRayTracing: 1 - m_EnableTreesAndDetailsRayTracing: 0 - m_TreeMotionVectorModeOverride: 3 ---- !u!4 &1699032206 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1699032203} - serializedVersion: 2 - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -100, y: 0, z: 126.9} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 894822543} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!1 &1906367006 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1906367010} - - component: {fileID: 1906367009} - - component: {fileID: 1906367008} - - component: {fileID: 1906367007} - m_Layer: 0 - m_Name: Cube (2) - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!65 &1906367007 -BoxCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1906367006} - m_Material: {fileID: 0} - m_IncludeLayers: - serializedVersion: 2 - m_Bits: 0 - m_ExcludeLayers: - serializedVersion: 2 - m_Bits: 0 - m_LayerOverridePriority: 0 - m_IsTrigger: 0 - m_ProvidesContacts: 0 - m_Enabled: 1 - serializedVersion: 3 - m_Size: {x: 1, y: 1, z: 1} - m_Center: {x: 0, y: 0, z: 0} ---- !u!23 &1906367008 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1906367006} - m_Enabled: 0 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 10303, guid: 0000000000000000f000000000000000, type: 0} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!33 &1906367009 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1906367006} - m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} ---- !u!4 &1906367010 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1906367006} - serializedVersion: 2 - m_LocalRotation: {x: -0, y: 0.7071068, z: -0, w: 0.7071068} - m_LocalPosition: {x: -19.1, y: 10.1, z: 62.7} - m_LocalScale: {x: 250.05508, y: 22.073061, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 201706615} - m_LocalEulerAnglesHint: {x: 0, y: 90, z: 0} ---- !u!1 &2092571622 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 2092571625} - - component: {fileID: 2092571624} - - component: {fileID: 2092571623} - m_Layer: 0 - m_Name: Terrain_(100.0, 0.0, 126.9) - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 - m_IsActive: 1 ---- !u!154 &2092571623 -TerrainCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2092571622} - m_Material: {fileID: 0} - m_IncludeLayers: - serializedVersion: 2 - m_Bits: 0 - m_ExcludeLayers: - serializedVersion: 2 - m_Bits: 0 - m_LayerOverridePriority: 0 - m_ProvidesContacts: 0 - m_Enabled: 1 - serializedVersion: 2 - m_TerrainData: {fileID: 15600000, guid: 1587ce82db2499e4185b7701bf0d532b, type: 2} - m_EnableTreeColliders: 1 ---- !u!218 &2092571624 -Terrain: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2092571622} - m_Enabled: 1 - serializedVersion: 6 - m_TerrainData: {fileID: 15600000, guid: 1587ce82db2499e4185b7701bf0d532b, type: 2} - m_TreeDistance: 1000 - m_TreeBillboardDistance: 300 - m_TreeCrossFadeLength: 5 - m_TreeMaximumFullLODCount: 50 - m_DetailObjectDistance: 200 - m_DetailObjectDensity: 1 - m_HeightmapPixelError: 5 - m_SplatMapDistance: 1000 - m_HeightmapMinimumLODSimplification: 0 - m_HeightmapMaximumLOD: 0 - m_ShadowCastingMode: 2 - m_DrawHeightmap: 1 - m_DrawInstanced: 0 - m_DrawTreesAndFoliage: 1 - m_StaticShadowCaster: 0 - m_IgnoreQualitySettings: 0 - m_ReflectionProbeUsage: 1 - m_MaterialTemplate: {fileID: 10652, guid: 0000000000000000f000000000000000, type: 0} - m_BakeLightProbesForTrees: 0 - m_PreserveTreePrototypeLayers: 1 - m_DeringLightProbesForTrees: 1 - m_ReceiveGI: 1 - m_ScaleInLightmap: 0.256 - m_LightmapParameters: {fileID: 15203, guid: 0000000000000000f000000000000000, type: 0} - m_GroupingID: 0 - m_RenderingLayerMask: 1 - m_AllowAutoConnect: 1 - m_EnableHeightmapRayTracing: 1 - m_EnableTreesAndDetailsRayTracing: 0 - m_TreeMotionVectorModeOverride: 3 ---- !u!4 &2092571625 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2092571622} - serializedVersion: 2 - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 100, y: 0, z: 126.9} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 894822543} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!1 &2129354786 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 2129354789} - - component: {fileID: 2129354788} - - component: {fileID: 2129354787} - m_Layer: 0 - m_Name: Terrain_(100.0, 0.0, -73.1) - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 4294967295 - m_IsActive: 1 ---- !u!154 &2129354787 -TerrainCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2129354786} - m_Material: {fileID: 0} - m_IncludeLayers: - serializedVersion: 2 - m_Bits: 0 - m_ExcludeLayers: - serializedVersion: 2 - m_Bits: 0 - m_LayerOverridePriority: 0 - m_ProvidesContacts: 0 - m_Enabled: 1 - serializedVersion: 2 - m_TerrainData: {fileID: 15600000, guid: f2e008cefb3ff674e8c681a3f961fb80, type: 2} - m_EnableTreeColliders: 1 ---- !u!218 &2129354788 -Terrain: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2129354786} - m_Enabled: 1 - serializedVersion: 6 - m_TerrainData: {fileID: 15600000, guid: f2e008cefb3ff674e8c681a3f961fb80, type: 2} - m_TreeDistance: 1000 - m_TreeBillboardDistance: 300 - m_TreeCrossFadeLength: 5 - m_TreeMaximumFullLODCount: 50 - m_DetailObjectDistance: 200 - m_DetailObjectDensity: 1 - m_HeightmapPixelError: 5 - m_SplatMapDistance: 1000 - m_HeightmapMinimumLODSimplification: 0 - m_HeightmapMaximumLOD: 0 - m_ShadowCastingMode: 2 - m_DrawHeightmap: 1 - m_DrawInstanced: 0 - m_DrawTreesAndFoliage: 1 - m_StaticShadowCaster: 0 - m_IgnoreQualitySettings: 0 - m_ReflectionProbeUsage: 1 - m_MaterialTemplate: {fileID: 10652, guid: 0000000000000000f000000000000000, type: 0} - m_BakeLightProbesForTrees: 0 - m_PreserveTreePrototypeLayers: 1 - m_DeringLightProbesForTrees: 1 - m_ReceiveGI: 1 - m_ScaleInLightmap: 0.256 - m_LightmapParameters: {fileID: 15203, guid: 0000000000000000f000000000000000, type: 0} - m_GroupingID: 0 - m_RenderingLayerMask: 1 - m_AllowAutoConnect: 1 - m_EnableHeightmapRayTracing: 1 - m_EnableTreesAndDetailsRayTracing: 0 - m_TreeMotionVectorModeOverride: 3 ---- !u!4 &2129354789 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2129354786} - serializedVersion: 2 - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 100, y: 0, z: -73.1} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 894822543} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!1001 &270273000227259158 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 0} - m_Modifications: - - target: {fileID: 1924666780482296237, guid: 53083e9d6ba91ba4cad309a95b8c8f20, type: 3} - propertyPath: m_CastShadows - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 1924666780482296237, guid: 53083e9d6ba91ba4cad309a95b8c8f20, type: 3} - propertyPath: m_ReceiveShadows - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3036827482424969206, guid: 53083e9d6ba91ba4cad309a95b8c8f20, type: 3} - propertyPath: m_Name - value: PT_Grass_02_LOD0 - objectReference: {fileID: 0} - - target: {fileID: 4848591325366998362, guid: 53083e9d6ba91ba4cad309a95b8c8f20, type: 3} - propertyPath: m_RootOrder - value: 13 - objectReference: {fileID: 0} - - target: {fileID: 4848591325366998362, guid: 53083e9d6ba91ba4cad309a95b8c8f20, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 4848591325366998362, guid: 53083e9d6ba91ba4cad309a95b8c8f20, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 4848591325366998362, guid: 53083e9d6ba91ba4cad309a95b8c8f20, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 4848591325366998362, guid: 53083e9d6ba91ba4cad309a95b8c8f20, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 4848591325366998362, guid: 53083e9d6ba91ba4cad309a95b8c8f20, type: 3} - propertyPath: m_LocalRotation.x - value: -0 - objectReference: {fileID: 0} - - target: {fileID: 4848591325366998362, guid: 53083e9d6ba91ba4cad309a95b8c8f20, type: 3} - propertyPath: m_LocalRotation.y - value: -0 - objectReference: {fileID: 0} - - target: {fileID: 4848591325366998362, guid: 53083e9d6ba91ba4cad309a95b8c8f20, type: 3} - propertyPath: m_LocalRotation.z - value: -0 - objectReference: {fileID: 0} - - target: {fileID: 4848591325366998362, guid: 53083e9d6ba91ba4cad309a95b8c8f20, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 4848591325366998362, guid: 53083e9d6ba91ba4cad309a95b8c8f20, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 4848591325366998362, guid: 53083e9d6ba91ba4cad309a95b8c8f20, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 53083e9d6ba91ba4cad309a95b8c8f20, type: 3} ---- !u!1001 &1821911521223183831 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 0} - m_Modifications: - - target: {fileID: 6989260436293947646, guid: 516f5b8c780f050499e83e3e45588ae9, type: 3} - propertyPath: m_Name - value: Fence - objectReference: {fileID: 0} - - target: {fileID: 7507501101374053384, guid: 516f5b8c780f050499e83e3e45588ae9, type: 3} - propertyPath: m_RootOrder - value: 5 - objectReference: {fileID: 0} - - target: {fileID: 7507501101374053384, guid: 516f5b8c780f050499e83e3e45588ae9, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 7507501101374053384, guid: 516f5b8c780f050499e83e3e45588ae9, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 7507501101374053384, guid: 516f5b8c780f050499e83e3e45588ae9, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 7507501101374053384, guid: 516f5b8c780f050499e83e3e45588ae9, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 7507501101374053384, guid: 516f5b8c780f050499e83e3e45588ae9, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 7507501101374053384, guid: 516f5b8c780f050499e83e3e45588ae9, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 7507501101374053384, guid: 516f5b8c780f050499e83e3e45588ae9, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 7507501101374053384, guid: 516f5b8c780f050499e83e3e45588ae9, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 7507501101374053384, guid: 516f5b8c780f050499e83e3e45588ae9, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 7507501101374053384, guid: 516f5b8c780f050499e83e3e45588ae9, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 516f5b8c780f050499e83e3e45588ae9, type: 3} ---- !u!1001 &1916556001867926058 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 0} - m_Modifications: - - target: {fileID: 3036827482424969206, guid: 3ade7fcf53c8246418eb3c493d6d2178, type: 3} - propertyPath: m_Name - value: PT_Grass_02_LOD0 1 - objectReference: {fileID: 0} - - target: {fileID: 4848591325366998362, guid: 3ade7fcf53c8246418eb3c493d6d2178, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 4848591325366998362, guid: 3ade7fcf53c8246418eb3c493d6d2178, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 4848591325366998362, guid: 3ade7fcf53c8246418eb3c493d6d2178, type: 3} - propertyPath: m_LocalPosition.z - value: 1.202 - objectReference: {fileID: 0} - - target: {fileID: 4848591325366998362, guid: 3ade7fcf53c8246418eb3c493d6d2178, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 4848591325366998362, guid: 3ade7fcf53c8246418eb3c493d6d2178, type: 3} - propertyPath: m_LocalRotation.x - value: -0 - objectReference: {fileID: 0} - - target: {fileID: 4848591325366998362, guid: 3ade7fcf53c8246418eb3c493d6d2178, type: 3} - propertyPath: m_LocalRotation.y - value: -0 - objectReference: {fileID: 0} - - target: {fileID: 4848591325366998362, guid: 3ade7fcf53c8246418eb3c493d6d2178, type: 3} - propertyPath: m_LocalRotation.z - value: -0 - objectReference: {fileID: 0} - - target: {fileID: 4848591325366998362, guid: 3ade7fcf53c8246418eb3c493d6d2178, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 4848591325366998362, guid: 3ade7fcf53c8246418eb3c493d6d2178, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 4848591325366998362, guid: 3ade7fcf53c8246418eb3c493d6d2178, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 3ade7fcf53c8246418eb3c493d6d2178, type: 3} ---- !u!1001 &6833504824959735945 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 0} - m_Modifications: - - target: {fileID: 5597067459296003245, guid: e4f62d5abc5742c4eabbbf96fe54193c, type: 3} - propertyPath: m_Name - value: PT_River_Rock_Pile_02_LOD0 - objectReference: {fileID: 0} - - target: {fileID: 7674060271722496062, guid: e4f62d5abc5742c4eabbbf96fe54193c, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 7674060271722496062, guid: e4f62d5abc5742c4eabbbf96fe54193c, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 7674060271722496062, guid: e4f62d5abc5742c4eabbbf96fe54193c, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 7674060271722496062, guid: e4f62d5abc5742c4eabbbf96fe54193c, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 7674060271722496062, guid: e4f62d5abc5742c4eabbbf96fe54193c, type: 3} - propertyPath: m_LocalRotation.x - value: -0 - objectReference: {fileID: 0} - - target: {fileID: 7674060271722496062, guid: e4f62d5abc5742c4eabbbf96fe54193c, type: 3} - propertyPath: m_LocalRotation.y - value: -0 - objectReference: {fileID: 0} - - target: {fileID: 7674060271722496062, guid: e4f62d5abc5742c4eabbbf96fe54193c, type: 3} - propertyPath: m_LocalRotation.z - value: -0 - objectReference: {fileID: 0} - - target: {fileID: 7674060271722496062, guid: e4f62d5abc5742c4eabbbf96fe54193c, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 7674060271722496062, guid: e4f62d5abc5742c4eabbbf96fe54193c, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 7674060271722496062, guid: e4f62d5abc5742c4eabbbf96fe54193c, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: e4f62d5abc5742c4eabbbf96fe54193c, type: 3} ---- !u!1001 &6868955873547145837 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 0} - m_Modifications: - - target: {fileID: 576941961222066687, guid: aa8ea3d66a87ed449832e8709ec90517, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 576941961222066687, guid: aa8ea3d66a87ed449832e8709ec90517, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 576941961222066687, guid: aa8ea3d66a87ed449832e8709ec90517, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 576941961222066687, guid: aa8ea3d66a87ed449832e8709ec90517, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 576941961222066687, guid: aa8ea3d66a87ed449832e8709ec90517, type: 3} - propertyPath: m_LocalRotation.x - value: -0 - objectReference: {fileID: 0} - - target: {fileID: 576941961222066687, guid: aa8ea3d66a87ed449832e8709ec90517, type: 3} - propertyPath: m_LocalRotation.y - value: -0 - objectReference: {fileID: 0} - - target: {fileID: 576941961222066687, guid: aa8ea3d66a87ed449832e8709ec90517, type: 3} - propertyPath: m_LocalRotation.z - value: -0 - objectReference: {fileID: 0} - - target: {fileID: 576941961222066687, guid: aa8ea3d66a87ed449832e8709ec90517, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 576941961222066687, guid: aa8ea3d66a87ed449832e8709ec90517, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 576941961222066687, guid: aa8ea3d66a87ed449832e8709ec90517, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 2509144546569432699, guid: aa8ea3d66a87ed449832e8709ec90517, type: 3} - propertyPath: m_Name - value: PT_High_Grass_02_LOD0 - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: aa8ea3d66a87ed449832e8709ec90517, type: 3} ---- !u!1001 &8903552303591553771 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 0} - m_Modifications: - - target: {fileID: 2197582417569134742, guid: 7917e70f5baa68944aad80732cb08b3d, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 2197582417569134742, guid: 7917e70f5baa68944aad80732cb08b3d, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 2197582417569134742, guid: 7917e70f5baa68944aad80732cb08b3d, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 2197582417569134742, guid: 7917e70f5baa68944aad80732cb08b3d, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 2197582417569134742, guid: 7917e70f5baa68944aad80732cb08b3d, type: 3} - propertyPath: m_LocalRotation.x - value: -0 - objectReference: {fileID: 0} - - target: {fileID: 2197582417569134742, guid: 7917e70f5baa68944aad80732cb08b3d, type: 3} - propertyPath: m_LocalRotation.y - value: -0 - objectReference: {fileID: 0} - - target: {fileID: 2197582417569134742, guid: 7917e70f5baa68944aad80732cb08b3d, type: 3} - propertyPath: m_LocalRotation.z - value: -0 - objectReference: {fileID: 0} - - target: {fileID: 2197582417569134742, guid: 7917e70f5baa68944aad80732cb08b3d, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 2197582417569134742, guid: 7917e70f5baa68944aad80732cb08b3d, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 2197582417569134742, guid: 7917e70f5baa68944aad80732cb08b3d, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3811120315536780707, guid: 7917e70f5baa68944aad80732cb08b3d, type: 3} - propertyPath: m_Name - value: PT_Poppy_02_LOD0 - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 7917e70f5baa68944aad80732cb08b3d, type: 3} ---- !u!1660057539 &9223372036854775807 -SceneRoots: - m_ObjectHideFlags: 0 - m_Roots: - - {fileID: 1413231522} - - {fileID: 1474834544} - - {fileID: 1590409431} - - {fileID: 1570689920} - - {fileID: 1151806835} - - {fileID: 1821911521223183831} - - {fileID: 201706615} - - {fileID: 139766769} - - {fileID: 1560350455} - - {fileID: 1269491061} - - {fileID: 1546470280} - - {fileID: 333149449} - - {fileID: 894822543} - - {fileID: 270273000227259158} - - {fileID: 8903552303591553771} - - {fileID: 6868955873547145837} - - {fileID: 6833504824959735945} - - {fileID: 1916556001867926058} diff --git a/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Environment_Free.unity.meta b/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Environment_Free.unity.meta deleted file mode 100644 index 131d006..0000000 --- a/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Environment_Free.unity.meta +++ /dev/null @@ -1,14 +0,0 @@ -fileFormatVersion: 2 -guid: c732593fe76e5a84197f9cd13963f706 -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: -AssetOrigin: - serializedVersion: 1 - productId: 187052 - packageName: Lowpoly Environment - Nature Free - MEDIEVAL FANTASY SERIES - packageVersion: 1.1.1 - assetPath: Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Environment_Free.unity - uploadId: 870152 diff --git a/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Fence.prefab b/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Fence.prefab deleted file mode 100644 index 410bd17..0000000 --- a/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Fence.prefab +++ /dev/null @@ -1,5098 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!1 &118791483921224497 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 6691463428100839530, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 4671040617603017656} - - component: {fileID: 3922666841931857809} - - component: {fileID: 8321626025527166203} - - component: {fileID: 8327856496112018696} - m_Layer: 0 - m_Name: PT_Medieval_Village_Fence_02 (21) - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &4671040617603017656 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 5431082423780741620, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 118791483921224497} - m_LocalRotation: {x: -0, y: -0.39589718, z: -0, w: -0.9182949} - m_LocalPosition: {x: 346.83, y: 5.56, z: 726.61} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 3407632473118064403} - m_RootOrder: 24 - m_LocalEulerAnglesHint: {x: 0, y: -313.356, z: 0} ---- !u!33 &3922666841931857809 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 6342909597472319076, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 118791483921224497} - m_Mesh: {fileID: -7129513904718193985, guid: b67d2b761d3397348831d776dbb33e03, type: 3} ---- !u!23 &8321626025527166203 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 1255388398176616410, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 118791483921224497} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!64 &8327856496112018696 -MeshCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 3543374350097899679, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 118791483921224497} - m_Material: {fileID: 0} - m_IsTrigger: 0 - m_Enabled: 1 - serializedVersion: 4 - m_Convex: 0 - m_CookingOptions: 30 - m_Mesh: {fileID: 4300000, guid: b67d2b761d3397348831d776dbb33e03, type: 3} ---- !u!1 &305953360363020323 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 7565713880609333336, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 4499731867970358962} - - component: {fileID: 7285165882374629437} - - component: {fileID: 2949931404826614793} - - component: {fileID: 938011998683938988} - m_Layer: 0 - m_Name: PT_Medieval_Village_Fence_01 (12) - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &4499731867970358962 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 6017772224458522580, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 305953360363020323} - m_LocalRotation: {x: -0.002396858, y: 0.34725478, z: 0.005203707, w: -0.9377533} - m_LocalPosition: {x: 326.036, y: 5.632, z: 735.617} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 3407632473118064403} - m_RootOrder: 14 - m_LocalEulerAnglesHint: {x: 0.05, y: -400.64, z: -0.655} ---- !u!33 &7285165882374629437 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 7570374869212208486, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 305953360363020323} - m_Mesh: {fileID: -1452343357121901386, guid: ed920bad5318ee347ad3e34dd82e273f, type: 3} ---- !u!23 &2949931404826614793 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 2450382639342973926, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 305953360363020323} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!64 &938011998683938988 -MeshCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 1969746351160729557, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 305953360363020323} - m_Material: {fileID: 0} - m_IsTrigger: 0 - m_Enabled: 1 - serializedVersion: 4 - m_Convex: 0 - m_CookingOptions: 30 - m_Mesh: {fileID: 4300000, guid: ed920bad5318ee347ad3e34dd82e273f, type: 3} ---- !u!1 &618733812374442895 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 7056880059245332611, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 3447389114724855386} - - component: {fileID: 4102224716393213276} - m_Layer: 0 - m_Name: PT_Medieval_Village_Gate_01 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &3447389114724855386 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 5077679614392261339, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 618733812374442895} - m_LocalRotation: {x: -0, y: -0.9031607, z: -0, w: 0.42930278} - m_LocalPosition: {x: 327.37, y: 5.69, z: 718.85} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 3610983002142267898} - - {fileID: 2781761688132099912} - - {fileID: 1341646464914990200} - m_Father: {fileID: 3407632473118064403} - m_RootOrder: 34 - m_LocalEulerAnglesHint: {x: 0, y: -129.153, z: 0} ---- !u!64 &4102224716393213276 -MeshCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 8042326386121493622, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 618733812374442895} - m_Material: {fileID: 0} - m_IsTrigger: 0 - m_Enabled: 1 - serializedVersion: 4 - m_Convex: 0 - m_CookingOptions: 30 - m_Mesh: {fileID: 0} ---- !u!1 &936611192058982741 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 7587580295509249833, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 4238187442440654543} - - component: {fileID: 6244927190138535336} - - component: {fileID: 8217324960976843067} - - component: {fileID: 4888510256743518210} - m_Layer: 0 - m_Name: PT_Medieval_Village_Fence_04 (19) - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &4238187442440654543 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 1432475541279230581, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 936611192058982741} - m_LocalRotation: {x: -0, y: -0.38149574, z: -0, w: -0.92437065} - m_LocalPosition: {x: 333.934, y: 5.51, z: 739.306} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 3407632473118064403} - m_RootOrder: 32 - m_LocalEulerAnglesHint: {x: 0, y: -315.147, z: 0} ---- !u!33 &6244927190138535336 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 6036671447454677646, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 936611192058982741} - m_Mesh: {fileID: -7129513904718193985, guid: b67d2b761d3397348831d776dbb33e03, type: 3} ---- !u!23 &8217324960976843067 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 3188007371765554922, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 936611192058982741} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!64 &4888510256743518210 -MeshCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 2713506827145610766, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 936611192058982741} - m_Material: {fileID: 0} - m_IsTrigger: 0 - m_Enabled: 1 - serializedVersion: 4 - m_Convex: 0 - m_CookingOptions: 30 - m_Mesh: {fileID: 4300000, guid: faaede3d1773ae2488a568c13e10cee4, type: 3} ---- !u!1 &1216715603167508125 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 6327748466542290382, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 501319484354329614} - - component: {fileID: 3652339147243188812} - - component: {fileID: 5813593689729897791} - - component: {fileID: 8581031139796341351} - m_Layer: 0 - m_Name: PT_Medieval_Village_Fence_02 (18) - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &501319484354329614 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 3876679617051642717, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1216715603167508125} - m_LocalRotation: {x: -0.002277261, y: 0.36860347, z: 0.005257142, w: -0.9295691} - m_LocalPosition: {x: 324.576, y: 5.661, z: 734.239} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 3407632473118064403} - m_RootOrder: 16 - m_LocalEulerAnglesHint: {x: 0.021000002, y: -403.26, z: -0.656} ---- !u!33 &3652339147243188812 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 4419846596639621780, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1216715603167508125} - m_Mesh: {fileID: -7129513904718193985, guid: b67d2b761d3397348831d776dbb33e03, type: 3} ---- !u!23 &5813593689729897791 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 4019780153783146733, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1216715603167508125} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!64 &8581031139796341351 -MeshCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 1643123251001202849, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1216715603167508125} - m_Material: {fileID: 0} - m_IsTrigger: 0 - m_Enabled: 1 - serializedVersion: 4 - m_Convex: 0 - m_CookingOptions: 30 - m_Mesh: {fileID: 4300000, guid: b67d2b761d3397348831d776dbb33e03, type: 3} ---- !u!1 &1297976836538073488 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 2148495326215863154, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 3613909244111802595} - - component: {fileID: 7060309356549429597} - - component: {fileID: 7685620819451987220} - - component: {fileID: 9081333308325161515} - m_Layer: 0 - m_Name: PT_Medieval_Village_Fence_03 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &3613909244111802595 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 7087934559104316899, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1297976836538073488} - m_LocalRotation: {x: -0, y: -0.8935554, z: -0, w: 0.44895297} - m_LocalPosition: {x: 325.769, y: 5.768, z: 721.117} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 3407632473118064403} - m_RootOrder: 36 - m_LocalEulerAnglesHint: {x: 0, y: -126.647, z: 0} ---- !u!33 &7060309356549429597 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 2154705375535455120, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1297976836538073488} - m_Mesh: {fileID: -7129513904718193985, guid: b67d2b761d3397348831d776dbb33e03, type: 3} ---- !u!23 &7685620819451987220 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 7272389663771021863, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1297976836538073488} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!64 &9081333308325161515 -MeshCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 6990894236982284037, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1297976836538073488} - m_Material: {fileID: 0} - m_IsTrigger: 0 - m_Enabled: 1 - serializedVersion: 4 - m_Convex: 0 - m_CookingOptions: 30 - m_Mesh: {fileID: 4300000, guid: 955f7ab7f12013b42b2aa2e494846f3a, type: 3} ---- !u!1 &1309609186316250455 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 5257269208054815404, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 363701024052405528} - - component: {fileID: 8077715166767290660} - - component: {fileID: 7177080729591094187} - - component: {fileID: 7911283150027724991} - m_Layer: 0 - m_Name: PT_Medieval_Village_Fence_02 (28) - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &363701024052405528 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 2712316440301277363, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1309609186316250455} - m_LocalRotation: {x: -0, y: -0.93955934, z: -0, w: -0.34238613} - m_LocalPosition: {x: 348.9, y: 5.5629997, z: 724.48} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 3407632473118064403} - m_RootOrder: 38 - m_LocalEulerAnglesHint: {x: 0, y: -220.045, z: 0} ---- !u!33 &8077715166767290660 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 7492751489091306756, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1309609186316250455} - m_Mesh: {fileID: -7129513904718193985, guid: b67d2b761d3397348831d776dbb33e03, type: 3} ---- !u!23 &7177080729591094187 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 7025323623807070371, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1309609186316250455} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!64 &7911283150027724991 -MeshCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 1965018320067027363, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1309609186316250455} - m_Material: {fileID: 0} - m_IsTrigger: 0 - m_Enabled: 1 - serializedVersion: 4 - m_Convex: 0 - m_CookingOptions: 30 - m_Mesh: {fileID: 4300000, guid: b67d2b761d3397348831d776dbb33e03, type: 3} ---- !u!1 &1901596232626681428 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 6177768770785342271, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 4414606598822864804} - - component: {fileID: 7319482341678629144} - - component: {fileID: 8121572967025137056} - - component: {fileID: 2418494643630660155} - m_Layer: 0 - m_Name: PT_Medieval_Village_Fence_02 (4) - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &4414606598822864804 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 2089576838841274367, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1901596232626681428} - m_LocalRotation: {x: -0, y: -0.93955934, z: -0, w: -0.34238613} - m_LocalPosition: {x: 339.98, y: 5.619, z: 716.21} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 3407632473118064403} - m_RootOrder: 6 - m_LocalEulerAnglesHint: {x: 0, y: -220.045, z: 0} ---- !u!33 &7319482341678629144 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 4930993571358900372, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1901596232626681428} - m_Mesh: {fileID: -1452343357121901386, guid: ed920bad5318ee347ad3e34dd82e273f, type: 3} ---- !u!23 &8121572967025137056 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 7365084536621519417, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1901596232626681428} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!64 &2418494643630660155 -MeshCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 1762218138740506911, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1901596232626681428} - m_Material: {fileID: 0} - m_IsTrigger: 0 - m_Enabled: 1 - serializedVersion: 4 - m_Convex: 0 - m_CookingOptions: 30 - m_Mesh: {fileID: 4300000, guid: b67d2b761d3397348831d776dbb33e03, type: 3} ---- !u!1 &2241437581063234303 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 2677124822427839638, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 425285099656716110} - - component: {fileID: 4282791864447286986} - - component: {fileID: 6723930429636342674} - - component: {fileID: 1694860432814997697} - m_Layer: 0 - m_Name: PT_Medieval_Village_Fence_04 (15) - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &425285099656716110 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 3023249892514557693, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2241437581063234303} - m_LocalRotation: {x: -0.005166048, y: -0.87351435, z: 0.00287876, w: 0.48676258} - m_LocalPosition: {x: 324.51, y: 5.753, z: 722.714} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 3407632473118064403} - m_RootOrder: 21 - m_LocalEulerAnglesHint: {x: 0, y: -121.743004, z: 0.67800003} ---- !u!33 &4282791864447286986 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 7978129962351172889, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2241437581063234303} - m_Mesh: {fileID: -7129513904718193985, guid: b67d2b761d3397348831d776dbb33e03, type: 3} ---- !u!23 &6723930429636342674 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 5774921956236232121, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2241437581063234303} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!64 &1694860432814997697 -MeshCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 2626966819541481871, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2241437581063234303} - m_Material: {fileID: 0} - m_IsTrigger: 0 - m_Enabled: 1 - serializedVersion: 4 - m_Convex: 0 - m_CookingOptions: 30 - m_Mesh: {fileID: 4300000, guid: faaede3d1773ae2488a568c13e10cee4, type: 3} ---- !u!1 &2453024585972656321 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 1523164329085119895, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 2421596117163324486} - - component: {fileID: 6171339448698621917} - - component: {fileID: 8398297440676215765} - - component: {fileID: 5246426036920309196} - m_Layer: 0 - m_Name: PT_Medieval_Village_Fence_01 (14) - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &2421596117163324486 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 8234271764373083658, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2453024585972656321} - m_LocalRotation: {x: -0.0051667118, y: -0.8734022, z: 0.0028775698, w: 0.48696384} - m_LocalPosition: {x: 322.306, y: 5.8, z: 726.313} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 3407632473118064403} - m_RootOrder: 20 - m_LocalEulerAnglesHint: {x: 0, y: -121.716, z: 0.67800003} ---- !u!33 &6171339448698621917 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 8167987535039136608, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2453024585972656321} - m_Mesh: {fileID: -7129513904718193985, guid: b67d2b761d3397348831d776dbb33e03, type: 3} ---- !u!23 &8398297440676215765 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 8405406176939499280, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2453024585972656321} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!64 &5246426036920309196 -MeshCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 7632263698490536593, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2453024585972656321} - m_Material: {fileID: 0} - m_IsTrigger: 0 - m_Enabled: 1 - serializedVersion: 4 - m_Convex: 0 - m_CookingOptions: 30 - m_Mesh: {fileID: 4300000, guid: ed920bad5318ee347ad3e34dd82e273f, type: 3} ---- !u!1 &2538657680401534658 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 7215778828177276567, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 9065942339525236868} - - component: {fileID: 5093059030766876861} - - component: {fileID: 3803491265915952706} - - component: {fileID: 2616835061886908472} - m_Layer: 0 - m_Name: PT_Medieval_Village_Fence_02 (19) - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &9065942339525236868 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 98303990304373466, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2538657680401534658} - m_LocalRotation: {x: -0.002277261, y: 0.36860347, z: 0.005257142, w: -0.9295691} - m_LocalPosition: {x: 320.136, y: 5.839, z: 729.855} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 3407632473118064403} - m_RootOrder: 18 - m_LocalEulerAnglesHint: {x: 0.021000002, y: -403.26, z: -0.656} ---- !u!33 &5093059030766876861 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 4315117308163343443, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2538657680401534658} - m_Mesh: {fileID: -7129513904718193985, guid: b67d2b761d3397348831d776dbb33e03, type: 3} ---- !u!23 &3803491265915952706 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 3499567624536510334, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2538657680401534658} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!64 &2616835061886908472 -MeshCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 4204524443487501658, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2538657680401534658} - m_Material: {fileID: 0} - m_IsTrigger: 0 - m_Enabled: 1 - serializedVersion: 4 - m_Convex: 0 - m_CookingOptions: 30 - m_Mesh: {fileID: 4300000, guid: b67d2b761d3397348831d776dbb33e03, type: 3} ---- !u!1 &2591134332982956883 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 5449774393678851048, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1272962110646691162} - - component: {fileID: 2210470832413441295} - - component: {fileID: 8284129003093742110} - - component: {fileID: 1256227746489673309} - m_Layer: 0 - m_Name: PT_Medieval_Village_Fence_01 (15) - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &1272962110646691162 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 7019340265122819889, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2591134332982956883} - m_LocalRotation: {x: -0, y: -0.9165127, z: -0, w: 0.4000056} - m_LocalPosition: {x: 348.949, y: 5.546, z: 724.525} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 3407632473118064403} - m_RootOrder: 23 - m_LocalEulerAnglesHint: {x: 0, y: -132.843, z: 0} ---- !u!33 &2210470832413441295 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 2404417514997231679, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2591134332982956883} - m_Mesh: {fileID: -7129513904718193985, guid: b67d2b761d3397348831d776dbb33e03, type: 3} ---- !u!23 &8284129003093742110 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 1740044153003547528, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2591134332982956883} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!64 &1256227746489673309 -MeshCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 7244388691818053741, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2591134332982956883} - m_Material: {fileID: 0} - m_IsTrigger: 0 - m_Enabled: 1 - serializedVersion: 4 - m_Convex: 0 - m_CookingOptions: 30 - m_Mesh: {fileID: 4300000, guid: ed920bad5318ee347ad3e34dd82e273f, type: 3} ---- !u!1 &2691389075318091328 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 1374362558744202955, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 531172353997101523} - - component: {fileID: 8849730454412525121} - - component: {fileID: 2469655966255313246} - - component: {fileID: 4957328284060077537} - m_Layer: 0 - m_Name: PT_Medieval_Village_Fence_02 (20) - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &531172353997101523 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 4430275092663365426, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2691389075318091328} - m_LocalRotation: {x: -0.0052104127, y: -0.8657995, z: 0.002797663, w: 0.5003562} - m_LocalPosition: {x: 323.349, y: 5.781, z: 724.565} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 3407632473118064403} - m_RootOrder: 22 - m_LocalEulerAnglesHint: {x: -0.021000002, y: -119.952, z: 0.67700005} ---- !u!33 &8849730454412525121 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 8124426125595884708, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2691389075318091328} - m_Mesh: {fileID: -7129513904718193985, guid: b67d2b761d3397348831d776dbb33e03, type: 3} ---- !u!23 &2469655966255313246 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 6272967322109033485, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2691389075318091328} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!64 &4957328284060077537 -MeshCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 2500049704962345137, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2691389075318091328} - m_Material: {fileID: 0} - m_IsTrigger: 0 - m_Enabled: 1 - serializedVersion: 4 - m_Convex: 0 - m_CookingOptions: 30 - m_Mesh: {fileID: 4300000, guid: b67d2b761d3397348831d776dbb33e03, type: 3} ---- !u!1 &2881377540962085355 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 8768375387946030304, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 6024423171774503010} - - component: {fileID: 8706147321758078492} - - component: {fileID: 2372432970714143744} - - component: {fileID: 8320568897726482961} - m_Layer: 0 - m_Name: PT_Medieval_Village_Fence_01 (2) - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &6024423171774503010 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 2034390157161244639, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2881377540962085355} - m_LocalRotation: {x: -0, y: -0.93417525, z: -0, w: -0.3568146} - m_LocalPosition: {x: 338.44, y: 5.612, z: 714.86} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 3407632473118064403} - m_RootOrder: 4 - m_LocalEulerAnglesHint: {x: 0, y: -221.80899, z: 0} ---- !u!33 &8706147321758078492 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 3232882085077168485, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2881377540962085355} - m_Mesh: {fileID: -1452343357121901386, guid: ed920bad5318ee347ad3e34dd82e273f, type: 3} ---- !u!23 &2372432970714143744 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 7816509458607821781, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2881377540962085355} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!64 &8320568897726482961 -MeshCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 737757104167910844, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2881377540962085355} - m_Material: {fileID: 0} - m_IsTrigger: 0 - m_Enabled: 1 - serializedVersion: 4 - m_Convex: 0 - m_CookingOptions: 30 - m_Mesh: {fileID: 4300000, guid: ed920bad5318ee347ad3e34dd82e273f, type: 3} ---- !u!1 &2894790270330610509 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 3032652061304598207, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 2259381557849193041} - - component: {fileID: 1526345174690015610} - - component: {fileID: 4533188222843650773} - - component: {fileID: 6524747450455662958} - m_Layer: 0 - m_Name: PT_Medieval_Village_Fence_01 (1) - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &2259381557849193041 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 2917219865980533882, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2894790270330610509} - m_LocalRotation: {x: -0, y: -0.90679276, z: -0, w: 0.42157668} - m_LocalPosition: {x: 332.714, y: 5.72, z: 712.259} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 3407632473118064403} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: -130.132, z: 0} ---- !u!33 &1526345174690015610 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 2140393664225490375, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2894790270330610509} - m_Mesh: {fileID: -1452343357121901386, guid: ed920bad5318ee347ad3e34dd82e273f, type: 3} ---- !u!23 &4533188222843650773 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 6816666450342108714, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2894790270330610509} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!64 &6524747450455662958 -MeshCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 2143407771234974037, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2894790270330610509} - m_Material: {fileID: 0} - m_IsTrigger: 0 - m_Enabled: 1 - serializedVersion: 4 - m_Convex: 0 - m_CookingOptions: 30 - m_Mesh: {fileID: 4300000, guid: ed920bad5318ee347ad3e34dd82e273f, type: 3} ---- !u!1 &3026653355848365320 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 609756017720356325, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 9121261820239735104} - - component: {fileID: 2791392233807054872} - - component: {fileID: 3117216159833627989} - - component: {fileID: 2931152230618717225} - m_Layer: 0 - m_Name: PT_Medieval_Village_Fence_04 (18) - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &9121261820239735104 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 3826363195613660346, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3026653355848365320} - m_LocalRotation: {x: -0, y: -0.36198252, z: -0, w: -0.9321849} - m_LocalPosition: {x: 338.293, y: 5.568, z: 735.024} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 3407632473118064403} - m_RootOrder: 29 - m_LocalEulerAnglesHint: {x: 0, y: -317.556, z: 0} ---- !u!33 &2791392233807054872 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 2290454760562443915, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3026653355848365320} - m_Mesh: {fileID: -7129513904718193985, guid: b67d2b761d3397348831d776dbb33e03, type: 3} ---- !u!23 &3117216159833627989 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 5090057803609229386, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3026653355848365320} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!64 &2931152230618717225 -MeshCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 7354138276890551730, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3026653355848365320} - m_Material: {fileID: 0} - m_IsTrigger: 0 - m_Enabled: 1 - serializedVersion: 4 - m_Convex: 0 - m_CookingOptions: 30 - m_Mesh: {fileID: 4300000, guid: faaede3d1773ae2488a568c13e10cee4, type: 3} ---- !u!1 &3050066197643226226 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 945387740487448954, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 5978980191821869834} - - component: {fileID: 9107873625827301772} - - component: {fileID: 46178916766238599} - - component: {fileID: 4185589721985963226} - m_Layer: 0 - m_Name: PT_Medieval_Village_Fence_02 (24) - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &5978980191821869834 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 3489048297371788019, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3050066197643226226} - m_LocalRotation: {x: -0, y: -0.39589718, z: -0, w: -0.9182949} - m_LocalPosition: {x: 341.3408, y: 5.5449996, z: 732.10645} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 3407632473118064403} - m_RootOrder: 28 - m_LocalEulerAnglesHint: {x: 0, y: -313.356, z: 0} ---- !u!33 &9107873625827301772 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 4326967233763771582, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3050066197643226226} - m_Mesh: {fileID: -7129513904718193985, guid: b67d2b761d3397348831d776dbb33e03, type: 3} ---- !u!23 &46178916766238599 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 7091984823121864305, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3050066197643226226} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!64 &4185589721985963226 -MeshCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 7808096658160408545, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3050066197643226226} - m_Material: {fileID: 0} - m_IsTrigger: 0 - m_Enabled: 1 - serializedVersion: 4 - m_Convex: 0 - m_CookingOptions: 30 - m_Mesh: {fileID: 4300000, guid: b67d2b761d3397348831d776dbb33e03, type: 3} ---- !u!1 &3050259203360800397 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 6234443268096991424, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 6436134898895038655} - - component: {fileID: 2949284725500083858} - - component: {fileID: 2313517181990265074} - - component: {fileID: 5861153137031353711} - m_Layer: 0 - m_Name: PT_Medieval_Village_Fence_02 (26) - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &6436134898895038655 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 2131727005433817098, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3050259203360800397} - m_LocalRotation: {x: -0, y: -0.39589718, z: -0, w: -0.9182949} - m_LocalPosition: {x: 335.4735, y: 5.5, z: 737.75183} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 3407632473118064403} - m_RootOrder: 33 - m_LocalEulerAnglesHint: {x: 0, y: -313.356, z: 0} ---- !u!33 &2949284725500083858 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 3344551549928635629, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3050259203360800397} - m_Mesh: {fileID: -7129513904718193985, guid: b67d2b761d3397348831d776dbb33e03, type: 3} ---- !u!23 &2313517181990265074 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 4138531335843269991, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3050259203360800397} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!64 &5861153137031353711 -MeshCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 6804238502910643136, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3050259203360800397} - m_Material: {fileID: 0} - m_IsTrigger: 0 - m_Enabled: 1 - serializedVersion: 4 - m_Convex: 0 - m_CookingOptions: 30 - m_Mesh: {fileID: 4300000, guid: b67d2b761d3397348831d776dbb33e03, type: 3} ---- !u!1 &3320395686529070573 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 5179313932521323255, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 95996185945374402} - - component: {fileID: 5646259124744744057} - - component: {fileID: 7578420582820737111} - - component: {fileID: 4581958242304595217} - m_Layer: 0 - m_Name: PT_Medieval_Village_Fence_02 (22) - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &95996185945374402 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 6374646709204080587, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3320395686529070573} - m_LocalRotation: {x: -0, y: -0.37981316, z: -0, w: -0.92506325} - m_LocalPosition: {x: 345.327, y: 5.583, z: 727.955} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 3407632473118064403} - m_RootOrder: 25 - m_LocalEulerAnglesHint: {x: 0, y: -315.356, z: 0} ---- !u!33 &5646259124744744057 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 579399843034776648, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3320395686529070573} - m_Mesh: {fileID: -7129513904718193985, guid: b67d2b761d3397348831d776dbb33e03, type: 3} ---- !u!23 &7578420582820737111 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 1489258723586811920, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3320395686529070573} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!64 &4581958242304595217 -MeshCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 6933267053407275462, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3320395686529070573} - m_Material: {fileID: 0} - m_IsTrigger: 0 - m_Enabled: 1 - serializedVersion: 4 - m_Convex: 0 - m_CookingOptions: 30 - m_Mesh: {fileID: 4300000, guid: b67d2b761d3397348831d776dbb33e03, type: 3} ---- !u!1 &3604016418586573362 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 1997449620860163676, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 3610983002142267898} - - component: {fileID: 1076704461535368262} - - component: {fileID: 1829331831549819716} - m_Layer: 0 - m_Name: PT_Medieval_Village_Gate_01_fixed - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &3610983002142267898 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 9134581759298978638, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3604016418586573362} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0.03, y: 0.54287034, z: -0.07} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 3447389114724855386} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &1076704461535368262 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 5380991712082641510, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3604016418586573362} - m_Mesh: {fileID: 4300004, guid: fe0e66efb90310c4b81063d19da129b3, type: 3} ---- !u!23 &1829331831549819716 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 2132396205341765096, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3604016418586573362} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!1 &3742528696656725499 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 5860413586993043992, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 4745722948387954019} - - component: {fileID: 2289977944311049488} - - component: {fileID: 1932282306373443833} - - component: {fileID: 4565067000702177686} - m_Layer: 0 - m_Name: PT_Medieval_Village_Fence_02 (13) - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &4745722948387954019 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 1728773400993077689, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3742528696656725499} - m_LocalRotation: {x: -0.0025281212, y: 0.32334906, z: 0.005141212, w: -0.9462625} - m_LocalPosition: {x: 327.578, y: 5.61, z: 737.021} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 3407632473118064403} - m_RootOrder: 13 - m_LocalEulerAnglesHint: {x: 0.084, y: -397.732, z: -0.651} ---- !u!33 &2289977944311049488 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 5326808861575987066, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3742528696656725499} - m_Mesh: {fileID: -1452343357121901386, guid: ed920bad5318ee347ad3e34dd82e273f, type: 3} ---- !u!23 &1932282306373443833 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 3491206012651197971, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3742528696656725499} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!64 &4565067000702177686 -MeshCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 3814240734828600607, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3742528696656725499} - m_Material: {fileID: 0} - m_IsTrigger: 0 - m_Enabled: 1 - serializedVersion: 4 - m_Convex: 0 - m_CookingOptions: 30 - m_Mesh: {fileID: 4300000, guid: b67d2b761d3397348831d776dbb33e03, type: 3} ---- !u!1 &3790539468563764101 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 3123459812554633591, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 4023407231304425101} - - component: {fileID: 4162557761067374588} - - component: {fileID: 5060636570536613722} - - component: {fileID: 2229530671947423424} - m_Layer: 0 - m_Name: PT_Medieval_Village_Fence_04 (2) - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &4023407231304425101 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 8077091563784070444, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3790539468563764101} - m_LocalRotation: {x: -0, y: -0.9263826, z: -0, w: -0.3765839} - m_LocalPosition: {x: 336.9, y: 5.62, z: 713.37} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 3407632473118064403} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: -224.24399, z: 0} ---- !u!33 &4162557761067374588 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 6766181167746402628, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3790539468563764101} - m_Mesh: {fileID: -1452343357121901386, guid: ed920bad5318ee347ad3e34dd82e273f, type: 3} ---- !u!23 &5060636570536613722 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 357793172817506915, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3790539468563764101} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!64 &2229530671947423424 -MeshCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 4817662039482155077, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3790539468563764101} - m_Material: {fileID: 0} - m_IsTrigger: 0 - m_Enabled: 1 - serializedVersion: 4 - m_Convex: 0 - m_CookingOptions: 30 - m_Mesh: {fileID: 4300000, guid: faaede3d1773ae2488a568c13e10cee4, type: 3} ---- !u!1 &4219485693586689148 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 5581948382792311487, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 5696288702187877893} - - component: {fileID: 4126790998003422708} - - component: {fileID: 8011123841047061454} - - component: {fileID: 6802675984948830793} - m_Layer: 0 - m_Name: PT_Medieval_Village_Fence_04 (14) - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &5696288702187877893 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 3057443524530615743, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4219485693586689148} - m_LocalRotation: {x: -0.005104401, y: -0.8835522, z: 0.0029867052, w: 0.46829528} - m_LocalPosition: {x: 321.142, y: 5.832, z: 728.106} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 3407632473118064403} - m_RootOrder: 19 - m_LocalEulerAnglesHint: {x: 0.028, y: -124.15101, z: 0.67700005} ---- !u!33 &4126790998003422708 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 2347394290141247542, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4219485693586689148} - m_Mesh: {fileID: -7129513904718193985, guid: b67d2b761d3397348831d776dbb33e03, type: 3} ---- !u!23 &8011123841047061454 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 3869536620230148579, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4219485693586689148} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!64 &6802675984948830793 -MeshCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 5120658659759789981, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4219485693586689148} - m_Material: {fileID: 0} - m_IsTrigger: 0 - m_Enabled: 1 - serializedVersion: 4 - m_Convex: 0 - m_CookingOptions: 30 - m_Mesh: {fileID: 4300000, guid: faaede3d1773ae2488a568c13e10cee4, type: 3} ---- !u!1 &4328850332853576941 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 4828763379710830298, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 3407632473118064403} - m_Layer: 0 - m_Name: FENCE - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &3407632473118064403 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 529876361894922179, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4328850332853576941} - m_LocalRotation: {x: -0, y: -0.31728694, z: -0, w: -0.9483296} - m_LocalPosition: {x: -639.7, y: -2.82, z: -314.8} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 2259381557849193041} - - {fileID: 5167555997635088772} - - {fileID: 4023407231304425101} - - {fileID: 1553709570810170224} - - {fileID: 6024423171774503010} - - {fileID: 6271034585405152841} - - {fileID: 4414606598822864804} - - {fileID: 144758990197739633} - - {fileID: 2829623993758042902} - - {fileID: 1410373997206647290} - - {fileID: 8355036215344931271} - - {fileID: 2582148069083766623} - - {fileID: 4876811750848940274} - - {fileID: 4745722948387954019} - - {fileID: 4499731867970358962} - - {fileID: 8655184658344890905} - - {fileID: 501319484354329614} - - {fileID: 5945948836266214315} - - {fileID: 9065942339525236868} - - {fileID: 5696288702187877893} - - {fileID: 2421596117163324486} - - {fileID: 425285099656716110} - - {fileID: 531172353997101523} - - {fileID: 1272962110646691162} - - {fileID: 4671040617603017656} - - {fileID: 95996185945374402} - - {fileID: 1796046966267960482} - - {fileID: 5727294234831795640} - - {fileID: 5978980191821869834} - - {fileID: 9121261820239735104} - - {fileID: 8165482666751556398} - - {fileID: 3937168889832031985} - - {fileID: 4238187442440654543} - - {fileID: 6436134898895038655} - - {fileID: 3447389114724855386} - - {fileID: 7154861769690062172} - - {fileID: 3613909244111802595} - - {fileID: 575041524539175518} - - {fileID: 363701024052405528} - - {fileID: 853555246863754333} - m_Father: {fileID: 7507501101374053384} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: -323.002, z: 0} ---- !u!1 &4426235941845397935 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 1561209266917040469, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 8355036215344931271} - - component: {fileID: 1234227639816097661} - - component: {fileID: 2325222338144133683} - - component: {fileID: 4003328929143390488} - m_Layer: 0 - m_Name: PT_Medieval_Village_Fence_02 (11) - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &8355036215344931271 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 1375686486182646666, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4426235941845397935} - m_LocalRotation: {x: -0, y: -0.93955934, z: -0, w: -0.34238613} - m_LocalPosition: {x: 347.53, y: 5.5969996, z: 723.14} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 3407632473118064403} - m_RootOrder: 10 - m_LocalEulerAnglesHint: {x: 0, y: -220.045, z: 0} ---- !u!33 &1234227639816097661 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 6884372378742752371, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4426235941845397935} - m_Mesh: {fileID: -1452343357121901386, guid: ed920bad5318ee347ad3e34dd82e273f, type: 3} ---- !u!23 &2325222338144133683 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 2701931858784503865, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4426235941845397935} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!64 &4003328929143390488 -MeshCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 5866335971525324436, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4426235941845397935} - m_Material: {fileID: 0} - m_IsTrigger: 0 - m_Enabled: 1 - serializedVersion: 4 - m_Convex: 0 - m_CookingOptions: 30 - m_Mesh: {fileID: 4300000, guid: b67d2b761d3397348831d776dbb33e03, type: 3} ---- !u!1 &4611300765060006914 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 5229349018642295891, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 8165482666751556398} - - component: {fileID: 4714496475559038507} - - component: {fileID: 1572579072708110666} - - component: {fileID: 1887112855482203167} - m_Layer: 0 - m_Name: PT_Medieval_Village_Fence_02 (25) - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &8165482666751556398 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 7813133666804250380, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4611300765060006914} - m_LocalRotation: {x: -0, y: -0.37981316, z: -0, w: -0.92506325} - m_LocalPosition: {x: 339.87296, y: 5.568, z: 733.5481} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 3407632473118064403} - m_RootOrder: 30 - m_LocalEulerAnglesHint: {x: 0, y: -315.356, z: 0} ---- !u!33 &4714496475559038507 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 6207808757286219813, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4611300765060006914} - m_Mesh: {fileID: -7129513904718193985, guid: b67d2b761d3397348831d776dbb33e03, type: 3} ---- !u!23 &1572579072708110666 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 3750760618907943193, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4611300765060006914} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!64 &1887112855482203167 -MeshCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 6962734991691374102, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4611300765060006914} - m_Material: {fileID: 0} - m_IsTrigger: 0 - m_Enabled: 1 - serializedVersion: 4 - m_Convex: 0 - m_CookingOptions: 30 - m_Mesh: {fileID: 4300000, guid: b67d2b761d3397348831d776dbb33e03, type: 3} ---- !u!1 &4729288904662572527 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 4864937182966807110, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 853555246863754333} - - component: {fileID: 5362586034879292305} - - component: {fileID: 7934329899830405203} - - component: {fileID: 2127464333529371200} - m_Layer: 0 - m_Name: PT_Medieval_Village_Fence_01 (19) - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &853555246863754333 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 175543255712178836, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4729288904662572527} - m_LocalRotation: {x: -0, y: -0.3817085, z: -0, w: -0.9242827} - m_LocalPosition: {x: 332.359, y: 5.511, z: 740.832} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 3407632473118064403} - m_RootOrder: 39 - m_LocalEulerAnglesHint: {x: 0, y: -315.121, z: 0} ---- !u!33 &5362586034879292305 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 8979181842504415738, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4729288904662572527} - m_Mesh: {fileID: -7129513904718193985, guid: b67d2b761d3397348831d776dbb33e03, type: 3} ---- !u!23 &7934329899830405203 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 780493962266665977, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4729288904662572527} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!64 &2127464333529371200 -MeshCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 1182572445740229803, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4729288904662572527} - m_Material: {fileID: 0} - m_IsTrigger: 0 - m_Enabled: 1 - serializedVersion: 4 - m_Convex: 0 - m_CookingOptions: 30 - m_Mesh: {fileID: 4300000, guid: ed920bad5318ee347ad3e34dd82e273f, type: 3} ---- !u!1 &4762509092331894743 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 6612357596455610831, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 6271034585405152841} - - component: {fileID: 1805503321331982157} - - component: {fileID: 192441539432351621} - - component: {fileID: 1728454553731546183} - m_Layer: 0 - m_Name: PT_Medieval_Village_Fence_04 (4) - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &6271034585405152841 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 3998114766259742550, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4762509092331894743} - m_LocalRotation: {x: -0, y: -0.93409324, z: -0, w: -0.3570293} - m_LocalPosition: {x: 341.47, y: 5.6159997, z: 717.53} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 3407632473118064403} - m_RootOrder: 5 - m_LocalEulerAnglesHint: {x: 0, y: -221.836, z: 0} ---- !u!33 &1805503321331982157 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 4487106170755888053, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4762509092331894743} - m_Mesh: {fileID: -1452343357121901386, guid: ed920bad5318ee347ad3e34dd82e273f, type: 3} ---- !u!23 &192441539432351621 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 2472526450052507861, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4762509092331894743} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!64 &1728454553731546183 -MeshCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 5849302044254469142, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4762509092331894743} - m_Material: {fileID: 0} - m_IsTrigger: 0 - m_Enabled: 1 - serializedVersion: 4 - m_Convex: 0 - m_CookingOptions: 30 - m_Mesh: {fileID: 4300000, guid: faaede3d1773ae2488a568c13e10cee4, type: 3} ---- !u!1 &4778654411114182985 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 9067060075027816748, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 8655184658344890905} - - component: {fileID: 4112590507410847516} - - component: {fileID: 9184818511953628200} - - component: {fileID: 6055847160898701410} - m_Layer: 0 - m_Name: PT_Medieval_Village_Fence_04 (13) - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &8655184658344890905 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 8080221301003760826, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4778654411114182985} - m_LocalRotation: {x: -0.0021948125, y: 0.38308752, z: 0.005292094, w: -0.9236943} - m_LocalPosition: {x: 323.143, y: 5.681, z: 732.824} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 3407632473118064403} - m_RootOrder: 15 - m_LocalEulerAnglesHint: {x: 0, y: -405.051, z: -0.657} ---- !u!33 &4112590507410847516 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 3273783206270611025, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4778654411114182985} - m_Mesh: {fileID: -1452343357121901386, guid: ed920bad5318ee347ad3e34dd82e273f, type: 3} ---- !u!23 &9184818511953628200 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 7599610710903973239, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4778654411114182985} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!64 &6055847160898701410 -MeshCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 1764299933315229603, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4778654411114182985} - m_Material: {fileID: 0} - m_IsTrigger: 0 - m_Enabled: 1 - serializedVersion: 4 - m_Convex: 0 - m_CookingOptions: 30 - m_Mesh: {fileID: 4300000, guid: faaede3d1773ae2488a568c13e10cee4, type: 3} ---- !u!1 &4997777234128053936 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 9011984365130867917, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 575041524539175518} - - component: {fileID: 5898946298093236682} - - component: {fileID: 2769882107292884171} - - component: {fileID: 6422839557208032707} - m_Layer: 0 - m_Name: PT_Medieval_Village_Fence_02 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &575041524539175518 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 392026693797540117, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4997777234128053936} - m_LocalRotation: {x: -0, y: -0.90154165, z: -0, w: 0.4326924} - m_LocalPosition: {x: 329.98, y: 5.684, z: 715.47} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 3407632473118064403} - m_RootOrder: 37 - m_LocalEulerAnglesHint: {x: 0, y: -128.723, z: 0} ---- !u!33 &5898946298093236682 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 1352251645945787782, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4997777234128053936} - m_Mesh: {fileID: -7129513904718193985, guid: b67d2b761d3397348831d776dbb33e03, type: 3} ---- !u!23 &2769882107292884171 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 976870169993364713, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4997777234128053936} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!64 &6422839557208032707 -MeshCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 6088520597610341407, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4997777234128053936} - m_Material: {fileID: 0} - m_IsTrigger: 0 - m_Enabled: 1 - serializedVersion: 4 - m_Convex: 0 - m_CookingOptions: 30 - m_Mesh: {fileID: 4300000, guid: b67d2b761d3397348831d776dbb33e03, type: 3} ---- !u!1 &5160256080143342731 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 7279959119392452241, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1410373997206647290} - - component: {fileID: 3387720660165169810} - - component: {fileID: 6146543349293023022} - - component: {fileID: 8095724757184882525} - m_Layer: 0 - m_Name: PT_Medieval_Village_Fence_01 (7) - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &1410373997206647290 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 6907951032010938128, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5160256080143342731} - m_LocalRotation: {x: -0, y: -0.93417525, z: -0, w: -0.3568146} - m_LocalPosition: {x: 346.03, y: 5.58, z: 721.82} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 3407632473118064403} - m_RootOrder: 9 - m_LocalEulerAnglesHint: {x: 0, y: -221.80899, z: 0} ---- !u!33 &3387720660165169810 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 5770256208138130157, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5160256080143342731} - m_Mesh: {fileID: -1452343357121901386, guid: ed920bad5318ee347ad3e34dd82e273f, type: 3} ---- !u!23 &6146543349293023022 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 6367598539957854340, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5160256080143342731} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!64 &8095724757184882525 -MeshCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 8318547738269713163, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5160256080143342731} - m_Material: {fileID: 0} - m_IsTrigger: 0 - m_Enabled: 1 - serializedVersion: 4 - m_Convex: 0 - m_CookingOptions: 30 - m_Mesh: {fileID: 4300000, guid: ed920bad5318ee347ad3e34dd82e273f, type: 3} ---- !u!1 &5198298888795197883 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 9098095782387036315, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 3937168889832031985} - - component: {fileID: 2589148299612070566} - - component: {fileID: 3906522410343466646} - - component: {fileID: 7537937274953144228} - m_Layer: 0 - m_Name: PT_Medieval_Village_Fence_01 (18) - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &3937168889832031985 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 8673212332769728624, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5198298888795197883} - m_LocalRotation: {x: -0, y: -0.3817085, z: -0, w: -0.9242827} - m_LocalPosition: {x: 336.857, y: 5.56, z: 736.36} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 3407632473118064403} - m_RootOrder: 31 - m_LocalEulerAnglesHint: {x: 0, y: -315.121, z: 0} ---- !u!33 &2589148299612070566 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 29211914822797249, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5198298888795197883} - m_Mesh: {fileID: -7129513904718193985, guid: b67d2b761d3397348831d776dbb33e03, type: 3} ---- !u!23 &3906522410343466646 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 7536419070387037735, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5198298888795197883} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!64 &7537937274953144228 -MeshCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 3106057571632114080, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5198298888795197883} - m_Material: {fileID: 0} - m_IsTrigger: 0 - m_Enabled: 1 - serializedVersion: 4 - m_Convex: 0 - m_CookingOptions: 30 - m_Mesh: {fileID: 4300000, guid: ed920bad5318ee347ad3e34dd82e273f, type: 3} ---- !u!1 &5542068599319222584 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 3771830406470014704, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 2781761688132099912} - - component: {fileID: 5879791028916304091} - - component: {fileID: 2311395200584679205} - m_Layer: 0 - m_Name: PT_Medieval_Village_Gate_01_left_moblie - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &2781761688132099912 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 8944277138130971584, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5542068599319222584} - m_LocalRotation: {x: -0, y: -0.460922, z: -0, w: 0.8874407} - m_LocalPosition: {x: 2.53, y: 0, z: -0.16} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 3447389114724855386} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: -54.893, z: 0} ---- !u!33 &5879791028916304091 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 8531994075807671912, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5542068599319222584} - m_Mesh: {fileID: 4300006, guid: fe0e66efb90310c4b81063d19da129b3, type: 3} ---- !u!23 &2311395200584679205 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 4098207523429194333, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5542068599319222584} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!1 &5827434717534922094 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 4877340187712397299, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 144758990197739633} - - component: {fileID: 8473955752975211476} - - component: {fileID: 5920355663058256503} - - component: {fileID: 676079612974000528} - m_Layer: 0 - m_Name: PT_Medieval_Village_Fence_01 (3) - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &144758990197739633 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 1277328660615455645, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5827434717534922094} - m_LocalRotation: {x: -0, y: -0.93417525, z: -0, w: -0.3568146} - m_LocalPosition: {x: 343, y: 5.58, z: 718.91} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 3407632473118064403} - m_RootOrder: 7 - m_LocalEulerAnglesHint: {x: 0, y: -221.80899, z: 0} ---- !u!33 &8473955752975211476 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 2145725720750969674, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5827434717534922094} - m_Mesh: {fileID: -1452343357121901386, guid: ed920bad5318ee347ad3e34dd82e273f, type: 3} ---- !u!23 &5920355663058256503 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 7032633462664320592, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5827434717534922094} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!64 &676079612974000528 -MeshCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 6464777104679503, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5827434717534922094} - m_Material: {fileID: 0} - m_IsTrigger: 0 - m_Enabled: 1 - serializedVersion: 4 - m_Convex: 0 - m_CookingOptions: 30 - m_Mesh: {fileID: 4300000, guid: ed920bad5318ee347ad3e34dd82e273f, type: 3} ---- !u!1 &5920673409853453972 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 7682876404111286690, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 2582148069083766623} - - component: {fileID: 7976425882856054912} - - component: {fileID: 5911379844900885919} - - component: {fileID: 5386547776931425425} - m_Layer: 0 - m_Name: PT_Medieval_Village_Fence_04 (9) - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &2582148069083766623 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 5158175175245963772, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5920673409853453972} - m_LocalRotation: {x: -0.002424064, y: 0.34234098, z: 0.0051910854, w: -0.9395583} - m_LocalPosition: {x: 330.807, y: 5.581, z: 739.747} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 3407632473118064403} - m_RootOrder: 11 - m_LocalEulerAnglesHint: {x: 0.057, y: -400.04, z: -0.654} ---- !u!33 &7976425882856054912 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 2762211910524007146, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5920673409853453972} - m_Mesh: {fileID: -1452343357121901386, guid: ed920bad5318ee347ad3e34dd82e273f, type: 3} ---- !u!23 &5911379844900885919 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 8619523430321549056, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5920673409853453972} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!64 &5386547776931425425 -MeshCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 6632795682054355812, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5920673409853453972} - m_Material: {fileID: 0} - m_IsTrigger: 0 - m_Enabled: 1 - serializedVersion: 4 - m_Convex: 0 - m_CookingOptions: 30 - m_Mesh: {fileID: 4300000, guid: faaede3d1773ae2488a568c13e10cee4, type: 3} ---- !u!1 &5932128969418448431 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 6865256409435463512, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1341646464914990200} - - component: {fileID: 3516186632917347788} - - component: {fileID: 1305546093365888030} - m_Layer: 0 - m_Name: PT_Medieval_Village_Gate_01_right_mobile - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &1341646464914990200 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 8877571294085732461, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5932128969418448431} - m_LocalRotation: {x: -0, y: 0.6151358, z: -0, w: 0.7884213} - m_LocalPosition: {x: -2.43, y: 0, z: -0.16} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 3447389114724855386} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 75.924, z: 0} ---- !u!33 &3516186632917347788 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 338666035114663693, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5932128969418448431} - m_Mesh: {fileID: 4300000, guid: fe0e66efb90310c4b81063d19da129b3, type: 3} ---- !u!23 &1305546093365888030 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 363029757620402802, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5932128969418448431} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!1 &6803811225971715292 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 5316768339426785772, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 5945948836266214315} - - component: {fileID: 3410326387955555837} - - component: {fileID: 740896826402323845} - - component: {fileID: 5206564202138109646} - m_Layer: 0 - m_Name: PT_Medieval_Village_Fence_01 (13) - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &5945948836266214315 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 5737043941933320441, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 6803811225971715292} - m_LocalRotation: {x: -0.0041139727, y: 0.38285908, z: 0.009919105, w: -0.9237444} - m_LocalPosition: {x: 321.712, y: 5.796, z: 731.372} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 3407632473118064403} - m_RootOrder: 17 - m_LocalEulerAnglesHint: {x: 0, y: -405.025, z: -1.2310001} ---- !u!33 &3410326387955555837 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 3510577249883970400, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 6803811225971715292} - m_Mesh: {fileID: -7129513904718193985, guid: b67d2b761d3397348831d776dbb33e03, type: 3} ---- !u!23 &740896826402323845 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 376847399079360002, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 6803811225971715292} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!64 &5206564202138109646 -MeshCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 1842339543031410862, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 6803811225971715292} - m_Material: {fileID: 0} - m_IsTrigger: 0 - m_Enabled: 1 - serializedVersion: 4 - m_Convex: 0 - m_CookingOptions: 30 - m_Mesh: {fileID: 4300000, guid: ed920bad5318ee347ad3e34dd82e273f, type: 3} ---- !u!1 &6935331504138771127 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 8608133304061493642, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 4876811750848940274} - - component: {fileID: 8363676156577010417} - - component: {fileID: 8502740968203780425} - - component: {fileID: 820755462946982393} - m_Layer: 0 - m_Name: PT_Medieval_Village_Fence_01 (9) - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &4876811750848940274 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 9041292913411370234, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 6935331504138771127} - m_LocalRotation: {x: -0.00244303, y: 0.33890346, z: 0.0051821903, w: -0.94080377} - m_LocalPosition: {x: 329.146, y: 5.57, z: 738.336} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 3407632473118064403} - m_RootOrder: 12 - m_LocalEulerAnglesHint: {x: 0.062, y: -399.621, z: -0.654} ---- !u!33 &8363676156577010417 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 3255042652992660696, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 6935331504138771127} - m_Mesh: {fileID: -1452343357121901386, guid: ed920bad5318ee347ad3e34dd82e273f, type: 3} ---- !u!23 &8502740968203780425 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 2735860717689522753, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 6935331504138771127} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!64 &820755462946982393 -MeshCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 121956368860627147, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 6935331504138771127} - m_Material: {fileID: 0} - m_IsTrigger: 0 - m_Enabled: 1 - serializedVersion: 4 - m_Convex: 0 - m_CookingOptions: 30 - m_Mesh: {fileID: 4300000, guid: ed920bad5318ee347ad3e34dd82e273f, type: 3} ---- !u!1 &6989260436293947646 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 7507501101374053384} - m_Layer: 0 - m_Name: Fence - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &7507501101374053384 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 6989260436293947646} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 3407632473118064403} - m_Father: {fileID: 0} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!1 &7449492211407605153 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 8933570296909178667, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 5167555997635088772} - - component: {fileID: 7187398869317917859} - - component: {fileID: 125189059782186443} - - component: {fileID: 5411018313802680761} - m_Layer: 0 - m_Name: PT_Medieval_Village_Fence_02 (2) - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &5167555997635088772 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 2603431446240685809, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7449492211407605153} - m_LocalRotation: {x: -0, y: -0.90154165, z: -0, w: 0.4326924} - m_LocalPosition: {x: 334.056, y: 5.7569995, z: 710.61} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 3407632473118064403} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: -128.723, z: 0} ---- !u!33 &7187398869317917859 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 7755328271037277555, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7449492211407605153} - m_Mesh: {fileID: -1452343357121901386, guid: ed920bad5318ee347ad3e34dd82e273f, type: 3} ---- !u!23 &125189059782186443 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 3434310107481571472, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7449492211407605153} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!64 &5411018313802680761 -MeshCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 3025064262575181744, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7449492211407605153} - m_Material: {fileID: 0} - m_IsTrigger: 0 - m_Enabled: 1 - serializedVersion: 4 - m_Convex: 0 - m_CookingOptions: 30 - m_Mesh: {fileID: 4300000, guid: b67d2b761d3397348831d776dbb33e03, type: 3} ---- !u!1 &7756291892219054488 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 381992306516821375, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 2829623993758042902} - - component: {fileID: 3970637645547990996} - - component: {fileID: 4263532699040937582} - - component: {fileID: 7903267461988288844} - m_Layer: 0 - m_Name: PT_Medieval_Village_Fence_04 (7) - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &2829623993758042902 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 4190526806813514198, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7756291892219054488} - m_LocalRotation: {x: -0, y: -0.93409324, z: -0, w: -0.3570293} - m_LocalPosition: {x: 344.44, y: 5.6159997, z: 720.38} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 3407632473118064403} - m_RootOrder: 8 - m_LocalEulerAnglesHint: {x: 0, y: -221.836, z: 0} ---- !u!33 &3970637645547990996 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 6144549249073257468, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7756291892219054488} - m_Mesh: {fileID: -1452343357121901386, guid: ed920bad5318ee347ad3e34dd82e273f, type: 3} ---- !u!23 &4263532699040937582 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 994471538821886068, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7756291892219054488} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!64 &7903267461988288844 -MeshCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 1511688077479678590, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7756291892219054488} - m_Material: {fileID: 0} - m_IsTrigger: 0 - m_Enabled: 1 - serializedVersion: 4 - m_Convex: 0 - m_CookingOptions: 30 - m_Mesh: {fileID: 4300000, guid: faaede3d1773ae2488a568c13e10cee4, type: 3} ---- !u!1 &7812943244738481072 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 2981633096607501629, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 7154861769690062172} - - component: {fileID: 1314355147382095798} - - component: {fileID: 5691872837759328334} - - component: {fileID: 1706089898460411189} - m_Layer: 0 - m_Name: PT_Medieval_Village_Fence_04 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &7154861769690062172 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 6349920575438161647, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7812943244738481072} - m_LocalRotation: {x: -0, y: -0.9081944, z: -0, w: 0.4185486} - m_LocalPosition: {x: 331.333, y: 5.721, z: 713.936} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 3407632473118064403} - m_RootOrder: 35 - m_LocalEulerAnglesHint: {x: 0, y: -130.514, z: 0} ---- !u!33 &1314355147382095798 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 132998541720752177, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7812943244738481072} - m_Mesh: {fileID: -7129513904718193985, guid: b67d2b761d3397348831d776dbb33e03, type: 3} ---- !u!23 &5691872837759328334 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 2641520959613958399, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7812943244738481072} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!64 &1706089898460411189 -MeshCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 1187513752782064891, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7812943244738481072} - m_Material: {fileID: 0} - m_IsTrigger: 0 - m_Enabled: 1 - serializedVersion: 4 - m_Convex: 0 - m_CookingOptions: 30 - m_Mesh: {fileID: 4300000, guid: faaede3d1773ae2488a568c13e10cee4, type: 3} ---- !u!1 &8358637051741911142 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 1915117356962340943, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 5727294234831795640} - - component: {fileID: 1907468459770611412} - - component: {fileID: 2950688971322516527} - - component: {fileID: 3851573875804893012} - m_Layer: 0 - m_Name: PT_Medieval_Village_Fence_01 (17) - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &5727294234831795640 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 3078391308524767747, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8358637051741911142} - m_LocalRotation: {x: -0, y: -0.3817085, z: -0, w: -0.9242827} - m_LocalPosition: {x: 342.595, y: 5.528, z: 730.837} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 3407632473118064403} - m_RootOrder: 27 - m_LocalEulerAnglesHint: {x: 0, y: -315.121, z: 0} ---- !u!33 &1907468459770611412 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 6475686779495932950, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8358637051741911142} - m_Mesh: {fileID: -7129513904718193985, guid: b67d2b761d3397348831d776dbb33e03, type: 3} ---- !u!23 &2950688971322516527 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 187581351495463318, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8358637051741911142} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!64 &3851573875804893012 -MeshCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 8095613885724313612, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8358637051741911142} - m_Material: {fileID: 0} - m_IsTrigger: 0 - m_Enabled: 1 - serializedVersion: 4 - m_Convex: 0 - m_CookingOptions: 30 - m_Mesh: {fileID: 4300000, guid: ed920bad5318ee347ad3e34dd82e273f, type: 3} ---- !u!1 &8365884361193839390 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 2814578447203211885, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1553709570810170224} - - component: {fileID: 6115594653411342785} - - component: {fileID: 1165859592723736097} - - component: {fileID: 4728039681841046665} - m_Layer: 0 - m_Name: PT_Medieval_Village_Fence_02 (3) - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &1553709570810170224 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 8293088008407445375, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8365884361193839390} - m_LocalRotation: {x: -0, y: -0.91860276, z: -0, w: -0.39518234} - m_LocalPosition: {x: 335.52, y: 5.712, z: 712.06} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 3407632473118064403} - m_RootOrder: 3 - m_LocalEulerAnglesHint: {x: 0, y: -226.555, z: 0} ---- !u!33 &6115594653411342785 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 2970905611816709499, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8365884361193839390} - m_Mesh: {fileID: -1452343357121901386, guid: ed920bad5318ee347ad3e34dd82e273f, type: 3} ---- !u!23 &1165859592723736097 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 290409432874301333, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8365884361193839390} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!64 &4728039681841046665 -MeshCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 5184266520470681396, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8365884361193839390} - m_Material: {fileID: 0} - m_IsTrigger: 0 - m_Enabled: 1 - serializedVersion: 4 - m_Convex: 0 - m_CookingOptions: 30 - m_Mesh: {fileID: 4300000, guid: b67d2b761d3397348831d776dbb33e03, type: 3} ---- !u!1 &8541790609565013123 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 9009809861089358182, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1796046966267960482} - - component: {fileID: 1311667911512711693} - - component: {fileID: 7409964477923135450} - - component: {fileID: 6140979279208176318} - m_Layer: 0 - m_Name: PT_Medieval_Village_Fence_04 (17) - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &1796046966267960482 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 7082702856977265316, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8541790609565013123} - m_LocalRotation: {x: -0, y: -0.38149574, z: -0, w: -0.92437065} - m_LocalPosition: {x: 343.963, y: 5.5639997, z: 729.495} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 3407632473118064403} - m_RootOrder: 26 - m_LocalEulerAnglesHint: {x: 0, y: -315.147, z: 0} ---- !u!33 &1311667911512711693 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 6750754311525793663, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8541790609565013123} - m_Mesh: {fileID: -7129513904718193985, guid: b67d2b761d3397348831d776dbb33e03, type: 3} ---- !u!23 &7409964477923135450 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 2445515596084951512, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8541790609565013123} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!64 &6140979279208176318 -MeshCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 9134608266374804440, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - m_PrefabInstance: {fileID: 8402202344741817427} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8541790609565013123} - m_Material: {fileID: 0} - m_IsTrigger: 0 - m_Enabled: 1 - serializedVersion: 4 - m_Convex: 0 - m_CookingOptions: 30 - m_Mesh: {fileID: 4300000, guid: faaede3d1773ae2488a568c13e10cee4, type: 3} ---- !u!1001 &8402202344741817427 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - m_TransformParent: {fileID: 7507501101374053384} - m_Modifications: - - target: {fileID: 29211914822797249, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Mesh - value: - objectReference: {fileID: -7129513904718193985, guid: b67d2b761d3397348831d776dbb33e03, type: 3} - - target: {fileID: 98303990304373466, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.x - value: 320.136 - objectReference: {fileID: 0} - - target: {fileID: 98303990304373466, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.y - value: 5.839 - objectReference: {fileID: 0} - - target: {fileID: 98303990304373466, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.z - value: 729.855 - objectReference: {fileID: 0} - - target: {fileID: 132998541720752177, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Mesh - value: - objectReference: {fileID: -7129513904718193985, guid: b67d2b761d3397348831d776dbb33e03, type: 3} - - target: {fileID: 175543255712178836, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.x - value: 332.359 - objectReference: {fileID: 0} - - target: {fileID: 175543255712178836, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.z - value: 740.832 - objectReference: {fileID: 0} - - target: {fileID: 187581351495463318, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Materials.Array.data[0] - value: - objectReference: {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - - target: {fileID: 290409432874301333, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Materials.Array.data[0] - value: - objectReference: {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - - target: {fileID: 338666035114663693, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Mesh - value: - objectReference: {fileID: 4300000, guid: fe0e66efb90310c4b81063d19da129b3, type: 3} - - target: {fileID: 357793172817506915, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Materials.Array.data[0] - value: - objectReference: {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - - target: {fileID: 363029757620402802, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Materials.Array.data[0] - value: - objectReference: {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - - target: {fileID: 376847399079360002, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Materials.Array.data[0] - value: - objectReference: {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - - target: {fileID: 392026693797540117, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.x - value: 329.98 - objectReference: {fileID: 0} - - target: {fileID: 392026693797540117, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.z - value: 715.47 - objectReference: {fileID: 0} - - target: {fileID: 529876361894922179, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_RootOrder - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 529876361894922179, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.x - value: -639.7 - objectReference: {fileID: 0} - - target: {fileID: 529876361894922179, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.y - value: -2.82 - objectReference: {fileID: 0} - - target: {fileID: 529876361894922179, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.z - value: -314.8 - objectReference: {fileID: 0} - - target: {fileID: 529876361894922179, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalRotation.w - value: -0.9483296 - objectReference: {fileID: 0} - - target: {fileID: 529876361894922179, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalRotation.x - value: -0 - objectReference: {fileID: 0} - - target: {fileID: 529876361894922179, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalRotation.y - value: -0.31728694 - objectReference: {fileID: 0} - - target: {fileID: 529876361894922179, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalRotation.z - value: -0 - objectReference: {fileID: 0} - - target: {fileID: 529876361894922179, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 529876361894922179, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: -323.002 - objectReference: {fileID: 0} - - target: {fileID: 529876361894922179, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 579399843034776648, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Mesh - value: - objectReference: {fileID: -7129513904718193985, guid: b67d2b761d3397348831d776dbb33e03, type: 3} - - target: {fileID: 780493962266665977, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Materials.Array.data[0] - value: - objectReference: {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - - target: {fileID: 976870169993364713, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Materials.Array.data[0] - value: - objectReference: {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - - target: {fileID: 994471538821886068, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Materials.Array.data[0] - value: - objectReference: {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - - target: {fileID: 1255388398176616410, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Materials.Array.data[0] - value: - objectReference: {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - - target: {fileID: 1277328660615455645, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.x - value: 343 - objectReference: {fileID: 0} - - target: {fileID: 1277328660615455645, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.z - value: 718.91 - objectReference: {fileID: 0} - - target: {fileID: 1352251645945787782, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Mesh - value: - objectReference: {fileID: -7129513904718193985, guid: b67d2b761d3397348831d776dbb33e03, type: 3} - - target: {fileID: 1375686486182646666, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.x - value: 347.53 - objectReference: {fileID: 0} - - target: {fileID: 1375686486182646666, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.z - value: 723.14 - objectReference: {fileID: 0} - - target: {fileID: 1432475541279230581, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.x - value: 333.934 - objectReference: {fileID: 0} - - target: {fileID: 1432475541279230581, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.z - value: 739.306 - objectReference: {fileID: 0} - - target: {fileID: 1489258723586811920, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Materials.Array.data[0] - value: - objectReference: {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - - target: {fileID: 1728773400993077689, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.x - value: 327.578 - objectReference: {fileID: 0} - - target: {fileID: 1728773400993077689, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.y - value: 5.61 - objectReference: {fileID: 0} - - target: {fileID: 1728773400993077689, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.z - value: 737.021 - objectReference: {fileID: 0} - - target: {fileID: 1728773400993077689, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalRotation.w - value: -0.9462625 - objectReference: {fileID: 0} - - target: {fileID: 1728773400993077689, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalRotation.x - value: -0.0025281212 - objectReference: {fileID: 0} - - target: {fileID: 1728773400993077689, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalRotation.y - value: 0.32334906 - objectReference: {fileID: 0} - - target: {fileID: 1728773400993077689, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalRotation.z - value: 0.005141212 - objectReference: {fileID: 0} - - target: {fileID: 1728773400993077689, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0.084 - objectReference: {fileID: 0} - - target: {fileID: 1728773400993077689, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: -397.732 - objectReference: {fileID: 0} - - target: {fileID: 1728773400993077689, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: -0.651 - objectReference: {fileID: 0} - - target: {fileID: 1740044153003547528, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Materials.Array.data[0] - value: - objectReference: {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - - target: {fileID: 2034390157161244639, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.x - value: 338.44 - objectReference: {fileID: 0} - - target: {fileID: 2034390157161244639, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.z - value: 714.86 - objectReference: {fileID: 0} - - target: {fileID: 2089576838841274367, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.x - value: 339.98 - objectReference: {fileID: 0} - - target: {fileID: 2089576838841274367, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.z - value: 716.21 - objectReference: {fileID: 0} - - target: {fileID: 2132396205341765096, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Materials.Array.data[0] - value: - objectReference: {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - - target: {fileID: 2140393664225490375, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Mesh - value: - objectReference: {fileID: -1452343357121901386, guid: ed920bad5318ee347ad3e34dd82e273f, type: 3} - - target: {fileID: 2145725720750969674, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Mesh - value: - objectReference: {fileID: -1452343357121901386, guid: ed920bad5318ee347ad3e34dd82e273f, type: 3} - - target: {fileID: 2154705375535455120, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Mesh - value: - objectReference: {fileID: -7129513904718193985, guid: b67d2b761d3397348831d776dbb33e03, type: 3} - - target: {fileID: 2290454760562443915, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Mesh - value: - objectReference: {fileID: -7129513904718193985, guid: b67d2b761d3397348831d776dbb33e03, type: 3} - - target: {fileID: 2347394290141247542, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Mesh - value: - objectReference: {fileID: -7129513904718193985, guid: b67d2b761d3397348831d776dbb33e03, type: 3} - - target: {fileID: 2404417514997231679, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Mesh - value: - objectReference: {fileID: -7129513904718193985, guid: b67d2b761d3397348831d776dbb33e03, type: 3} - - target: {fileID: 2445515596084951512, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Materials.Array.data[0] - value: - objectReference: {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - - target: {fileID: 2450382639342973926, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Materials.Array.data[0] - value: - objectReference: {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - - target: {fileID: 2472526450052507861, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Materials.Array.data[0] - value: - objectReference: {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - - target: {fileID: 2603431446240685809, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.x - value: 334.056 - objectReference: {fileID: 0} - - target: {fileID: 2603431446240685809, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.z - value: 710.61 - objectReference: {fileID: 0} - - target: {fileID: 2641520959613958399, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Materials.Array.data[0] - value: - objectReference: {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - - target: {fileID: 2701931858784503865, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Materials.Array.data[0] - value: - objectReference: {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - - target: {fileID: 2712316440301277363, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.x - value: 348.9 - objectReference: {fileID: 0} - - target: {fileID: 2712316440301277363, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.z - value: 724.48 - objectReference: {fileID: 0} - - target: {fileID: 2735860717689522753, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Materials.Array.data[0] - value: - objectReference: {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - - target: {fileID: 2762211910524007146, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Mesh - value: - objectReference: {fileID: -1452343357121901386, guid: ed920bad5318ee347ad3e34dd82e273f, type: 3} - - target: {fileID: 2917219865980533882, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.x - value: 332.714 - objectReference: {fileID: 0} - - target: {fileID: 2917219865980533882, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.z - value: 712.259 - objectReference: {fileID: 0} - - target: {fileID: 2970905611816709499, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Mesh - value: - objectReference: {fileID: -1452343357121901386, guid: ed920bad5318ee347ad3e34dd82e273f, type: 3} - - target: {fileID: 3023249892514557693, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.x - value: 324.51 - objectReference: {fileID: 0} - - target: {fileID: 3023249892514557693, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.y - value: 5.753 - objectReference: {fileID: 0} - - target: {fileID: 3023249892514557693, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.z - value: 722.714 - objectReference: {fileID: 0} - - target: {fileID: 3057443524530615743, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.x - value: 321.142 - objectReference: {fileID: 0} - - target: {fileID: 3057443524530615743, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.y - value: 5.832 - objectReference: {fileID: 0} - - target: {fileID: 3057443524530615743, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.z - value: 728.106 - objectReference: {fileID: 0} - - target: {fileID: 3078391308524767747, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.x - value: 342.595 - objectReference: {fileID: 0} - - target: {fileID: 3078391308524767747, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.z - value: 730.837 - objectReference: {fileID: 0} - - target: {fileID: 3188007371765554922, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Materials.Array.data[0] - value: - objectReference: {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - - target: {fileID: 3232882085077168485, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Mesh - value: - objectReference: {fileID: -1452343357121901386, guid: ed920bad5318ee347ad3e34dd82e273f, type: 3} - - target: {fileID: 3255042652992660696, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Mesh - value: - objectReference: {fileID: -1452343357121901386, guid: ed920bad5318ee347ad3e34dd82e273f, type: 3} - - target: {fileID: 3273783206270611025, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Mesh - value: - objectReference: {fileID: -1452343357121901386, guid: ed920bad5318ee347ad3e34dd82e273f, type: 3} - - target: {fileID: 3344551549928635629, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Mesh - value: - objectReference: {fileID: -7129513904718193985, guid: b67d2b761d3397348831d776dbb33e03, type: 3} - - target: {fileID: 3434310107481571472, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Materials.Array.data[0] - value: - objectReference: {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - - target: {fileID: 3491206012651197971, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Materials.Array.data[0] - value: - objectReference: {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - - target: {fileID: 3499567624536510334, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Materials.Array.data[0] - value: - objectReference: {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - - target: {fileID: 3510577249883970400, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Mesh - value: - objectReference: {fileID: -7129513904718193985, guid: b67d2b761d3397348831d776dbb33e03, type: 3} - - target: {fileID: 3750760618907943193, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Materials.Array.data[0] - value: - objectReference: {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - - target: {fileID: 3826363195613660346, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.x - value: 338.293 - objectReference: {fileID: 0} - - target: {fileID: 3826363195613660346, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.z - value: 735.024 - objectReference: {fileID: 0} - - target: {fileID: 3869536620230148579, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Materials.Array.data[0] - value: - objectReference: {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - - target: {fileID: 3876679617051642717, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.x - value: 324.576 - objectReference: {fileID: 0} - - target: {fileID: 3876679617051642717, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.y - value: 5.661 - objectReference: {fileID: 0} - - target: {fileID: 3876679617051642717, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.z - value: 734.239 - objectReference: {fileID: 0} - - target: {fileID: 3998114766259742550, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.x - value: 341.47 - objectReference: {fileID: 0} - - target: {fileID: 3998114766259742550, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.z - value: 717.53 - objectReference: {fileID: 0} - - target: {fileID: 4019780153783146733, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Materials.Array.data[0] - value: - objectReference: {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - - target: {fileID: 4098207523429194333, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Materials.Array.data[0] - value: - objectReference: {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - - target: {fileID: 4138531335843269991, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Materials.Array.data[0] - value: - objectReference: {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - - target: {fileID: 4190526806813514198, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.x - value: 344.44 - objectReference: {fileID: 0} - - target: {fileID: 4190526806813514198, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.z - value: 720.38 - objectReference: {fileID: 0} - - target: {fileID: 4315117308163343443, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Mesh - value: - objectReference: {fileID: -7129513904718193985, guid: b67d2b761d3397348831d776dbb33e03, type: 3} - - target: {fileID: 4326967233763771582, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Mesh - value: - objectReference: {fileID: -7129513904718193985, guid: b67d2b761d3397348831d776dbb33e03, type: 3} - - target: {fileID: 4419846596639621780, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Mesh - value: - objectReference: {fileID: -7129513904718193985, guid: b67d2b761d3397348831d776dbb33e03, type: 3} - - target: {fileID: 4430275092663365426, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.x - value: 323.349 - objectReference: {fileID: 0} - - target: {fileID: 4430275092663365426, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.y - value: 5.781 - objectReference: {fileID: 0} - - target: {fileID: 4430275092663365426, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.z - value: 724.565 - objectReference: {fileID: 0} - - target: {fileID: 4487106170755888053, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Mesh - value: - objectReference: {fileID: -1452343357121901386, guid: ed920bad5318ee347ad3e34dd82e273f, type: 3} - - target: {fileID: 4828763379710830298, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Name - value: FENCE - objectReference: {fileID: 0} - - target: {fileID: 4930993571358900372, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Mesh - value: - objectReference: {fileID: -1452343357121901386, guid: ed920bad5318ee347ad3e34dd82e273f, type: 3} - - target: {fileID: 5090057803609229386, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Materials.Array.data[0] - value: - objectReference: {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - - target: {fileID: 5158175175245963772, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.x - value: 330.807 - objectReference: {fileID: 0} - - target: {fileID: 5158175175245963772, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.y - value: 5.581 - objectReference: {fileID: 0} - - target: {fileID: 5158175175245963772, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.z - value: 739.747 - objectReference: {fileID: 0} - - target: {fileID: 5158175175245963772, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalRotation.w - value: -0.9395583 - objectReference: {fileID: 0} - - target: {fileID: 5158175175245963772, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalRotation.x - value: -0.002424064 - objectReference: {fileID: 0} - - target: {fileID: 5158175175245963772, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalRotation.y - value: 0.34234098 - objectReference: {fileID: 0} - - target: {fileID: 5158175175245963772, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalRotation.z - value: 0.0051910854 - objectReference: {fileID: 0} - - target: {fileID: 5158175175245963772, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0.057 - objectReference: {fileID: 0} - - target: {fileID: 5158175175245963772, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: -400.04 - objectReference: {fileID: 0} - - target: {fileID: 5158175175245963772, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: -0.654 - objectReference: {fileID: 0} - - target: {fileID: 5326808861575987066, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Mesh - value: - objectReference: {fileID: -1452343357121901386, guid: ed920bad5318ee347ad3e34dd82e273f, type: 3} - - target: {fileID: 5380991712082641510, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Mesh - value: - objectReference: {fileID: 4300004, guid: fe0e66efb90310c4b81063d19da129b3, type: 3} - - target: {fileID: 5737043941933320441, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.x - value: 321.712 - objectReference: {fileID: 0} - - target: {fileID: 5737043941933320441, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.y - value: 5.796 - objectReference: {fileID: 0} - - target: {fileID: 5737043941933320441, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.z - value: 731.372 - objectReference: {fileID: 0} - - target: {fileID: 5770256208138130157, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Mesh - value: - objectReference: {fileID: -1452343357121901386, guid: ed920bad5318ee347ad3e34dd82e273f, type: 3} - - target: {fileID: 5774921956236232121, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Materials.Array.data[0] - value: - objectReference: {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - - target: {fileID: 6017772224458522580, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.x - value: 326.036 - objectReference: {fileID: 0} - - target: {fileID: 6017772224458522580, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.y - value: 5.632 - objectReference: {fileID: 0} - - target: {fileID: 6017772224458522580, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.z - value: 735.617 - objectReference: {fileID: 0} - - target: {fileID: 6017772224458522580, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalRotation.w - value: -0.9377533 - objectReference: {fileID: 0} - - target: {fileID: 6017772224458522580, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalRotation.x - value: -0.002396858 - objectReference: {fileID: 0} - - target: {fileID: 6017772224458522580, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalRotation.y - value: 0.34725478 - objectReference: {fileID: 0} - - target: {fileID: 6017772224458522580, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalRotation.z - value: 0.005203707 - objectReference: {fileID: 0} - - target: {fileID: 6017772224458522580, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0.05 - objectReference: {fileID: 0} - - target: {fileID: 6017772224458522580, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: -400.64 - objectReference: {fileID: 0} - - target: {fileID: 6017772224458522580, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: -0.655 - objectReference: {fileID: 0} - - target: {fileID: 6036671447454677646, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Mesh - value: - objectReference: {fileID: -7129513904718193985, guid: b67d2b761d3397348831d776dbb33e03, type: 3} - - target: {fileID: 6144549249073257468, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Mesh - value: - objectReference: {fileID: -1452343357121901386, guid: ed920bad5318ee347ad3e34dd82e273f, type: 3} - - target: {fileID: 6207808757286219813, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Mesh - value: - objectReference: {fileID: -7129513904718193985, guid: b67d2b761d3397348831d776dbb33e03, type: 3} - - target: {fileID: 6272967322109033485, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Materials.Array.data[0] - value: - objectReference: {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - - target: {fileID: 6342909597472319076, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Mesh - value: - objectReference: {fileID: -7129513904718193985, guid: b67d2b761d3397348831d776dbb33e03, type: 3} - - target: {fileID: 6349920575438161647, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.x - value: 331.333 - objectReference: {fileID: 0} - - target: {fileID: 6349920575438161647, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.z - value: 713.936 - objectReference: {fileID: 0} - - target: {fileID: 6367598539957854340, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Materials.Array.data[0] - value: - objectReference: {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - - target: {fileID: 6374646709204080587, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.x - value: 345.327 - objectReference: {fileID: 0} - - target: {fileID: 6374646709204080587, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.z - value: 727.955 - objectReference: {fileID: 0} - - target: {fileID: 6475686779495932950, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Mesh - value: - objectReference: {fileID: -7129513904718193985, guid: b67d2b761d3397348831d776dbb33e03, type: 3} - - target: {fileID: 6750754311525793663, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Mesh - value: - objectReference: {fileID: -7129513904718193985, guid: b67d2b761d3397348831d776dbb33e03, type: 3} - - target: {fileID: 6766181167746402628, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Mesh - value: - objectReference: {fileID: -1452343357121901386, guid: ed920bad5318ee347ad3e34dd82e273f, type: 3} - - target: {fileID: 6816666450342108714, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Materials.Array.data[0] - value: - objectReference: {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - - target: {fileID: 6884372378742752371, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Mesh - value: - objectReference: {fileID: -1452343357121901386, guid: ed920bad5318ee347ad3e34dd82e273f, type: 3} - - target: {fileID: 6907951032010938128, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.x - value: 346.03 - objectReference: {fileID: 0} - - target: {fileID: 6907951032010938128, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.z - value: 721.82 - objectReference: {fileID: 0} - - target: {fileID: 7019340265122819889, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.x - value: 348.949 - objectReference: {fileID: 0} - - target: {fileID: 7019340265122819889, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.z - value: 724.525 - objectReference: {fileID: 0} - - target: {fileID: 7019340265122819889, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalRotation.w - value: 0.4000056 - objectReference: {fileID: 0} - - target: {fileID: 7019340265122819889, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalRotation.y - value: -0.9165127 - objectReference: {fileID: 0} - - target: {fileID: 7019340265122819889, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalRotation.z - value: -0 - objectReference: {fileID: 0} - - target: {fileID: 7019340265122819889, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: -132.843 - objectReference: {fileID: 0} - - target: {fileID: 7025323623807070371, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Materials.Array.data[0] - value: - objectReference: {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - - target: {fileID: 7032633462664320592, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Materials.Array.data[0] - value: - objectReference: {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - - target: {fileID: 7082702856977265316, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.x - value: 343.963 - objectReference: {fileID: 0} - - target: {fileID: 7082702856977265316, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.z - value: 729.495 - objectReference: {fileID: 0} - - target: {fileID: 7087934559104316899, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.x - value: 325.769 - objectReference: {fileID: 0} - - target: {fileID: 7087934559104316899, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.z - value: 721.117 - objectReference: {fileID: 0} - - target: {fileID: 7091984823121864305, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Materials.Array.data[0] - value: - objectReference: {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - - target: {fileID: 7272389663771021863, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Materials.Array.data[0] - value: - objectReference: {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - - target: {fileID: 7365084536621519417, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Materials.Array.data[0] - value: - objectReference: {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - - target: {fileID: 7492751489091306756, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Mesh - value: - objectReference: {fileID: -7129513904718193985, guid: b67d2b761d3397348831d776dbb33e03, type: 3} - - target: {fileID: 7536419070387037735, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Materials.Array.data[0] - value: - objectReference: {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - - target: {fileID: 7570374869212208486, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Mesh - value: - objectReference: {fileID: -1452343357121901386, guid: ed920bad5318ee347ad3e34dd82e273f, type: 3} - - target: {fileID: 7599610710903973239, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Materials.Array.data[0] - value: - objectReference: {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - - target: {fileID: 7755328271037277555, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Mesh - value: - objectReference: {fileID: -1452343357121901386, guid: ed920bad5318ee347ad3e34dd82e273f, type: 3} - - target: {fileID: 7816509458607821781, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Materials.Array.data[0] - value: - objectReference: {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - - target: {fileID: 7978129962351172889, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Mesh - value: - objectReference: {fileID: -7129513904718193985, guid: b67d2b761d3397348831d776dbb33e03, type: 3} - - target: {fileID: 8077091563784070444, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.x - value: 336.9 - objectReference: {fileID: 0} - - target: {fileID: 8077091563784070444, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.z - value: 713.37 - objectReference: {fileID: 0} - - target: {fileID: 8080221301003760826, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.x - value: 323.143 - objectReference: {fileID: 0} - - target: {fileID: 8080221301003760826, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.y - value: 5.681 - objectReference: {fileID: 0} - - target: {fileID: 8080221301003760826, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.z - value: 732.824 - objectReference: {fileID: 0} - - target: {fileID: 8124426125595884708, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Mesh - value: - objectReference: {fileID: -7129513904718193985, guid: b67d2b761d3397348831d776dbb33e03, type: 3} - - target: {fileID: 8167987535039136608, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Mesh - value: - objectReference: {fileID: -7129513904718193985, guid: b67d2b761d3397348831d776dbb33e03, type: 3} - - target: {fileID: 8234271764373083658, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.x - value: 322.306 - objectReference: {fileID: 0} - - target: {fileID: 8234271764373083658, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.y - value: 5.8 - objectReference: {fileID: 0} - - target: {fileID: 8234271764373083658, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.z - value: 726.313 - objectReference: {fileID: 0} - - target: {fileID: 8293088008407445375, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.x - value: 335.52 - objectReference: {fileID: 0} - - target: {fileID: 8293088008407445375, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.z - value: 712.06 - objectReference: {fileID: 0} - - target: {fileID: 8405406176939499280, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Materials.Array.data[0] - value: - objectReference: {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - - target: {fileID: 8531994075807671912, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Mesh - value: - objectReference: {fileID: 4300006, guid: fe0e66efb90310c4b81063d19da129b3, type: 3} - - target: {fileID: 8619523430321549056, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Materials.Array.data[0] - value: - objectReference: {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - - target: {fileID: 8673212332769728624, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.x - value: 336.857 - objectReference: {fileID: 0} - - target: {fileID: 8673212332769728624, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.z - value: 736.36 - objectReference: {fileID: 0} - - target: {fileID: 8877571294085732461, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.x - value: -2.43 - objectReference: {fileID: 0} - - target: {fileID: 8877571294085732461, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.z - value: -0.16 - objectReference: {fileID: 0} - - target: {fileID: 8944277138130971584, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.x - value: 2.53 - objectReference: {fileID: 0} - - target: {fileID: 8944277138130971584, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.z - value: -0.16 - objectReference: {fileID: 0} - - target: {fileID: 8979181842504415738, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_Mesh - value: - objectReference: {fileID: -7129513904718193985, guid: b67d2b761d3397348831d776dbb33e03, type: 3} - - target: {fileID: 9041292913411370234, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.x - value: 329.146 - objectReference: {fileID: 0} - - target: {fileID: 9041292913411370234, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.y - value: 5.57 - objectReference: {fileID: 0} - - target: {fileID: 9041292913411370234, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.z - value: 738.336 - objectReference: {fileID: 0} - - target: {fileID: 9041292913411370234, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalRotation.w - value: -0.94080377 - objectReference: {fileID: 0} - - target: {fileID: 9041292913411370234, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalRotation.x - value: -0.00244303 - objectReference: {fileID: 0} - - target: {fileID: 9041292913411370234, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalRotation.y - value: 0.33890346 - objectReference: {fileID: 0} - - target: {fileID: 9041292913411370234, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalRotation.z - value: 0.0051821903 - objectReference: {fileID: 0} - - target: {fileID: 9041292913411370234, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0.062 - objectReference: {fileID: 0} - - target: {fileID: 9041292913411370234, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: -399.621 - objectReference: {fileID: 0} - - target: {fileID: 9041292913411370234, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: -0.654 - objectReference: {fileID: 0} - - target: {fileID: 9134581759298978638, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.x - value: -0.03 - objectReference: {fileID: 0} - - target: {fileID: 9134581759298978638, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} - propertyPath: m_LocalPosition.z - value: -0.07 - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: f16f39bd1be9d4140ad0cd32366b3c89, type: 3} diff --git a/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_Grass_02_v1.prefab b/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_Grass_02_v1.prefab deleted file mode 100644 index 5c907d9..0000000 --- a/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_Grass_02_v1.prefab +++ /dev/null @@ -1,85 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!1 &3036827482424969206 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 4848591325366998362} - - component: {fileID: 8663680033741898557} - - component: {fileID: 1924666780482296237} - m_Layer: 0 - m_Name: PT_Grass_02_v1 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &4848591325366998362 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3036827482424969206} - serializedVersion: 2 - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 0} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &8663680033741898557 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3036827482424969206} - m_Mesh: {fileID: 3836962167230424001, guid: 8c71f03fcb0c13644a30696cafc5cda8, type: 3} ---- !u!23 &1924666780482296237 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3036827482424969206} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: 09473d06882d1414b84b1fdb7a095516, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} diff --git a/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_Grass_02_v2.prefab b/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_Grass_02_v2.prefab deleted file mode 100644 index c342b99..0000000 --- a/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_Grass_02_v2.prefab +++ /dev/null @@ -1,85 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!1 &3036827482424969206 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 4848591325366998362} - - component: {fileID: 8663680033741898557} - - component: {fileID: 1924666780482296237} - m_Layer: 0 - m_Name: PT_Grass_02_v2 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &4848591325366998362 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3036827482424969206} - serializedVersion: 2 - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 0} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &8663680033741898557 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3036827482424969206} - m_Mesh: {fileID: 3836962167230424001, guid: 8c71f03fcb0c13644a30696cafc5cda8, type: 3} ---- !u!23 &1924666780482296237 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3036827482424969206} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: 8ce8268a24bfebc4ca972ae10f12aece, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} diff --git a/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_High_Grass_02_v1.prefab b/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_High_Grass_02_v1.prefab deleted file mode 100644 index 9953d93..0000000 --- a/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_High_Grass_02_v1.prefab +++ /dev/null @@ -1,85 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!1 &2509144546569432699 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 576941961222066687} - - component: {fileID: 2226878954674880973} - - component: {fileID: 6780683770523846307} - m_Layer: 0 - m_Name: PT_High_Grass_02_v1 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &576941961222066687 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2509144546569432699} - serializedVersion: 2 - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 0} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &2226878954674880973 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2509144546569432699} - m_Mesh: {fileID: 3836962167230424001, guid: 8c71f03fcb0c13644a30696cafc5cda8, type: 3} ---- !u!23 &6780683770523846307 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2509144546569432699} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: 33e92b212d568b844ae30511d6c23987, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} diff --git a/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_Poppy_02_v1.prefab b/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_Poppy_02_v1.prefab deleted file mode 100644 index b05b2ab..0000000 --- a/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_Poppy_02_v1.prefab +++ /dev/null @@ -1,85 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!1 &3811120315536780707 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 2197582417569134742} - - component: {fileID: 7574631676587930325} - - component: {fileID: 6262104417993746952} - m_Layer: 0 - m_Name: PT_Poppy_02_v1 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &2197582417569134742 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3811120315536780707} - serializedVersion: 2 - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 0} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &7574631676587930325 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3811120315536780707} - m_Mesh: {fileID: 2223002623545760707, guid: 5c7de3ea78afce6468d2ebe76dd0bf6d, type: 3} ---- !u!23 &6262104417993746952 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3811120315536780707} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: 67c85a5a0248e2a4a98e653c8e7eeb9e, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} diff --git a/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_River_Rock_Pile_02_v1.prefab b/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_River_Rock_Pile_02_v1.prefab deleted file mode 100644 index 4251194..0000000 --- a/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/PT_River_Rock_Pile_02_v1.prefab +++ /dev/null @@ -1,85 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!1 &5597067459296003245 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 7674060271722496062} - - component: {fileID: 3155855987347892852} - - component: {fileID: 5127448937572358031} - m_Layer: 0 - m_Name: PT_River_Rock_Pile_02_v1 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &7674060271722496062 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5597067459296003245} - serializedVersion: 2 - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 0} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &3155855987347892852 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5597067459296003245} - m_Mesh: {fileID: -4743291183649763690, guid: e5e1b3c0d2be60b47981235187af0936, type: 3} ---- !u!23 &5127448937572358031 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5597067459296003245} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: 93415edde47040648869ae6638d33ced, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} diff --git a/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_445999c2-5240-4b5c-9394-4cacb62d7eec.asset b/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_445999c2-5240-4b5c-9394-4cacb62d7eec.asset deleted file mode 100644 index 4ab6ad2..0000000 Binary files a/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_445999c2-5240-4b5c-9394-4cacb62d7eec.asset and /dev/null differ diff --git a/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_832163fb-b19c-4118-97c2-cf0a3b224fca.asset b/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_832163fb-b19c-4118-97c2-cf0a3b224fca.asset deleted file mode 100644 index 747c3e2..0000000 Binary files a/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_832163fb-b19c-4118-97c2-cf0a3b224fca.asset and /dev/null differ diff --git a/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_88efe361-6f68-4188-bcd0-e9554ca440b9.asset b/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_88efe361-6f68-4188-bcd0-e9554ca440b9.asset deleted file mode 100644 index f678b47..0000000 Binary files a/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_88efe361-6f68-4188-bcd0-e9554ca440b9.asset and /dev/null differ diff --git a/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_d3c37e8d-6092-48f4-b81e-93b97326e4d2.asset b/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_d3c37e8d-6092-48f4-b81e-93b97326e4d2.asset deleted file mode 100644 index 60c0ce9..0000000 Binary files a/Assets/Polytope Studio/Lowpoly_Demos/Environment_Free/Helpers/Terrain/TerrainData_d3c37e8d-6092-48f4-b81e-93b97326e4d2.asset and /dev/null differ diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Flowers/PT_Poppy_02.prefab b/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Flowers/PT_Poppy_02.prefab deleted file mode 100644 index 12a1f64..0000000 --- a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Flowers/PT_Poppy_02.prefab +++ /dev/null @@ -1,313 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!1 &2037260030951929899 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 6142381878878880047} - - component: {fileID: 7238680879585612582} - - component: {fileID: 8612644761410593023} - m_Layer: 0 - m_Name: PT_Poppy_02_LOD0 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &6142381878878880047 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2037260030951929899} - serializedVersion: 2 - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 5925433674301824424} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &7238680879585612582 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2037260030951929899} - m_Mesh: {fileID: 2223002623545760707, guid: 5c7de3ea78afce6468d2ebe76dd0bf6d, type: 3} ---- !u!23 &8612644761410593023 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2037260030951929899} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: 67c85a5a0248e2a4a98e653c8e7eeb9e, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!1 &3385972117904089662 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 8536890688868059322} - - component: {fileID: 9185710794243883306} - - component: {fileID: 390046362322365202} - m_Layer: 0 - m_Name: PT_Poppy_02_LOD1 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &8536890688868059322 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3385972117904089662} - serializedVersion: 2 - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 5925433674301824424} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &9185710794243883306 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3385972117904089662} - m_Mesh: {fileID: -855928420875108127, guid: 5c7de3ea78afce6468d2ebe76dd0bf6d, type: 3} ---- !u!23 &390046362322365202 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3385972117904089662} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: 67c85a5a0248e2a4a98e653c8e7eeb9e, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!1 &6444807355431749394 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 5925433674301824424} - - component: {fileID: 1468526563676613337} - m_Layer: 0 - m_Name: PT_Poppy_02 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &5925433674301824424 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 6444807355431749394} - serializedVersion: 2 - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 6142381878878880047} - - {fileID: 8536890688868059322} - - {fileID: 6571691666222578119} - m_Father: {fileID: 0} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!205 &1468526563676613337 -LODGroup: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 6444807355431749394} - serializedVersion: 2 - m_LocalReferencePoint: {x: -0.015125722, y: 0.32196435, z: -0.036240414} - m_Size: 0.8513287 - m_FadeMode: 0 - m_AnimateCrossFading: 0 - m_LastLODIsBillboard: 0 - m_LODs: - - screenRelativeHeight: 0.02483232 - fadeTransitionWidth: 0 - renderers: - - renderer: {fileID: 8612644761410593023} - - screenRelativeHeight: 0.014784569 - fadeTransitionWidth: 0 - renderers: - - renderer: {fileID: 390046362322365202} - - screenRelativeHeight: 0.01 - fadeTransitionWidth: 0 - renderers: - - renderer: {fileID: 5160421642010612443} - m_Enabled: 1 ---- !u!1 &8817714582870616325 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 6571691666222578119} - - component: {fileID: 1451798065573381897} - - component: {fileID: 5160421642010612443} - m_Layer: 0 - m_Name: PT_Poppy_02_LOD2 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &6571691666222578119 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8817714582870616325} - serializedVersion: 2 - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 5925433674301824424} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &1451798065573381897 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8817714582870616325} - m_Mesh: {fileID: -7923628548315003762, guid: 5c7de3ea78afce6468d2ebe76dd0bf6d, type: 3} ---- !u!23 &5160421642010612443 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8817714582870616325} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: 67c85a5a0248e2a4a98e653c8e7eeb9e, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Mushrooms/PT_Caesars_Mushroom_01.prefab b/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Mushrooms/PT_Caesars_Mushroom_01.prefab deleted file mode 100644 index 7758b72..0000000 --- a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Mushrooms/PT_Caesars_Mushroom_01.prefab +++ /dev/null @@ -1,85 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!1 &5984911598340929997 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 6360628377774826359} - - component: {fileID: 8064440990309985490} - - component: {fileID: 5192176564893538328} - m_Layer: 0 - m_Name: PT_Caesars_Mushroom_01 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &6360628377774826359 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5984911598340929997} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 0} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &8064440990309985490 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5984911598340929997} - m_Mesh: {fileID: -1826515769343568023, guid: 2ec966d90911a454c9760fa28789a4f8, type: 3} ---- !u!23 &5192176564893538328 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5984911598340929997} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: c522ec7c62be0c145bc320ad11705a67, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Plants/PT_Grass_02.prefab b/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Plants/PT_Grass_02.prefab deleted file mode 100644 index 45e179b..0000000 --- a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Plants/PT_Grass_02.prefab +++ /dev/null @@ -1,313 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!1 &221859553428198758 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 279674049265579943} - - component: {fileID: 5391961225124459694} - - component: {fileID: 1309944978084627218} - m_Layer: 0 - m_Name: PT_Grass_02_LOD1 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &279674049265579943 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 221859553428198758} - serializedVersion: 2 - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 6251920492078742113} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &5391961225124459694 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 221859553428198758} - m_Mesh: {fileID: 5811990557746906380, guid: 8c71f03fcb0c13644a30696cafc5cda8, type: 3} ---- !u!23 &1309944978084627218 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 221859553428198758} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: 09473d06882d1414b84b1fdb7a095516, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!1 &3941905813175756431 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 7442711440568689961} - - component: {fileID: 7088410758827092112} - - component: {fileID: 5828874672928699267} - m_Layer: 0 - m_Name: PT_Grass_02_LOD2 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &7442711440568689961 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3941905813175756431} - serializedVersion: 2 - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 6251920492078742113} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &7088410758827092112 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3941905813175756431} - m_Mesh: {fileID: -4435434709360095332, guid: 8c71f03fcb0c13644a30696cafc5cda8, type: 3} ---- !u!23 &5828874672928699267 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3941905813175756431} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: 09473d06882d1414b84b1fdb7a095516, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!1 &4431629511752406189 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 6119579431137445377} - - component: {fileID: 8043189345720651878} - - component: {fileID: 941673656794352374} - m_Layer: 0 - m_Name: PT_Grass_02_LOD0 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &6119579431137445377 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4431629511752406189} - serializedVersion: 2 - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 6251920492078742113} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &8043189345720651878 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4431629511752406189} - m_Mesh: {fileID: 3836962167230424001, guid: 8c71f03fcb0c13644a30696cafc5cda8, type: 3} ---- !u!23 &941673656794352374 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4431629511752406189} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: 09473d06882d1414b84b1fdb7a095516, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!1 &6739804228592001243 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 6251920492078742113} - - component: {fileID: 1196083080072793360} - m_Layer: 0 - m_Name: PT_Grass_02 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &6251920492078742113 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 6739804228592001243} - serializedVersion: 2 - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 6119579431137445377} - - {fileID: 279674049265579943} - - {fileID: 7442711440568689961} - m_Father: {fileID: 0} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!205 &1196083080072793360 -LODGroup: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 6739804228592001243} - serializedVersion: 2 - m_LocalReferencePoint: {x: -0.11682665, y: 0.33101153, z: -0.1027852} - m_Size: 1.2406445 - m_FadeMode: 0 - m_AnimateCrossFading: 0 - m_LastLODIsBillboard: 0 - m_LODs: - - screenRelativeHeight: 0.04050798 - fadeTransitionWidth: 0 - renderers: - - renderer: {fileID: 941673656794352374} - - screenRelativeHeight: 0.025197431 - fadeTransitionWidth: 0 - renderers: - - renderer: {fileID: 1309944978084627218} - - screenRelativeHeight: 0.01 - fadeTransitionWidth: 0 - renderers: - - renderer: {fileID: 5828874672928699267} - m_Enabled: 1 diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Rocks/PT_Generic_Rock_01.prefab b/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Rocks/PT_Generic_Rock_01.prefab deleted file mode 100644 index 3d7d4ec..0000000 --- a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Rocks/PT_Generic_Rock_01.prefab +++ /dev/null @@ -1,313 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!1 &4140774597986965270 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 3620098201178672556} - - component: {fileID: 8387729503606520541} - m_Layer: 0 - m_Name: PT_Generic_Rock_01 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &3620098201178672556 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4140774597986965270} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 2410657515239051217} - - {fileID: 45626752551149192} - - {fileID: 4838893804519224432} - m_Father: {fileID: 0} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!205 &8387729503606520541 -LODGroup: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4140774597986965270} - serializedVersion: 2 - m_LocalReferencePoint: {x: -0.005520433, y: 0.12129615, z: 0.002885133} - m_Size: 0.25192297 - m_FadeMode: 0 - m_AnimateCrossFading: 0 - m_LastLODIsBillboard: 0 - m_LODs: - - screenRelativeHeight: 0.25 - fadeTransitionWidth: 0 - renderers: - - renderer: {fileID: 31718447998784673} - - screenRelativeHeight: 0.125 - fadeTransitionWidth: 0 - renderers: - - renderer: {fileID: 1950198989058679553} - - screenRelativeHeight: 0.01 - fadeTransitionWidth: 0 - renderers: - - renderer: {fileID: 4901771407451701469} - m_Enabled: 1 ---- !u!1 &5215970427928307999 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 2410657515239051217} - - component: {fileID: 4328566817098671277} - - component: {fileID: 31718447998784673} - m_Layer: 0 - m_Name: PT_Generic_Rock_01_LOD0 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &2410657515239051217 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5215970427928307999} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 3620098201178672556} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &4328566817098671277 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5215970427928307999} - m_Mesh: {fileID: -3282209725294213285, guid: f226223b3a11d2d4b980aaa520301583, type: 3} ---- !u!23 &31718447998784673 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5215970427928307999} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: 93415edde47040648869ae6638d33ced, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!1 &7126759119823987389 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 45626752551149192} - - component: {fileID: 6244462071409904346} - - component: {fileID: 1950198989058679553} - m_Layer: 0 - m_Name: PT_Generic_Rock_01_LOD1 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &45626752551149192 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7126759119823987389} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 3620098201178672556} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &6244462071409904346 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7126759119823987389} - m_Mesh: {fileID: 2253944659315782737, guid: f226223b3a11d2d4b980aaa520301583, type: 3} ---- !u!23 &1950198989058679553 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7126759119823987389} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: 93415edde47040648869ae6638d33ced, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!1 &8632384800496054581 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 4838893804519224432} - - component: {fileID: 3528726361081146884} - - component: {fileID: 4901771407451701469} - m_Layer: 0 - m_Name: PT_Generic_Rock_01_LOD2 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &4838893804519224432 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8632384800496054581} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 3620098201178672556} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &3528726361081146884 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8632384800496054581} - m_Mesh: {fileID: -4657891268570775739, guid: f226223b3a11d2d4b980aaa520301583, type: 3} ---- !u!23 &4901771407451701469 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8632384800496054581} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: 93415edde47040648869ae6638d33ced, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Rocks/PT_Menhir_Rock_02.prefab b/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Rocks/PT_Menhir_Rock_02.prefab deleted file mode 100644 index 8cd75af..0000000 --- a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Rocks/PT_Menhir_Rock_02.prefab +++ /dev/null @@ -1,313 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!1 &1816441135499431434 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 5651993725251970733} - - component: {fileID: 8762876279516595342} - - component: {fileID: 1848920933074918554} - m_Layer: 0 - m_Name: PT_Menhir_Rock_02_LOD1 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &5651993725251970733 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1816441135499431434} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 3287948611943350881} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &8762876279516595342 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1816441135499431434} - m_Mesh: {fileID: -2777913921142370628, guid: e0fe1b80592a0144babd1bf297ad32ad, type: 3} ---- !u!23 &1848920933074918554 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1816441135499431434} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: 93415edde47040648869ae6638d33ced, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!1 &2804321427668277467 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 3287948611943350881} - - component: {fileID: 7780879296386692368} - m_Layer: 0 - m_Name: PT_Menhir_Rock_02 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &3287948611943350881 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2804321427668277467} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 5831670394684494036} - - {fileID: 5651993725251970733} - - {fileID: 4805504076787978420} - m_Father: {fileID: 0} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!205 &7780879296386692368 -LODGroup: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2804321427668277467} - serializedVersion: 2 - m_LocalReferencePoint: {x: -0.16178173, y: 1.3193775, z: 0.13982797} - m_Size: 2.8007505 - m_FadeMode: 0 - m_AnimateCrossFading: 0 - m_LastLODIsBillboard: 0 - m_LODs: - - screenRelativeHeight: 0.25 - fadeTransitionWidth: 0 - renderers: - - renderer: {fileID: 8975058473414284020} - - screenRelativeHeight: 0.125 - fadeTransitionWidth: 0 - renderers: - - renderer: {fileID: 1848920933074918554} - - screenRelativeHeight: 0.01 - fadeTransitionWidth: 0 - renderers: - - renderer: {fileID: 2656451562331225545} - m_Enabled: 1 ---- !u!1 &6892846152554402458 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 4805504076787978420} - - component: {fileID: 3959558143554038968} - - component: {fileID: 2656451562331225545} - m_Layer: 0 - m_Name: PT_Menhir_Rock_02_LOD2 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &4805504076787978420 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 6892846152554402458} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 3287948611943350881} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &3959558143554038968 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 6892846152554402458} - m_Mesh: {fileID: -108758478207115686, guid: e0fe1b80592a0144babd1bf297ad32ad, type: 3} ---- !u!23 &2656451562331225545 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 6892846152554402458} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: 93415edde47040648869ae6638d33ced, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!1 &8391035051546296263 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 5831670394684494036} - - component: {fileID: 7004474624027861508} - - component: {fileID: 8975058473414284020} - m_Layer: 0 - m_Name: PT_Menhir_Rock_02_LOD0 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &5831670394684494036 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8391035051546296263} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 3287948611943350881} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &7004474624027861508 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8391035051546296263} - m_Mesh: {fileID: 3034718079717092458, guid: e0fe1b80592a0144babd1bf297ad32ad, type: 3} ---- !u!23 &8975058473414284020 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8391035051546296263} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: 93415edde47040648869ae6638d33ced, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Rocks/PT_Ore_Rock_01_split.prefab b/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Rocks/PT_Ore_Rock_01_split.prefab deleted file mode 100644 index 58d000a..0000000 --- a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Rocks/PT_Ore_Rock_01_split.prefab +++ /dev/null @@ -1,313 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!1 &170636262904696776 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 654684864805361010} - - component: {fileID: 5715058869806490115} - m_Layer: 0 - m_Name: PT_Ore_Rock_01_split - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &654684864805361010 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 170636262904696776} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 7098908873445643701} - - {fileID: 745334611865118324} - - {fileID: 2960818139093837417} - m_Father: {fileID: 0} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!205 &5715058869806490115 -LODGroup: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 170636262904696776} - serializedVersion: 2 - m_LocalReferencePoint: {x: -0.025762975, y: 0.11027803, z: 0.08431947} - m_Size: 1.7269897 - m_FadeMode: 0 - m_AnimateCrossFading: 0 - m_LastLODIsBillboard: 0 - m_LODs: - - screenRelativeHeight: 0.25 - fadeTransitionWidth: 0 - renderers: - - renderer: {fileID: 1477962926183001071} - - screenRelativeHeight: 0.125 - fadeTransitionWidth: 0 - renderers: - - renderer: {fileID: 1825752848146865279} - - screenRelativeHeight: 0.01 - fadeTransitionWidth: 0 - renderers: - - renderer: {fileID: 1331477074281420289} - m_Enabled: 1 ---- !u!1 &1868188171543214933 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 7098908873445643701} - - component: {fileID: 112105051170775810} - - component: {fileID: 1477962926183001071} - m_Layer: 0 - m_Name: PT_Ore_Rock_01_split_LOD0 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &7098908873445643701 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1868188171543214933} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 654684864805361010} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &112105051170775810 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1868188171543214933} - m_Mesh: {fileID: 5303071974843470697, guid: e011a827265c38e44baeae9310a2a9e2, type: 3} ---- !u!23 &1477962926183001071 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1868188171543214933} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: 93415edde47040648869ae6638d33ced, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!1 &1947748849874849025 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 745334611865118324} - - component: {fileID: 8386415180121317509} - - component: {fileID: 1825752848146865279} - m_Layer: 0 - m_Name: PT_Ore_Rock_01_split_LOD1 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &745334611865118324 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1947748849874849025} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 654684864805361010} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &8386415180121317509 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1947748849874849025} - m_Mesh: {fileID: 7538581514122798549, guid: e011a827265c38e44baeae9310a2a9e2, type: 3} ---- !u!23 &1825752848146865279 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1947748849874849025} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: 93415edde47040648869ae6638d33ced, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!1 &4033199793193733960 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 2960818139093837417} - - component: {fileID: 6984527253019857868} - - component: {fileID: 1331477074281420289} - m_Layer: 0 - m_Name: PT_Ore_Rock_01_split_LOD2 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &2960818139093837417 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4033199793193733960} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 654684864805361010} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &6984527253019857868 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4033199793193733960} - m_Mesh: {fileID: 7000977067823357390, guid: e011a827265c38e44baeae9310a2a9e2, type: 3} ---- !u!23 &1331477074281420289 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4033199793193733960} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: 93415edde47040648869ae6638d33ced, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Rocks/PT_River_Rock_Pile_02.prefab b/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Rocks/PT_River_Rock_Pile_02.prefab deleted file mode 100644 index 8236ee9..0000000 --- a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Rocks/PT_River_Rock_Pile_02.prefab +++ /dev/null @@ -1,313 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!1 &358438034484295937 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 5379943834704996597} - - component: {fileID: 6494135270149886337} - - component: {fileID: 663264109683760303} - m_Layer: 0 - m_Name: PT_River_Rock_Pile_02_LOD1 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &5379943834704996597 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 358438034484295937} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 2894652416639355859} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &6494135270149886337 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 358438034484295937} - m_Mesh: {fileID: 4290355096654515962, guid: e5e1b3c0d2be60b47981235187af0936, type: 3} ---- !u!23 &663264109683760303 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 358438034484295937} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: 93415edde47040648869ae6638d33ced, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!1 &2549054593802932585 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 2894652416639355859} - - component: {fileID: 7958353810132139170} - m_Layer: 0 - m_Name: PT_River_Rock_Pile_02 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &2894652416639355859 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2549054593802932585} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 4796835556367509877} - - {fileID: 5379943834704996597} - - {fileID: 6564101191237190672} - m_Father: {fileID: 0} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!205 &7958353810132139170 -LODGroup: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2549054593802932585} - serializedVersion: 2 - m_LocalReferencePoint: {x: -0.02303201, y: 0.089582376, z: -0.0035108328} - m_Size: 1.047795 - m_FadeMode: 0 - m_AnimateCrossFading: 0 - m_LastLODIsBillboard: 0 - m_LODs: - - screenRelativeHeight: 0.25 - fadeTransitionWidth: 0 - renderers: - - renderer: {fileID: 1945505771005491725} - - screenRelativeHeight: 0.125 - fadeTransitionWidth: 0 - renderers: - - renderer: {fileID: 663264109683760303} - - screenRelativeHeight: 0.01 - fadeTransitionWidth: 0 - renderers: - - renderer: {fileID: 8716079735535885485} - m_Enabled: 1 ---- !u!1 &2956066799502889396 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 6564101191237190672} - - component: {fileID: 353735368366914058} - - component: {fileID: 8716079735535885485} - m_Layer: 0 - m_Name: PT_River_Rock_Pile_02_LOD2 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &6564101191237190672 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2956066799502889396} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 2894652416639355859} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &353735368366914058 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2956066799502889396} - m_Mesh: {fileID: -8942549256870626579, guid: e5e1b3c0d2be60b47981235187af0936, type: 3} ---- !u!23 &8716079735535885485 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2956066799502889396} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: 93415edde47040648869ae6638d33ced, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!1 &3923666986999067674 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 4796835556367509877} - - component: {fileID: 2437500246591982726} - - component: {fileID: 1945505771005491725} - m_Layer: 0 - m_Name: PT_River_Rock_Pile_02_LOD0 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &4796835556367509877 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3923666986999067674} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 2894652416639355859} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &2437500246591982726 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3923666986999067674} - m_Mesh: {fileID: -4743291183649763690, guid: e5e1b3c0d2be60b47981235187af0936, type: 3} ---- !u!23 &1945505771005491725 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3923666986999067674} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: 93415edde47040648869ae6638d33ced, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Shrubs/PT_Generic_Shrub_01_dead.prefab b/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Shrubs/PT_Generic_Shrub_01_dead.prefab deleted file mode 100644 index b9ef61d..0000000 --- a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Shrubs/PT_Generic_Shrub_01_dead.prefab +++ /dev/null @@ -1,313 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!1 &3708295212793361695 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 4052485905831964581} - - component: {fileID: 9108334380843702484} - m_Layer: 0 - m_Name: PT_Generic_Shrub_01_dead - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &4052485905831964581 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3708295212793361695} - serializedVersion: 2 - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 731466135414069251} - - {fileID: 1754761355544729570} - - {fileID: 7339736720515318629} - m_Father: {fileID: 0} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!205 &9108334380843702484 -LODGroup: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3708295212793361695} - serializedVersion: 2 - m_LocalReferencePoint: {x: 0.04673183, y: 0.73653185, z: -0.052690268} - m_Size: 1.6685336 - m_FadeMode: 0 - m_AnimateCrossFading: 0 - m_LastLODIsBillboard: 0 - m_LODs: - - screenRelativeHeight: 0.052314702 - fadeTransitionWidth: 0 - renderers: - - renderer: {fileID: 369132456655940945} - - screenRelativeHeight: 0.020985149 - fadeTransitionWidth: 0 - renderers: - - renderer: {fileID: 5498805042805102340} - - screenRelativeHeight: 0.01 - fadeTransitionWidth: 0 - renderers: - - renderer: {fileID: 2861943329907626996} - m_Enabled: 1 ---- !u!1 &4470119638630189145 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 7339736720515318629} - - component: {fileID: 8967353668698701501} - - component: {fileID: 2861943329907626996} - m_Layer: 0 - m_Name: PT_Generic_Shrub_01_dead_LOD2 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &7339736720515318629 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4470119638630189145} - serializedVersion: 2 - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 4052485905831964581} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &8967353668698701501 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4470119638630189145} - m_Mesh: {fileID: 3021784043734384666, guid: 0101712be5ca1c7449afe15d548c8817, type: 3} ---- !u!23 &2861943329907626996 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4470119638630189145} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: e6ce4253a748b0849a04b87f33cc539d, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!1 &7518673359190637102 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 731466135414069251} - - component: {fileID: 1996264333134240599} - - component: {fileID: 369132456655940945} - m_Layer: 0 - m_Name: PT_Generic_Shrub_01_dead_LOD0 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &731466135414069251 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7518673359190637102} - serializedVersion: 2 - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 4052485905831964581} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &1996264333134240599 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7518673359190637102} - m_Mesh: {fileID: -295899887895760404, guid: 0101712be5ca1c7449afe15d548c8817, type: 3} ---- !u!23 &369132456655940945 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7518673359190637102} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: e6ce4253a748b0849a04b87f33cc539d, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!1 &8036543096910822342 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1754761355544729570} - - component: {fileID: 7011813214584680621} - - component: {fileID: 5498805042805102340} - m_Layer: 0 - m_Name: PT_Generic_Shrub_01_dead_LOD1 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &1754761355544729570 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8036543096910822342} - serializedVersion: 2 - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 4052485905831964581} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &7011813214584680621 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8036543096910822342} - m_Mesh: {fileID: 6631789050238458017, guid: 0101712be5ca1c7449afe15d548c8817, type: 3} ---- !u!23 &5498805042805102340 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8036543096910822342} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: e6ce4253a748b0849a04b87f33cc539d, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Shrubs/PT_Generic_Shrub_01_green.prefab b/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Shrubs/PT_Generic_Shrub_01_green.prefab deleted file mode 100644 index 86e7663..0000000 --- a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Shrubs/PT_Generic_Shrub_01_green.prefab +++ /dev/null @@ -1,316 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!1 &1618558467530649374 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 3109928813825500847} - - component: {fileID: 2487957488571339323} - - component: {fileID: 8119850435517770163} - m_Layer: 0 - m_Name: PT_Generic_Shrub_01_green_LOD1 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &3109928813825500847 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1618558467530649374} - serializedVersion: 2 - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 5534383620200805132} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &2487957488571339323 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1618558467530649374} - m_Mesh: {fileID: -3892991102384038495, guid: cc43ed905f6a9d24a86d3eb531265e85, type: 3} ---- !u!23 &8119850435517770163 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1618558467530649374} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: 066ded06e6a8eb240893ea7b8efb66b4, type: 2} - - {fileID: 2100000, guid: e6ce4253a748b0849a04b87f33cc539d, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!1 &5153741093904279990 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 5534383620200805132} - - component: {fileID: 762246597294785661} - m_Layer: 0 - m_Name: PT_Generic_Shrub_01_green - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &5534383620200805132 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5153741093904279990} - serializedVersion: 2 - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 5280803450886040975} - - {fileID: 3109928813825500847} - - {fileID: 4509435437753868090} - m_Father: {fileID: 0} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!205 &762246597294785661 -LODGroup: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5153741093904279990} - serializedVersion: 2 - m_LocalReferencePoint: {x: 0.045613825, y: 0.75981563, z: 0.011344552} - m_Size: 1.8606176 - m_FadeMode: 0 - m_AnimateCrossFading: 0 - m_LastLODIsBillboard: 0 - m_LODs: - - screenRelativeHeight: 0.003017563 - fadeTransitionWidth: 0 - renderers: - - renderer: {fileID: 2030511849321712008} - - screenRelativeHeight: 0.0014802249 - fadeTransitionWidth: 0 - renderers: - - renderer: {fileID: 8119850435517770163} - - screenRelativeHeight: 0.0014802249 - fadeTransitionWidth: 0 - renderers: - - renderer: {fileID: 1955015890131924908} - m_Enabled: 1 ---- !u!1 &8255632427206956809 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 5280803450886040975} - - component: {fileID: 475127693172060145} - - component: {fileID: 2030511849321712008} - m_Layer: 0 - m_Name: PT_Generic_Shrub_01_green_LOD0 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &5280803450886040975 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8255632427206956809} - serializedVersion: 2 - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 5534383620200805132} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &475127693172060145 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8255632427206956809} - m_Mesh: {fileID: -7383557214626562190, guid: cc43ed905f6a9d24a86d3eb531265e85, type: 3} ---- !u!23 &2030511849321712008 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8255632427206956809} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: 066ded06e6a8eb240893ea7b8efb66b4, type: 2} - - {fileID: 2100000, guid: e6ce4253a748b0849a04b87f33cc539d, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!1 &8262811030362704149 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 4509435437753868090} - - component: {fileID: 7700781079062617998} - - component: {fileID: 1955015890131924908} - m_Layer: 0 - m_Name: PT_Generic_Shrub_01_green_LOD2 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &4509435437753868090 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8262811030362704149} - serializedVersion: 2 - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 5534383620200805132} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &7700781079062617998 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8262811030362704149} - m_Mesh: {fileID: -2940668049752689151, guid: cc43ed905f6a9d24a86d3eb531265e85, type: 3} ---- !u!23 &1955015890131924908 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8262811030362704149} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: 066ded06e6a8eb240893ea7b8efb66b4, type: 2} - - {fileID: 2100000, guid: e6ce4253a748b0849a04b87f33cc539d, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_apples.prefab b/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_apples.prefab deleted file mode 100644 index 20903c3..0000000 --- a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_apples.prefab +++ /dev/null @@ -1,316 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!1 &163004174657376329 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 3315714296393109856} - - component: {fileID: 7901795786038575910} - - component: {fileID: 7525788340159858592} - m_Layer: 0 - m_Name: PT_Fruit_Tree_01_apples_LOD1 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &3315714296393109856 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 163004174657376329} - serializedVersion: 2 - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 6419187236850804161} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &7901795786038575910 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 163004174657376329} - m_Mesh: {fileID: 8437342880481029371, guid: fb0559a36ae9650449b6e3c26d5076a5, type: 3} ---- !u!23 &7525788340159858592 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 163004174657376329} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: 0a1f44318dd467a45bfef81ad0e8855a, type: 2} - - {fileID: 2100000, guid: 3922c043c1c52cb47a7b1bfed562a4b6, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!1 &4396159832342145111 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 2364243790871939078} - - component: {fileID: 4604217538834115015} - - component: {fileID: 6038074568851490021} - m_Layer: 0 - m_Name: PT_Fruit_Tree_01_apples_LOD2 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &2364243790871939078 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4396159832342145111} - serializedVersion: 2 - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 6419187236850804161} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &4604217538834115015 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4396159832342145111} - m_Mesh: {fileID: -108839522260070907, guid: fb0559a36ae9650449b6e3c26d5076a5, type: 3} ---- !u!23 &6038074568851490021 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4396159832342145111} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: 0a1f44318dd467a45bfef81ad0e8855a, type: 2} - - {fileID: 2100000, guid: 3922c043c1c52cb47a7b1bfed562a4b6, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!1 &5935278547815300987 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 6419187236850804161} - - component: {fileID: 2256188382494855856} - m_Layer: 0 - m_Name: PT_Fruit_Tree_01_apples - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &6419187236850804161 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5935278547815300987} - serializedVersion: 2 - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 2123385224588831687} - - {fileID: 3315714296393109856} - - {fileID: 2364243790871939078} - m_Father: {fileID: 0} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!205 &2256188382494855856 -LODGroup: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5935278547815300987} - serializedVersion: 2 - m_LocalReferencePoint: {x: -0.053788185, y: 3.1455173, z: -0.5286331} - m_Size: 7.8219233 - m_FadeMode: 0 - m_AnimateCrossFading: 0 - m_LastLODIsBillboard: 0 - m_LODs: - - screenRelativeHeight: 0.02 - fadeTransitionWidth: 0 - renderers: - - renderer: {fileID: 340751423047132367} - - screenRelativeHeight: 0.01 - fadeTransitionWidth: 0 - renderers: - - renderer: {fileID: 7525788340159858592} - - screenRelativeHeight: 0 - fadeTransitionWidth: 0 - renderers: - - renderer: {fileID: 6038074568851490021} - m_Enabled: 1 ---- !u!1 &7513603357302551873 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 2123385224588831687} - - component: {fileID: 4006941177706727810} - - component: {fileID: 340751423047132367} - m_Layer: 0 - m_Name: PT_Fruit_Tree_01_apples_LOD0 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &2123385224588831687 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7513603357302551873} - serializedVersion: 2 - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 6419187236850804161} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &4006941177706727810 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7513603357302551873} - m_Mesh: {fileID: -65089136688577580, guid: fb0559a36ae9650449b6e3c26d5076a5, type: 3} ---- !u!23 &340751423047132367 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7513603357302551873} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: 3922c043c1c52cb47a7b1bfed562a4b6, type: 2} - - {fileID: 2100000, guid: 0a1f44318dd467a45bfef81ad0e8855a, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_dead.prefab b/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_dead.prefab deleted file mode 100644 index 0b1fb49..0000000 --- a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_dead.prefab +++ /dev/null @@ -1,313 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!1 &1215182899609276316 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1988025617893250342} - - component: {fileID: 6759055787200995927} - m_Layer: 0 - m_Name: PT_Fruit_Tree_01_dead - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &1988025617893250342 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1215182899609276316} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 355686686542058714} - - {fileID: 7117508975715571117} - - {fileID: 1799755330681518831} - m_Father: {fileID: 0} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!205 &6759055787200995927 -LODGroup: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1215182899609276316} - serializedVersion: 2 - m_LocalReferencePoint: {x: -0.19844818, y: 2.4713087, z: -0.42052865} - m_Size: 5.5302563 - m_FadeMode: 0 - m_AnimateCrossFading: 0 - m_LastLODIsBillboard: 0 - m_LODs: - - screenRelativeHeight: 0.25 - fadeTransitionWidth: 0 - renderers: - - renderer: {fileID: 1814185510865685987} - - screenRelativeHeight: 0.125 - fadeTransitionWidth: 0 - renderers: - - renderer: {fileID: 4520285889721809477} - - screenRelativeHeight: 0.01 - fadeTransitionWidth: 0 - renderers: - - renderer: {fileID: 4772830539911952586} - m_Enabled: 1 ---- !u!1 &2110101974054781677 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1799755330681518831} - - component: {fileID: 3631142874527198405} - - component: {fileID: 4772830539911952586} - m_Layer: 0 - m_Name: PT_Fruit_Tree_01_dead_LOD2 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &1799755330681518831 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2110101974054781677} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: -0.0016458168, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 1988025617893250342} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &3631142874527198405 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2110101974054781677} - m_Mesh: {fileID: 3023671693195099197, guid: 3ebf65d3a6489594ca09a35d85d43b0a, type: 3} ---- !u!23 &4772830539911952586 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2110101974054781677} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: 3922c043c1c52cb47a7b1bfed562a4b6, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!1 &7875350929978274829 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 7117508975715571117} - - component: {fileID: 4919535853178116811} - - component: {fileID: 4520285889721809477} - m_Layer: 0 - m_Name: PT_Fruit_Tree_01_dead_LOD1 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &7117508975715571117 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7875350929978274829} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: -0.0016458168, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 1988025617893250342} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &4919535853178116811 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7875350929978274829} - m_Mesh: {fileID: -2040201386912258990, guid: 3ebf65d3a6489594ca09a35d85d43b0a, type: 3} ---- !u!23 &4520285889721809477 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7875350929978274829} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: 3922c043c1c52cb47a7b1bfed562a4b6, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!1 &9055391635337348157 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 355686686542058714} - - component: {fileID: 7275367467134081096} - - component: {fileID: 1814185510865685987} - m_Layer: 0 - m_Name: PT_Fruit_Tree_01_dead_LOD0 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &355686686542058714 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 9055391635337348157} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: -0.0016458168, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 1988025617893250342} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &7275367467134081096 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 9055391635337348157} - m_Mesh: {fileID: 5362752393953957539, guid: 3ebf65d3a6489594ca09a35d85d43b0a, type: 3} ---- !u!23 &1814185510865685987 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 9055391635337348157} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: 3922c043c1c52cb47a7b1bfed562a4b6, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_dead_cut.prefab b/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_dead_cut.prefab deleted file mode 100644 index 83a2cee..0000000 --- a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_dead_cut.prefab +++ /dev/null @@ -1,85 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!1 &1779396640715740685 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1439603208813202615} - - component: {fileID: 2618180078766244626} - - component: {fileID: 266085804396066776} - m_Layer: 0 - m_Name: PT_Fruit_Tree_01_dead_cut - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &1439603208813202615 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1779396640715740685} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 0} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &2618180078766244626 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1779396640715740685} - m_Mesh: {fileID: -141427767444353596, guid: ddcbcdd7a43212c4d86fe33f77dac074, type: 3} ---- !u!23 &266085804396066776 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1779396640715740685} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: 3922c043c1c52cb47a7b1bfed562a4b6, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_green.prefab b/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_green.prefab deleted file mode 100644 index eb3c902..0000000 --- a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_green.prefab +++ /dev/null @@ -1,316 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!1 &570905906132603332 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1604534389263972203} - - component: {fileID: 2450240378288737524} - - component: {fileID: 1094804630965145243} - m_Layer: 0 - m_Name: PT_Fruit_Tree_01_green_LOD2 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &1604534389263972203 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 570905906132603332} - serializedVersion: 2 - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 4696216175943693753} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &2450240378288737524 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 570905906132603332} - m_Mesh: {fileID: 7895332203970146629, guid: f222748f1796b2e49a56a2fbf7563247, type: 3} ---- !u!23 &1094804630965145243 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 570905906132603332} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: 0a1f44318dd467a45bfef81ad0e8855a, type: 2} - - {fileID: 2100000, guid: 3922c043c1c52cb47a7b1bfed562a4b6, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!1 &2187513939821381110 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 8305029876632308500} - - component: {fileID: 6974490863388874546} - - component: {fileID: 2558605503083844748} - m_Layer: 0 - m_Name: PT_Fruit_Tree_01_green_LOD0 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &8305029876632308500 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2187513939821381110} - serializedVersion: 2 - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 4696216175943693753} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &6974490863388874546 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2187513939821381110} - m_Mesh: {fileID: 1424200115404124385, guid: f222748f1796b2e49a56a2fbf7563247, type: 3} ---- !u!23 &2558605503083844748 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2187513939821381110} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: 3922c043c1c52cb47a7b1bfed562a4b6, type: 2} - - {fileID: 2100000, guid: 0a1f44318dd467a45bfef81ad0e8855a, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!1 &5361428799875542787 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 4696216175943693753} - - component: {fileID: 537705250742567624} - m_Layer: 0 - m_Name: PT_Fruit_Tree_01_green - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &4696216175943693753 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5361428799875542787} - serializedVersion: 2 - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 8305029876632308500} - - {fileID: 2486815125958864585} - - {fileID: 1604534389263972203} - m_Father: {fileID: 0} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!205 &537705250742567624 -LODGroup: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5361428799875542787} - serializedVersion: 2 - m_LocalReferencePoint: {x: -0.053788185, y: 3.1455173, z: -0.5286331} - m_Size: 7.8219233 - m_FadeMode: 0 - m_AnimateCrossFading: 0 - m_LastLODIsBillboard: 0 - m_LODs: - - screenRelativeHeight: 0.02 - fadeTransitionWidth: 0 - renderers: - - renderer: {fileID: 2558605503083844748} - - screenRelativeHeight: 0.01 - fadeTransitionWidth: 0 - renderers: - - renderer: {fileID: 1613519660729417021} - - screenRelativeHeight: 0 - fadeTransitionWidth: 0 - renderers: - - renderer: {fileID: 1094804630965145243} - m_Enabled: 1 ---- !u!1 &6567692543045439752 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 2486815125958864585} - - component: {fileID: 6631951447468464209} - - component: {fileID: 1613519660729417021} - m_Layer: 0 - m_Name: PT_Fruit_Tree_01_green_LOD1 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &2486815125958864585 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 6567692543045439752} - serializedVersion: 2 - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 4696216175943693753} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &6631951447468464209 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 6567692543045439752} - m_Mesh: {fileID: -2391616400560951514, guid: f222748f1796b2e49a56a2fbf7563247, type: 3} ---- !u!23 &1613519660729417021 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 6567692543045439752} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: 0a1f44318dd467a45bfef81ad0e8855a, type: 2} - - {fileID: 2100000, guid: 3922c043c1c52cb47a7b1bfed562a4b6, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_green_cut.prefab b/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_green_cut.prefab deleted file mode 100644 index 50e125c..0000000 --- a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_green_cut.prefab +++ /dev/null @@ -1,86 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!1 &873261478477796481 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 528506774677081659} - - component: {fileID: 3529266890537746846} - - component: {fileID: 1665925868165018964} - m_Layer: 0 - m_Name: PT_Fruit_Tree_01_green_cut - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &528506774677081659 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 873261478477796481} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 0} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &3529266890537746846 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 873261478477796481} - m_Mesh: {fileID: -5058988329590428460, guid: 1500a5535a073af4797d5ba960824cb3, type: 3} ---- !u!23 &1665925868165018964 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 873261478477796481} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: 3922c043c1c52cb47a7b1bfed562a4b6, type: 2} - - {fileID: 2100000, guid: 0a1f44318dd467a45bfef81ad0e8855a, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_logs.prefab b/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_logs.prefab deleted file mode 100644 index cb7c8ba..0000000 --- a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_logs.prefab +++ /dev/null @@ -1,85 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!1 &4026988788687868377 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 4371144052285426531} - - component: {fileID: 794524481623672006} - - component: {fileID: 3234218433630908428} - m_Layer: 0 - m_Name: PT_Fruit_Tree_01_logs - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &4371144052285426531 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4026988788687868377} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 0} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &794524481623672006 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4026988788687868377} - m_Mesh: {fileID: 852798479006970287, guid: 268a14e7ef45f1542a7d335b0a20d200, type: 3} ---- !u!23 &3234218433630908428 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4026988788687868377} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: 3922c043c1c52cb47a7b1bfed562a4b6, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_pears.prefab b/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_pears.prefab deleted file mode 100644 index 80cec8c..0000000 --- a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_pears.prefab +++ /dev/null @@ -1,316 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!1 &2479184009378418726 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 2966750739439028892} - - component: {fileID: 8031637485679984109} - m_Layer: 0 - m_Name: PT_Fruit_Tree_01_pears - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &2966750739439028892 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2479184009378418726} - serializedVersion: 2 - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 3396174388722069082} - - {fileID: 9181186186337446699} - - {fileID: 6095404779158058549} - m_Father: {fileID: 0} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!205 &8031637485679984109 -LODGroup: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2479184009378418726} - serializedVersion: 2 - m_LocalReferencePoint: {x: -0.053788185, y: 3.1455173, z: -0.5286331} - m_Size: 7.8219233 - m_FadeMode: 0 - m_AnimateCrossFading: 0 - m_LastLODIsBillboard: 0 - m_LODs: - - screenRelativeHeight: 0.02 - fadeTransitionWidth: 0 - renderers: - - renderer: {fileID: 7532243803686030394} - - screenRelativeHeight: 0.01 - fadeTransitionWidth: 0 - renderers: - - renderer: {fileID: 2352935628247011077} - - screenRelativeHeight: 0 - fadeTransitionWidth: 0 - renderers: - - renderer: {fileID: 8580298009914301585} - m_Enabled: 1 ---- !u!1 &2613454675235345673 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 6095404779158058549} - - component: {fileID: 1584039189104781334} - - component: {fileID: 8580298009914301585} - m_Layer: 0 - m_Name: PT_Fruit_Tree_01_pears_LOD2 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &6095404779158058549 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2613454675235345673} - serializedVersion: 2 - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 2966750739439028892} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &1584039189104781334 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2613454675235345673} - m_Mesh: {fileID: 5722038721443508255, guid: ab5654911e4a8494190af9551d81ea81, type: 3} ---- !u!23 &8580298009914301585 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2613454675235345673} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: 0a1f44318dd467a45bfef81ad0e8855a, type: 2} - - {fileID: 2100000, guid: 3922c043c1c52cb47a7b1bfed562a4b6, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!1 &3491555602639996928 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 3396174388722069082} - - component: {fileID: 3651040237905038081} - - component: {fileID: 7532243803686030394} - m_Layer: 0 - m_Name: PT_Fruit_Tree_01_pears_LOD0 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &3396174388722069082 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3491555602639996928} - serializedVersion: 2 - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 2966750739439028892} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &3651040237905038081 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3491555602639996928} - m_Mesh: {fileID: -81730470629741159, guid: ab5654911e4a8494190af9551d81ea81, type: 3} ---- !u!23 &7532243803686030394 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3491555602639996928} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: 3922c043c1c52cb47a7b1bfed562a4b6, type: 2} - - {fileID: 2100000, guid: 0a1f44318dd467a45bfef81ad0e8855a, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!1 &7765329102591482917 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 9181186186337446699} - - component: {fileID: 31858204375945324} - - component: {fileID: 2352935628247011077} - m_Layer: 0 - m_Name: PT_Fruit_Tree_01_pears_LOD1 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &9181186186337446699 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7765329102591482917} - serializedVersion: 2 - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 2966750739439028892} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &31858204375945324 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7765329102591482917} - m_Mesh: {fileID: -1599781597726719241, guid: ab5654911e4a8494190af9551d81ea81, type: 3} ---- !u!23 &2352935628247011077 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7765329102591482917} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: 0a1f44318dd467a45bfef81ad0e8855a, type: 2} - - {fileID: 2100000, guid: 3922c043c1c52cb47a7b1bfed562a4b6, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_plums.prefab b/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_plums.prefab deleted file mode 100644 index 0763ec6..0000000 --- a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_plums.prefab +++ /dev/null @@ -1,316 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!1 &3503747439877303717 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 8254891333303301210} - - component: {fileID: 8222655170643054932} - - component: {fileID: 1414196137617344592} - m_Layer: 0 - m_Name: PT_Fruit_Tree_01_plums_LOD1 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &8254891333303301210 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3503747439877303717} - serializedVersion: 2 - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 7929462325123785727} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &8222655170643054932 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3503747439877303717} - m_Mesh: {fileID: -6277127589373287680, guid: 0ef9f3b550a8ffd40ab0be1ae6034fe1, type: 3} ---- !u!23 &1414196137617344592 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3503747439877303717} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: 0a1f44318dd467a45bfef81ad0e8855a, type: 2} - - {fileID: 2100000, guid: 3922c043c1c52cb47a7b1bfed562a4b6, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!1 &7296054959696050501 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 7929462325123785727} - - component: {fileID: 2905107983372784782} - m_Layer: 0 - m_Name: PT_Fruit_Tree_01_plums - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &7929462325123785727 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7296054959696050501} - serializedVersion: 2 - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 3661800321207667961} - - {fileID: 8254891333303301210} - - {fileID: 6965208583826785942} - m_Father: {fileID: 0} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!205 &2905107983372784782 -LODGroup: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7296054959696050501} - serializedVersion: 2 - m_LocalReferencePoint: {x: -0.053788185, y: 3.1455173, z: -0.5286331} - m_Size: 7.8219233 - m_FadeMode: 0 - m_AnimateCrossFading: 0 - m_LastLODIsBillboard: 0 - m_LODs: - - screenRelativeHeight: 0.02 - fadeTransitionWidth: 0 - renderers: - - renderer: {fileID: 1987643193280244065} - - screenRelativeHeight: 0.01 - fadeTransitionWidth: 0 - renderers: - - renderer: {fileID: 1414196137617344592} - - screenRelativeHeight: 0 - fadeTransitionWidth: 0 - renderers: - - renderer: {fileID: 6140726643089354878} - m_Enabled: 1 ---- !u!1 &7389196695646074697 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 3661800321207667961} - - component: {fileID: 9204582415525613151} - - component: {fileID: 1987643193280244065} - m_Layer: 0 - m_Name: PT_Fruit_Tree_01_plums_LOD0 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &3661800321207667961 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7389196695646074697} - serializedVersion: 2 - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 7929462325123785727} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &9204582415525613151 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7389196695646074697} - m_Mesh: {fileID: -7931003169463669571, guid: 0ef9f3b550a8ffd40ab0be1ae6034fe1, type: 3} ---- !u!23 &1987643193280244065 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7389196695646074697} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: 3922c043c1c52cb47a7b1bfed562a4b6, type: 2} - - {fileID: 2100000, guid: 0a1f44318dd467a45bfef81ad0e8855a, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!1 &7626970178412452963 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 6965208583826785942} - - component: {fileID: 4352938707021388631} - - component: {fileID: 6140726643089354878} - m_Layer: 0 - m_Name: PT_Fruit_Tree_01_plums_LOD2 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &6965208583826785942 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7626970178412452963} - serializedVersion: 2 - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 7929462325123785727} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &4352938707021388631 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7626970178412452963} - m_Mesh: {fileID: -7154571410859833707, guid: 0ef9f3b550a8ffd40ab0be1ae6034fe1, type: 3} ---- !u!23 &6140726643089354878 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7626970178412452963} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: 0a1f44318dd467a45bfef81ad0e8855a, type: 2} - - {fileID: 2100000, guid: 3922c043c1c52cb47a7b1bfed562a4b6, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_stump.prefab b/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_stump.prefab deleted file mode 100644 index f325dfa..0000000 --- a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Fruit_Tree_01_stump.prefab +++ /dev/null @@ -1,85 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!1 &7098389285256826050 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 7622724856221292152} - - component: {fileID: 6802265350786472413} - - component: {fileID: 8755691476161375511} - m_Layer: 0 - m_Name: PT_Fruit_Tree_01_stump - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &7622724856221292152 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7098389285256826050} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 0} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &6802265350786472413 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7098389285256826050} - m_Mesh: {fileID: 494737336489812136, guid: f42a2ed0c78e45643bba339ed33235d4, type: 3} ---- !u!23 &8755691476161375511 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7098389285256826050} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: 3922c043c1c52cb47a7b1bfed562a4b6, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Pine_Tree_03_dead.prefab b/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Pine_Tree_03_dead.prefab deleted file mode 100644 index 0f66a09..0000000 --- a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Pine_Tree_03_dead.prefab +++ /dev/null @@ -1,313 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!1 &1932841404346126693 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1268050992877243359} - - component: {fileID: 6323926895507881134} - m_Layer: 0 - m_Name: PT_Pine_Tree_03_dead - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &1268050992877243359 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1932841404346126693} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 2809133384829089810} - - {fileID: 2534358327882011202} - - {fileID: 5340731949621571375} - m_Father: {fileID: 0} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!205 &6323926895507881134 -LODGroup: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1932841404346126693} - serializedVersion: 2 - m_LocalReferencePoint: {x: 0.032800674, y: 3.9897761, z: 0.01949501} - m_Size: 9.0348425 - m_FadeMode: 0 - m_AnimateCrossFading: 0 - m_LastLODIsBillboard: 0 - m_LODs: - - screenRelativeHeight: 0.25 - fadeTransitionWidth: 0 - renderers: - - renderer: {fileID: 728806381982184805} - - screenRelativeHeight: 0.125 - fadeTransitionWidth: 0 - renderers: - - renderer: {fileID: 7058119992877278399} - - screenRelativeHeight: 0.01 - fadeTransitionWidth: 0 - renderers: - - renderer: {fileID: 4328895901199877293} - m_Enabled: 1 ---- !u!1 &3362487869812425040 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 2809133384829089810} - - component: {fileID: 2927318667073144412} - - component: {fileID: 728806381982184805} - m_Layer: 0 - m_Name: PT_Pine_Tree_03_dead_LOD0 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &2809133384829089810 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3362487869812425040} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 1268050992877243359} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &2927318667073144412 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3362487869812425040} - m_Mesh: {fileID: -1780260721220084313, guid: 021e9eaa88033da4c94bcdeddffe6562, type: 3} ---- !u!23 &728806381982184805 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3362487869812425040} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: f43a7dc4f39c5654a8211b83259e32a9, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!1 &4723611995488449968 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 5340731949621571375} - - component: {fileID: 2617870471872453413} - - component: {fileID: 4328895901199877293} - m_Layer: 0 - m_Name: PT_Pine_Tree_03_dead_LOD2 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &5340731949621571375 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4723611995488449968} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 1268050992877243359} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &2617870471872453413 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4723611995488449968} - m_Mesh: {fileID: 6448605334951534252, guid: 021e9eaa88033da4c94bcdeddffe6562, type: 3} ---- !u!23 &4328895901199877293 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4723611995488449968} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: f43a7dc4f39c5654a8211b83259e32a9, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!1 &6476640290302085614 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 2534358327882011202} - - component: {fileID: 6272690288195183828} - - component: {fileID: 7058119992877278399} - m_Layer: 0 - m_Name: PT_Pine_Tree_03_dead_LOD1 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &2534358327882011202 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 6476640290302085614} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 1268050992877243359} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &6272690288195183828 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 6476640290302085614} - m_Mesh: {fileID: 1626888478940812836, guid: 021e9eaa88033da4c94bcdeddffe6562, type: 3} ---- !u!23 &7058119992877278399 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 6476640290302085614} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: f43a7dc4f39c5654a8211b83259e32a9, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Pine_Tree_03_dead_cut.prefab b/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Pine_Tree_03_dead_cut.prefab deleted file mode 100644 index 1d08b8c..0000000 --- a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Pine_Tree_03_dead_cut.prefab +++ /dev/null @@ -1,85 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!1 &3611794222474779789 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 4131062105692079671} - - component: {fileID: 1079633060130294162} - - component: {fileID: 2963183586251210072} - m_Layer: 0 - m_Name: PT_Pine_Tree_03_dead_cut - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &4131062105692079671 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3611794222474779789} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 0} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &1079633060130294162 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3611794222474779789} - m_Mesh: {fileID: -5302164496271027446, guid: 3b8d3c0077d69eb4db5ee5754518f067, type: 3} ---- !u!23 &2963183586251210072 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3611794222474779789} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: f43a7dc4f39c5654a8211b83259e32a9, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Pine_Tree_03_green.prefab b/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Pine_Tree_03_green.prefab deleted file mode 100644 index 06374eb..0000000 --- a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Pine_Tree_03_green.prefab +++ /dev/null @@ -1,316 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!1 &649165938051307759 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 2028470415565354925} - - component: {fileID: 2812287724108380338} - - component: {fileID: 1394057832663195253} - m_Layer: 0 - m_Name: PT_Pine_Tree_03_green_LOD0 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &2028470415565354925 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 649165938051307759} - serializedVersion: 2 - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 6894979521318456901} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &2812287724108380338 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 649165938051307759} - m_Mesh: {fileID: -1370226064674271009, guid: c2dcabc4d03cc9b4098225e59529d20d, type: 3} ---- !u!23 &1394057832663195253 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 649165938051307759} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: 823cb446423dd7747b7454d5cf133e75, type: 2} - - {fileID: 2100000, guid: f43a7dc4f39c5654a8211b83259e32a9, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!1 &1720328307436147672 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 6236222268586821143} - - component: {fileID: 8379061657498843178} - - component: {fileID: 7013654394060798706} - m_Layer: 0 - m_Name: PT_Pine_Tree_03_green_LOD2 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &6236222268586821143 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1720328307436147672} - serializedVersion: 2 - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 6894979521318456901} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &8379061657498843178 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1720328307436147672} - m_Mesh: {fileID: -6347407127737987101, guid: c2dcabc4d03cc9b4098225e59529d20d, type: 3} ---- !u!23 &7013654394060798706 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1720328307436147672} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: 823cb446423dd7747b7454d5cf133e75, type: 2} - - {fileID: 2100000, guid: f43a7dc4f39c5654a8211b83259e32a9, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!1 &6117071349010126079 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 6894979521318456901} - - component: {fileID: 1870679391148259636} - m_Layer: 0 - m_Name: PT_Pine_Tree_03_green - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &6894979521318456901 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 6117071349010126079} - serializedVersion: 2 - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 2028470415565354925} - - {fileID: 8538897729451581637} - - {fileID: 6236222268586821143} - m_Father: {fileID: 0} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!205 &1870679391148259636 -LODGroup: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 6117071349010126079} - serializedVersion: 2 - m_LocalReferencePoint: {x: -0.0307765, y: 4.058229, z: 0.007450819} - m_Size: 9.165267 - m_FadeMode: 0 - m_AnimateCrossFading: 0 - m_LastLODIsBillboard: 0 - m_LODs: - - screenRelativeHeight: 0.02 - fadeTransitionWidth: 0 - renderers: - - renderer: {fileID: 1394057832663195253} - - screenRelativeHeight: 0.01 - fadeTransitionWidth: 0 - renderers: - - renderer: {fileID: 8000319770140492376} - - screenRelativeHeight: 0 - fadeTransitionWidth: 0 - renderers: - - renderer: {fileID: 7013654394060798706} - m_Enabled: 1 ---- !u!1 &8169898343365794049 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 8538897729451581637} - - component: {fileID: 6203392517139920881} - - component: {fileID: 8000319770140492376} - m_Layer: 0 - m_Name: PT_Pine_Tree_03_green_LOD1 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &8538897729451581637 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8169898343365794049} - serializedVersion: 2 - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 6894979521318456901} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &6203392517139920881 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8169898343365794049} - m_Mesh: {fileID: 8288761260979594307, guid: c2dcabc4d03cc9b4098225e59529d20d, type: 3} ---- !u!23 &8000319770140492376 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8169898343365794049} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: 823cb446423dd7747b7454d5cf133e75, type: 2} - - {fileID: 2100000, guid: f43a7dc4f39c5654a8211b83259e32a9, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Pine_Tree_03_green_cut.prefab b/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Pine_Tree_03_green_cut.prefab deleted file mode 100644 index 52b617c..0000000 --- a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Pine_Tree_03_green_cut.prefab +++ /dev/null @@ -1,86 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!1 &4928616408704863665 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 5705539758440290059} - - component: {fileID: 8683500536680192174} - - component: {fileID: 6873912444871011428} - m_Layer: 0 - m_Name: PT_Pine_Tree_03_green_cut - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &5705539758440290059 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4928616408704863665} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 0} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &8683500536680192174 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4928616408704863665} - m_Mesh: {fileID: -5923293107675433356, guid: 2a5e649cde00dd847885c694eb77f1fb, type: 3} ---- !u!23 &6873912444871011428 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4928616408704863665} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: 823cb446423dd7747b7454d5cf133e75, type: 2} - - {fileID: 2100000, guid: f43a7dc4f39c5654a8211b83259e32a9, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Pine_Tree_03_logs.prefab b/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Pine_Tree_03_logs.prefab deleted file mode 100644 index 13e32ac..0000000 --- a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Pine_Tree_03_logs.prefab +++ /dev/null @@ -1,85 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!1 &3010216212467657930 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 2489856308131526256} - - component: {fileID: 1522890174684395989} - - component: {fileID: 3658774210864352543} - m_Layer: 0 - m_Name: PT_Pine_Tree_03_logs - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &2489856308131526256 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3010216212467657930} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 0} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &1522890174684395989 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3010216212467657930} - m_Mesh: {fileID: 4651790976113752566, guid: e9a01d2a3de15954eb2cccf4df7f3d5b, type: 3} ---- !u!23 &3658774210864352543 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3010216212467657930} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: f43a7dc4f39c5654a8211b83259e32a9, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} diff --git a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Pine_Tree_03_stump.prefab b/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Pine_Tree_03_stump.prefab deleted file mode 100644 index 3b87af9..0000000 --- a/Assets/Polytope Studio/Lowpoly_Environments/Prefabs/Trees/PT_Pine_Tree_03_stump.prefab +++ /dev/null @@ -1,85 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!1 &3125019525012259300 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 2311925644611836766} - - component: {fileID: 1709757669461153019} - - component: {fileID: 3485417514373718065} - m_Layer: 0 - m_Name: PT_Pine_Tree_03_stump - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &2311925644611836766 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3125019525012259300} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 0} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &1709757669461153019 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3125019525012259300} - m_Mesh: {fileID: -4144560128802943753, guid: 13bd9962aed9bef41bc2dd73a559c317, type: 3} ---- !u!23 &3485417514373718065 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3125019525012259300} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: f43a7dc4f39c5654a8211b83259e32a9, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} diff --git a/Assets/Polytope Studio/Lowpoly_Village/Prefabs/Modular/Bridge/PT_Wooden_Bridge_02.prefab b/Assets/Polytope Studio/Lowpoly_Village/Prefabs/Modular/Bridge/PT_Wooden_Bridge_02.prefab deleted file mode 100644 index 456bea8..0000000 --- a/Assets/Polytope Studio/Lowpoly_Village/Prefabs/Modular/Bridge/PT_Wooden_Bridge_02.prefab +++ /dev/null @@ -1,250 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!1 &1570551007245605127 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1976155294054394604} - - component: {fileID: 7378431948083738750} - - component: {fileID: 1147033383269749441} - - component: {fileID: 8781387489092792892} - m_Layer: 0 - m_Name: PT_Wooden_Bridge_02_LOD1 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &1976155294054394604 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1570551007245605127} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 2758808173843430218} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &7378431948083738750 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1570551007245605127} - m_Mesh: {fileID: 6930846376202869729, guid: 06585c4a497d08f4591a54ccfdb05bcf, type: 3} ---- !u!23 &1147033383269749441 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1570551007245605127} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!64 &8781387489092792892 -MeshCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1570551007245605127} - m_Material: {fileID: 0} - m_IsTrigger: 0 - m_Enabled: 1 - serializedVersion: 4 - m_Convex: 0 - m_CookingOptions: 30 - m_Mesh: {fileID: 6930846376202869729, guid: 06585c4a497d08f4591a54ccfdb05bcf, type: 3} ---- !u!1 &3111715830586018037 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 7271632382185357321} - - component: {fileID: 654374534219575297} - - component: {fileID: 3085657497406188208} - - component: {fileID: 7471486200458557985} - m_Layer: 0 - m_Name: PT_Wooden_Bridge_02_LOD0 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &7271632382185357321 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3111715830586018037} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 2758808173843430218} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &654374534219575297 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3111715830586018037} - m_Mesh: {fileID: 6918578486988042238, guid: 06585c4a497d08f4591a54ccfdb05bcf, type: 3} ---- !u!23 &3085657497406188208 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3111715830586018037} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!64 &7471486200458557985 -MeshCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3111715830586018037} - m_Material: {fileID: 0} - m_IsTrigger: 0 - m_Enabled: 1 - serializedVersion: 4 - m_Convex: 0 - m_CookingOptions: 30 - m_Mesh: {fileID: 6918578486988042238, guid: 06585c4a497d08f4591a54ccfdb05bcf, type: 3} ---- !u!1 &3243314962588885488 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 2758808173843430218} - - component: {fileID: 6922981246204054587} - m_Layer: 0 - m_Name: PT_Wooden_Bridge_02 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &2758808173843430218 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3243314962588885488} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 7271632382185357321} - - {fileID: 1976155294054394604} - m_Father: {fileID: 0} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!205 &6922981246204054587 -LODGroup: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3243314962588885488} - serializedVersion: 2 - m_LocalReferencePoint: {x: 1.2936525, y: 0.47521162, z: -0.11247885} - m_Size: 4.469841 - m_FadeMode: 0 - m_AnimateCrossFading: 0 - m_LastLODIsBillboard: 0 - m_LODs: - - screenRelativeHeight: 0.25 - fadeTransitionWidth: 0 - renderers: - - renderer: {fileID: 3085657497406188208} - - screenRelativeHeight: 0.01 - fadeTransitionWidth: 0 - renderers: - - renderer: {fileID: 1147033383269749441} - m_Enabled: 1 diff --git a/Assets/Polytope Studio/Lowpoly_Village/Prefabs/Modular/Fence/PT_Modular_Fence_Wood_01.prefab b/Assets/Polytope Studio/Lowpoly_Village/Prefabs/Modular/Fence/PT_Modular_Fence_Wood_01.prefab deleted file mode 100644 index bcaac9a..0000000 --- a/Assets/Polytope Studio/Lowpoly_Village/Prefabs/Modular/Fence/PT_Modular_Fence_Wood_01.prefab +++ /dev/null @@ -1,98 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!1 &5381386135662024661 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 5381386135662447605} - - component: {fileID: 5381386135663217621} - - component: {fileID: 5381386135664216341} - - component: {fileID: 5381386135659936117} - m_Layer: 0 - m_Name: PT_Modular_Fence_Wood_01 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &5381386135662447605 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5381386135662024661} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 0} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &5381386135663217621 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5381386135662024661} - m_Mesh: {fileID: -1452343357121901386, guid: ed920bad5318ee347ad3e34dd82e273f, type: 3} ---- !u!23 &5381386135664216341 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5381386135662024661} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!64 &5381386135659936117 -MeshCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5381386135662024661} - m_Material: {fileID: 0} - m_IsTrigger: 0 - m_Enabled: 1 - serializedVersion: 4 - m_Convex: 0 - m_CookingOptions: 30 - m_Mesh: {fileID: -1452343357121901386, guid: ed920bad5318ee347ad3e34dd82e273f, type: 3} diff --git a/Assets/Polytope Studio/Lowpoly_Village/Prefabs/Modular/Fence/PT_Modular_Fence_Wood_02.prefab b/Assets/Polytope Studio/Lowpoly_Village/Prefabs/Modular/Fence/PT_Modular_Fence_Wood_02.prefab deleted file mode 100644 index 6b732d1..0000000 --- a/Assets/Polytope Studio/Lowpoly_Village/Prefabs/Modular/Fence/PT_Modular_Fence_Wood_02.prefab +++ /dev/null @@ -1,98 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!1 &850649989194438716 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 850649989193942044} - - component: {fileID: 850649989195236412} - - component: {fileID: 850649989196367612} - - component: {fileID: 850649989200737948} - m_Layer: 0 - m_Name: PT_Modular_Fence_Wood_02 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &850649989193942044 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 850649989194438716} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 0} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &850649989195236412 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 850649989194438716} - m_Mesh: {fileID: -7129513904718193985, guid: b67d2b761d3397348831d776dbb33e03, type: 3} ---- !u!23 &850649989196367612 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 850649989194438716} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!64 &850649989200737948 -MeshCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 850649989194438716} - m_Material: {fileID: 0} - m_IsTrigger: 0 - m_Enabled: 1 - serializedVersion: 4 - m_Convex: 0 - m_CookingOptions: 30 - m_Mesh: {fileID: -7129513904718193985, guid: b67d2b761d3397348831d776dbb33e03, type: 3} diff --git a/Assets/Polytope Studio/Lowpoly_Village/Prefabs/Modular/Fence/PT_Modular_Fence_Wood_03.prefab b/Assets/Polytope Studio/Lowpoly_Village/Prefabs/Modular/Fence/PT_Modular_Fence_Wood_03.prefab deleted file mode 100644 index da31583..0000000 --- a/Assets/Polytope Studio/Lowpoly_Village/Prefabs/Modular/Fence/PT_Modular_Fence_Wood_03.prefab +++ /dev/null @@ -1,98 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!1 &7022826003607082945 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 7022826003607571425} - - component: {fileID: 7022826003606244289} - - component: {fileID: 7022826003605145857} - - component: {fileID: 7022826003600800097} - m_Layer: 0 - m_Name: PT_Modular_Fence_Wood_03 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &7022826003607571425 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7022826003607082945} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 0} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &7022826003606244289 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7022826003607082945} - m_Mesh: {fileID: -7107373128826036890, guid: 955f7ab7f12013b42b2aa2e494846f3a, type: 3} ---- !u!23 &7022826003605145857 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7022826003607082945} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!64 &7022826003600800097 -MeshCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7022826003607082945} - m_Material: {fileID: 0} - m_IsTrigger: 0 - m_Enabled: 1 - serializedVersion: 4 - m_Convex: 0 - m_CookingOptions: 30 - m_Mesh: {fileID: -7107373128826036890, guid: 955f7ab7f12013b42b2aa2e494846f3a, type: 3} diff --git a/Assets/Polytope Studio/Lowpoly_Village/Prefabs/Modular/Fence/PT_Modular_Gate_Wood_01.prefab b/Assets/Polytope Studio/Lowpoly_Village/Prefabs/Modular/Fence/PT_Modular_Gate_Wood_01.prefab deleted file mode 100644 index 0fa8ec8..0000000 --- a/Assets/Polytope Studio/Lowpoly_Village/Prefabs/Modular/Fence/PT_Modular_Gate_Wood_01.prefab +++ /dev/null @@ -1,323 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!1 &5035516027814381406 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 5068047305911298084} - - component: {fileID: 8196490448318662594} - - component: {fileID: 1520880988292834122} - - component: {fileID: 3604932930598062230} - m_Layer: 0 - m_Name: PT_Modular_Gate_Wood_01_poles - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &5068047305911298084 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5035516027814381406} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0, y: 0.54287034, z: 0.13428672} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 8473401436184186866} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &8196490448318662594 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5035516027814381406} - m_Mesh: {fileID: 3886241089751330421, guid: be10e17a73c475f41849cedee3245fd3, type: 3} ---- !u!23 &1520880988292834122 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5035516027814381406} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!64 &3604932930598062230 -MeshCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5035516027814381406} - m_Material: {fileID: 0} - m_IsTrigger: 0 - m_Enabled: 1 - serializedVersion: 4 - m_Convex: 0 - m_CookingOptions: 30 - m_Mesh: {fileID: 3886241089751330421, guid: be10e17a73c475f41849cedee3245fd3, type: 3} ---- !u!1 &5626790512072660807 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 6623313103888285063} - - component: {fileID: 1035003424774475776} - - component: {fileID: 3361349212021973929} - - component: {fileID: 1419761003254930851} - m_Layer: 0 - m_Name: PT_Modular_Gate_Wood_01_left - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &6623313103888285063 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5626790512072660807} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 2.4809687, y: 0, z: 0.041369643} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 8473401436184186866} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &1035003424774475776 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5626790512072660807} - m_Mesh: {fileID: 4238070302162778027, guid: be10e17a73c475f41849cedee3245fd3, type: 3} ---- !u!23 &3361349212021973929 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5626790512072660807} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!64 &1419761003254930851 -MeshCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5626790512072660807} - m_Material: {fileID: 0} - m_IsTrigger: 0 - m_Enabled: 1 - serializedVersion: 4 - m_Convex: 0 - m_CookingOptions: 30 - m_Mesh: {fileID: 4238070302162778027, guid: be10e17a73c475f41849cedee3245fd3, type: 3} ---- !u!1 &8460096053075761733 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1532462554494580140} - - component: {fileID: 3850363110493023711} - - component: {fileID: 6352268068361208809} - - component: {fileID: 7327278516583927613} - m_Layer: 0 - m_Name: PT_Modular_Gate_Wood_01_right - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &1532462554494580140 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8460096053075761733} - m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -2.4791362, y: 0, z: 0.041369643} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 8473401436184186866} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &3850363110493023711 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8460096053075761733} - m_Mesh: {fileID: -9017605101076685768, guid: be10e17a73c475f41849cedee3245fd3, type: 3} ---- !u!23 &6352268068361208809 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8460096053075761733} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: d55b08511377b684395dab1b9fba6a16, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!64 &7327278516583927613 -MeshCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8460096053075761733} - m_Material: {fileID: 0} - m_IsTrigger: 0 - m_Enabled: 1 - serializedVersion: 4 - m_Convex: 0 - m_CookingOptions: 30 - m_Mesh: {fileID: -9017605101076685768, guid: be10e17a73c475f41849cedee3245fd3, type: 3} ---- !u!1 &8473401436184286162 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 8473401436184186866} - m_Layer: 0 - m_Name: PT_Modular_Gate_Wood_01 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &8473401436184186866 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8473401436184286162} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 6623313103888285063} - - {fileID: 5068047305911298084} - - {fileID: 1532462554494580140} - m_Father: {fileID: 0} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} diff --git a/Assets/TextMesh Pro/zyn_mat_sparkle_01_yellow_add.mat b/Assets/TextMesh Pro/zyn_mat_sparkle_01_yellow_add.mat new file mode 100644 index 0000000..ba21f3f --- /dev/null +++ b/Assets/TextMesh Pro/zyn_mat_sparkle_01_yellow_add.mat @@ -0,0 +1,110 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zyn_mat_sparkle_01_yellow_add + m_Shader: {fileID: -6465566751694194690, guid: bdd4a740ba7ce7f4483af96b00c8d331, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - DepthOnly + - SHADOWCASTER + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Base_Texture: + m_Texture: {fileID: 2800000, guid: c5171001128e728459b55a6e6d215fa7, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Color_Mask_Off_Texture: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Dissolve_Texture: + m_Texture: {fileID: 10307, guid: 0000000000000000f000000000000000, type: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Distortion_Noise: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Main_Texture: + m_Texture: {fileID: 2800000, guid: 06a2e824e154b8c4897d2b8f32106cda, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SampleTexture2D_91eb236b08d74d45afd474257513386c_Texture_1_Texture2D: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _base_texture: + m_Texture: {fileID: 2800000, guid: c5171001128e728459b55a6e6d215fa7, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _dissolve_texture: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BUILTIN_QueueControl: -1 + - _BUILTIN_QueueOffset: 0 + - _Blend: 2 + - _CastShadows: 0 + - _Cull: 2 + - _Depth_Fade_Factor: 0 + - _Distort: 0 + - _DstBlend: 1 + - _QueueControl: 0 + - _QueueOffset: 0 + - _SrcBlend: 5 + - _Surface: 1 + - _Vertex_Offset: 0 + - _ZTest: 4 + - _ZWrite: 0 + - _ZWriteControl: 0 + m_Colors: [] + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1025973707238412901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/TextMesh Pro/zyn_mat_sparkle_01_yellow_add.mat.meta b/Assets/TextMesh Pro/zyn_mat_sparkle_01_yellow_add.mat.meta new file mode 100644 index 0000000..60bb8fa --- /dev/null +++ b/Assets/TextMesh Pro/zyn_mat_sparkle_01_yellow_add.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: c61607cce79fc0942acbc0028806d987 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 337416 + packageName: Magic Circle VFX + packageVersion: 1.0.1 + assetPath: Assets/TextMesh Pro/zyn_mat_sparkle_01_yellow_add.mat + uploadId: 829394