Merge pull request #1 from Degulleo/DEG-28-몬스터-모델-생성-및-기본-스크립트-작성
DEG-28-몬스터-모델-생성-및-기본-스크립트-작성
This commit is contained in:
commit
f5feee033e
2
Assembly-CSharp.csproj.DotSettings
Normal file
2
Assembly-CSharp.csproj.DotSettings
Normal file
@ -0,0 +1,2 @@
|
||||
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
|
||||
<s:Boolean x:Key="/Default/CodeInspection/NamespaceProvider/NamespaceFoldersToSkip/=assets_005Cjyy_005Cscripts/@EntryIndexedValue">True</s:Boolean></wpf:ResourceDictionary>
|
8
Assets/JYY.meta
Normal file
8
Assets/JYY.meta
Normal file
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 1b5aeb9ba846be447b6d45e182831f68
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
8
Assets/JYY/Scenes.meta
Normal file
8
Assets/JYY/Scenes.meta
Normal file
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: e87ed3dcf8462724b967326234ad2fb7
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
3
Assets/JYY/Scenes/MonsterTest.unity
Normal file
3
Assets/JYY/Scenes/MonsterTest.unity
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e5c3fd6cb0241bd3da476e5c911552fc2fe06e6e12775af7da0145389a8ab1f2
|
||||
size 89686
|
7
Assets/JYY/Scenes/MonsterTest.unity.meta
Normal file
7
Assets/JYY/Scenes/MonsterTest.unity.meta
Normal file
@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: e0e8e0b53b5318e46a6ef95579551f9a
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
8
Assets/Scripts.meta
Normal file
8
Assets/Scripts.meta
Normal file
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: d71915ab89436f04291470c4877deb39
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
8
Assets/Scripts/Character.meta
Normal file
8
Assets/Scripts/Character.meta
Normal file
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 04daad0a5fd8ee441ac26c6addd95d0c
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
63
Assets/Scripts/Character/CharacterBase.cs
Normal file
63
Assets/Scripts/Character/CharacterBase.cs
Normal file
@ -0,0 +1,63 @@
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
public abstract class CharacterBase : MonoBehaviour
|
||||
{
|
||||
[Header("기본 능력치")]
|
||||
public string characterName; // 이름
|
||||
public int maxHP = 100; // 최대 체력
|
||||
public int currentHP; // 현재 체력
|
||||
public float attackPower = 10f; // 공격력
|
||||
public float defensePower = 5f; // 방어력
|
||||
public float moveSpeed = 5f; // 이동 속도
|
||||
public float gravity = -9.81f; // 중력
|
||||
|
||||
[Header("상태 이상")]
|
||||
public List<StatusEffect> statusEffects = new List<StatusEffect>();
|
||||
|
||||
protected virtual void Start()
|
||||
{
|
||||
currentHP = maxHP;
|
||||
}
|
||||
|
||||
public virtual void TakeDamage(float damage)
|
||||
{
|
||||
float actualDamage = Mathf.Max(0, damage - defensePower);
|
||||
currentHP -= Mathf.RoundToInt(actualDamage);
|
||||
Debug.Log($"{characterName}이 {actualDamage}의 피해를 입었습니다. 현재 체력: {currentHP}");
|
||||
|
||||
if (currentHP <= 0)
|
||||
{
|
||||
Die();
|
||||
}
|
||||
}
|
||||
|
||||
public virtual void Die()
|
||||
{
|
||||
Debug.Log($"{characterName}이 사망했습니다.");
|
||||
// TODO: 사망 처리
|
||||
}
|
||||
|
||||
// 상태이상 추가 메서드
|
||||
public virtual void AddStatusEffect(StatusEffect effect)
|
||||
{
|
||||
statusEffects.Add(effect);
|
||||
// TODO: 상태이상 처리 로직 추가
|
||||
}
|
||||
}
|
||||
|
||||
public abstract class StatusEffect
|
||||
{
|
||||
// 받는 피해 증가
|
||||
// 주는 피해 감소
|
||||
// 느려짐
|
||||
// 기절
|
||||
// 넉백
|
||||
|
||||
public string effectName;
|
||||
public float duration;
|
||||
|
||||
public virtual void ApplyEffect(CharacterBase target) {}
|
||||
public virtual void RemoveEffect(CharacterBase target) {}
|
||||
}
|
11
Assets/Scripts/Character/CharacterBase.cs.meta
Normal file
11
Assets/Scripts/Character/CharacterBase.cs.meta
Normal file
@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 4ca899178d924fa4e8de15831c666f22
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
8
Assets/StoreAssets/DogKnight.meta
Normal file
8
Assets/StoreAssets/DogKnight.meta
Normal file
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 701df9b2818326e448ab13832eb80557
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
9
Assets/StoreAssets/DogKnight/Animations.meta
Normal file
9
Assets/StoreAssets/DogKnight/Animations.meta
Normal file
@ -0,0 +1,9 @@
|
||||
fileFormatVersion: 2
|
||||
guid: acc95159d37cb8b49be0ca5f0bdc7fbe
|
||||
folderAsset: yes
|
||||
timeCreated: 1544585017
|
||||
licenseType: Store
|
||||
DefaultImporter:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
BIN
Assets/StoreAssets/DogKnight/Animations/Attack01.anim
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/DogKnight/Animations/Attack01.anim
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 6019f1b4a095b0b4396f5561a51fee89
|
||||
timeCreated: 1544605028
|
||||
licenseType: Store
|
||||
NativeFormatImporter:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
BIN
Assets/StoreAssets/DogKnight/Animations/Attack02.anim
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/DogKnight/Animations/Attack02.anim
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: eccbae3cfc77ad245ade46e143aa3200
|
||||
timeCreated: 1544605040
|
||||
licenseType: Store
|
||||
NativeFormatImporter:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
BIN
Assets/StoreAssets/DogKnight/Animations/Defend.anim
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/DogKnight/Animations/Defend.anim
(Stored with Git LFS)
Normal file
Binary file not shown.
8
Assets/StoreAssets/DogKnight/Animations/Defend.anim.meta
Normal file
8
Assets/StoreAssets/DogKnight/Animations/Defend.anim.meta
Normal file
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: cf357b5409b4ad54a82c45d7684564e1
|
||||
timeCreated: 1544607741
|
||||
licenseType: Store
|
||||
NativeFormatImporter:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
BIN
Assets/StoreAssets/DogKnight/Animations/Die.anim
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/DogKnight/Animations/Die.anim
(Stored with Git LFS)
Normal file
Binary file not shown.
8
Assets/StoreAssets/DogKnight/Animations/Die.anim.meta
Normal file
8
Assets/StoreAssets/DogKnight/Animations/Die.anim.meta
Normal file
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 5d190d8211c88a64281f7b90c69f3eb3
|
||||
timeCreated: 1544605073
|
||||
licenseType: Store
|
||||
NativeFormatImporter:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
3
Assets/StoreAssets/DogKnight/Animations/DieRecover.anim
Normal file
3
Assets/StoreAssets/DogKnight/Animations/DieRecover.anim
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a7eab6f2d54dd8af46d30b679d2319edd14456f988f5c674022bcf3bac2252df
|
||||
size 606894
|
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 4a3671dbe6670524b8b6d9ad3664c179
|
||||
timeCreated: 1544607752
|
||||
licenseType: Store
|
||||
NativeFormatImporter:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
BIN
Assets/StoreAssets/DogKnight/Animations/Dizzy.anim
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/DogKnight/Animations/Dizzy.anim
(Stored with Git LFS)
Normal file
Binary file not shown.
8
Assets/StoreAssets/DogKnight/Animations/Dizzy.anim.meta
Normal file
8
Assets/StoreAssets/DogKnight/Animations/Dizzy.anim.meta
Normal file
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 30d4fe7af77240a44b9354aaed8e5beb
|
||||
timeCreated: 1544607757
|
||||
licenseType: Store
|
||||
NativeFormatImporter:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
BIN
Assets/StoreAssets/DogKnight/Animations/GetHit.anim
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/DogKnight/Animations/GetHit.anim
(Stored with Git LFS)
Normal file
Binary file not shown.
8
Assets/StoreAssets/DogKnight/Animations/GetHit.anim.meta
Normal file
8
Assets/StoreAssets/DogKnight/Animations/GetHit.anim.meta
Normal file
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 1588532e68f51a040bda71c68cfab177
|
||||
timeCreated: 1544605085
|
||||
licenseType: Store
|
||||
NativeFormatImporter:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
BIN
Assets/StoreAssets/DogKnight/Animations/Idle_Battle.anim
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/DogKnight/Animations/Idle_Battle.anim
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: b79ff7bb68348be479d3db6b7fe8a569
|
||||
timeCreated: 1544605090
|
||||
licenseType: Store
|
||||
NativeFormatImporter:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
BIN
Assets/StoreAssets/DogKnight/Animations/RunForwardBattle.anim
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/DogKnight/Animations/RunForwardBattle.anim
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 9f0e03164414016409d28995a128ba98
|
||||
timeCreated: 1544605137
|
||||
licenseType: Store
|
||||
NativeFormatImporter:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
BIN
Assets/StoreAssets/DogKnight/Animations/WalkForwardBattle.anim
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/DogKnight/Animations/WalkForwardBattle.anim
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: f0c8c1d913b359a428b42d53947d3e93
|
||||
timeCreated: 1544607284
|
||||
licenseType: Store
|
||||
NativeFormatImporter:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
9
Assets/StoreAssets/DogKnight/Animator.meta
Normal file
9
Assets/StoreAssets/DogKnight/Animator.meta
Normal file
@ -0,0 +1,9 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 6bef64b21e5592046bb2b13e7fa806ee
|
||||
folderAsset: yes
|
||||
timeCreated: 1544585023
|
||||
licenseType: Store
|
||||
DefaultImporter:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:47307ab6d36849a6cf611ad9757b3a0ffffbefcb412847607c12a85f4126d93a
|
||||
size 14957
|
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: b60dc9aa529b314489f628aa3b57c470
|
||||
timeCreated: 1544605003
|
||||
licenseType: Store
|
||||
NativeFormatImporter:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
9
Assets/StoreAssets/DogKnight/Material.meta
Normal file
9
Assets/StoreAssets/DogKnight/Material.meta
Normal file
@ -0,0 +1,9 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 9728cb8ec5fa99441b90bfbaeab3521c
|
||||
folderAsset: yes
|
||||
timeCreated: 1544585029
|
||||
licenseType: Store
|
||||
DefaultImporter:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
BIN
Assets/StoreAssets/DogKnight/Material/PBR.mat
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/DogKnight/Material/PBR.mat
(Stored with Git LFS)
Normal file
Binary file not shown.
8
Assets/StoreAssets/DogKnight/Material/PBR.mat.meta
Normal file
8
Assets/StoreAssets/DogKnight/Material/PBR.mat.meta
Normal file
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: da05e49adf02c134f88f541992ee78d2
|
||||
timeCreated: 1540780855
|
||||
licenseType: Store
|
||||
NativeFormatImporter:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
BIN
Assets/StoreAssets/DogKnight/Material/Polyart.mat
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/DogKnight/Material/Polyart.mat
(Stored with Git LFS)
Normal file
Binary file not shown.
9
Assets/StoreAssets/DogKnight/Material/Polyart.mat.meta
Normal file
9
Assets/StoreAssets/DogKnight/Material/Polyart.mat.meta
Normal file
@ -0,0 +1,9 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 421140039854e8c42938a8cb73d3480c
|
||||
timeCreated: 1550838312
|
||||
licenseType: Store
|
||||
NativeFormatImporter:
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
BIN
Assets/StoreAssets/DogKnight/Material/Skybox_Mat.mat
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/DogKnight/Material/Skybox_Mat.mat
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 5f62bea3b5185c2488588e50d05df87f
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
BIN
Assets/StoreAssets/DogKnight/Material/Stage.mat
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/DogKnight/Material/Stage.mat
(Stored with Git LFS)
Normal file
Binary file not shown.
8
Assets/StoreAssets/DogKnight/Material/Stage.mat.meta
Normal file
8
Assets/StoreAssets/DogKnight/Material/Stage.mat.meta
Normal file
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 4cafe8a18bb8d2a4794bfd7693442026
|
||||
timeCreated: 1544609680
|
||||
licenseType: Store
|
||||
NativeFormatImporter:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
9
Assets/StoreAssets/DogKnight/Mesh.meta
Normal file
9
Assets/StoreAssets/DogKnight/Mesh.meta
Normal file
@ -0,0 +1,9 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 8dd9b69606bd3bd4f84c826ce6874603
|
||||
folderAsset: yes
|
||||
timeCreated: 1544585035
|
||||
licenseType: Store
|
||||
DefaultImporter:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
BIN
Assets/StoreAssets/DogKnight/Mesh/DogPBR.fbx
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/DogKnight/Mesh/DogPBR.fbx
(Stored with Git LFS)
Normal file
Binary file not shown.
909
Assets/StoreAssets/DogKnight/Mesh/DogPBR.fbx.meta
Normal file
909
Assets/StoreAssets/DogKnight/Mesh/DogPBR.fbx.meta
Normal file
@ -0,0 +1,909 @@
|
||||
fileFormatVersion: 2
|
||||
guid: d9a1483b77bf10e4e851678ab6c2e54e
|
||||
ModelImporter:
|
||||
serializedVersion: 23
|
||||
fileIDToRecycleName:
|
||||
100000: ball_l
|
||||
100002: ball_r
|
||||
100004: Body1
|
||||
100006: calf_l
|
||||
100008: calf_r
|
||||
100010: clavicle_l
|
||||
100012: clavicle_r
|
||||
100014: //RootNode
|
||||
100016: Dog01_l
|
||||
100018: Dog01_r
|
||||
100020: Dog02_l
|
||||
100022: Dog02_r
|
||||
100024: Dog03_l
|
||||
100026: Dog03_r
|
||||
100028: foot_l
|
||||
100030: foot_r
|
||||
100032: hand_l
|
||||
100034: hand_r
|
||||
100036: head
|
||||
100038: index_01_l
|
||||
100040: index_01_r
|
||||
100042: index_02_l
|
||||
100044: index_02_r
|
||||
100046: index_03_l
|
||||
100048: index_03_r
|
||||
100050: lowerarm_l
|
||||
100052: lowerarm_r
|
||||
100054: neck_01
|
||||
100056: Nose01
|
||||
100058: Nose02
|
||||
100060: pelvis
|
||||
100062: Rabit01_l
|
||||
100064: Rabit01_r
|
||||
100066: Rabit02_l
|
||||
100068: Rabit02_r
|
||||
100070: Rabit03_l
|
||||
100072: Rabit03_r
|
||||
100074: Rat
|
||||
100076: Rat01_l
|
||||
100078: Rat01_r
|
||||
100080: Rat02_l
|
||||
100082: Rat02_r
|
||||
100084: ring_01_l
|
||||
100086: ring_01_r
|
||||
100088: ring_02_l
|
||||
100090: ring_02_r
|
||||
100092: ring_03_l
|
||||
100094: ring_03_r
|
||||
100096: root
|
||||
100098: Shield
|
||||
100100: ShoulderPad_l
|
||||
100102: ShoulderPad_r
|
||||
100104: spine_01
|
||||
100106: spine_02
|
||||
100108: spine_03
|
||||
100110: Tail01
|
||||
100112: Tail02
|
||||
100114: Tail03
|
||||
100116: Tail04
|
||||
100118: Tail05
|
||||
100120: thigh_l
|
||||
100122: thigh_r
|
||||
100124: thumb_01_l
|
||||
100126: thumb_01_r
|
||||
100128: thumb_02_l
|
||||
100130: thumb_02_r
|
||||
100132: thumb_03_l
|
||||
100134: thumb_03_r
|
||||
100136: upperarm_l
|
||||
100138: upperarm_r
|
||||
100140: Weapon
|
||||
100142: polySurface1
|
||||
400000: ball_l
|
||||
400002: ball_r
|
||||
400004: Body1
|
||||
400006: calf_l
|
||||
400008: calf_r
|
||||
400010: clavicle_l
|
||||
400012: clavicle_r
|
||||
400014: //RootNode
|
||||
400016: Dog01_l
|
||||
400018: Dog01_r
|
||||
400020: Dog02_l
|
||||
400022: Dog02_r
|
||||
400024: Dog03_l
|
||||
400026: Dog03_r
|
||||
400028: foot_l
|
||||
400030: foot_r
|
||||
400032: hand_l
|
||||
400034: hand_r
|
||||
400036: head
|
||||
400038: index_01_l
|
||||
400040: index_01_r
|
||||
400042: index_02_l
|
||||
400044: index_02_r
|
||||
400046: index_03_l
|
||||
400048: index_03_r
|
||||
400050: lowerarm_l
|
||||
400052: lowerarm_r
|
||||
400054: neck_01
|
||||
400056: Nose01
|
||||
400058: Nose02
|
||||
400060: pelvis
|
||||
400062: Rabit01_l
|
||||
400064: Rabit01_r
|
||||
400066: Rabit02_l
|
||||
400068: Rabit02_r
|
||||
400070: Rabit03_l
|
||||
400072: Rabit03_r
|
||||
400074: Rat
|
||||
400076: Rat01_l
|
||||
400078: Rat01_r
|
||||
400080: Rat02_l
|
||||
400082: Rat02_r
|
||||
400084: ring_01_l
|
||||
400086: ring_01_r
|
||||
400088: ring_02_l
|
||||
400090: ring_02_r
|
||||
400092: ring_03_l
|
||||
400094: ring_03_r
|
||||
400096: root
|
||||
400098: Shield
|
||||
400100: ShoulderPad_l
|
||||
400102: ShoulderPad_r
|
||||
400104: spine_01
|
||||
400106: spine_02
|
||||
400108: spine_03
|
||||
400110: Tail01
|
||||
400112: Tail02
|
||||
400114: Tail03
|
||||
400116: Tail04
|
||||
400118: Tail05
|
||||
400120: thigh_l
|
||||
400122: thigh_r
|
||||
400124: thumb_01_l
|
||||
400126: thumb_01_r
|
||||
400128: thumb_02_l
|
||||
400130: thumb_02_r
|
||||
400132: thumb_03_l
|
||||
400134: thumb_03_r
|
||||
400136: upperarm_l
|
||||
400138: upperarm_r
|
||||
400140: Weapon
|
||||
400142: polySurface1
|
||||
4300000: Body1
|
||||
4300002: Rat
|
||||
4300004: polySurface1
|
||||
9500000: //RootNode
|
||||
13700000: Body1
|
||||
13700002: Rat
|
||||
13700004: polySurface1
|
||||
externalObjects: {}
|
||||
materials:
|
||||
importMaterials: 0
|
||||
materialName: 0
|
||||
materialSearch: 1
|
||||
materialLocation: 0
|
||||
animations:
|
||||
legacyGenerateAnimations: 4
|
||||
bakeSimulation: 0
|
||||
resampleCurves: 1
|
||||
optimizeGameObjects: 0
|
||||
motionNodeName:
|
||||
rigImportErrors:
|
||||
rigImportWarnings:
|
||||
animationImportErrors:
|
||||
animationImportWarnings:
|
||||
animationRetargetingWarnings:
|
||||
animationDoRetargetingWarnings: 0
|
||||
importAnimatedCustomProperties: 0
|
||||
importConstraints: 0
|
||||
animationCompression: 3
|
||||
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: 0
|
||||
importBlendShapes: 1
|
||||
importCameras: 0
|
||||
importLights: 0
|
||||
swapUVChannels: 0
|
||||
generateSecondaryUV: 0
|
||||
useFileUnits: 1
|
||||
optimizeMeshForGPU: 1
|
||||
keepQuads: 0
|
||||
weldVertices: 1
|
||||
preserveHierarchy: 0
|
||||
indexFormat: 1
|
||||
secondaryUVAngleDistortion: 8
|
||||
secondaryUVAreaDistortion: 15.000001
|
||||
secondaryUVHardAngle: 88
|
||||
secondaryUVPackMargin: 4
|
||||
useFileScale: 1
|
||||
previousCalculatedGlobalScale: 0.01
|
||||
hasPreviousCalculatedGlobalScale: 1
|
||||
tangentSpace:
|
||||
normalSmoothAngle: 60
|
||||
normalImportMode: 0
|
||||
tangentImportMode: 3
|
||||
normalCalculationMode: 4
|
||||
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 1
|
||||
blendShapeNormalImportMode: 1
|
||||
normalSmoothingSource: 0
|
||||
importAnimation: 0
|
||||
copyAvatar: 0
|
||||
humanDescription:
|
||||
serializedVersion: 2
|
||||
human:
|
||||
- boneName: pelvis
|
||||
humanName: Hips
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: thigh_l
|
||||
humanName: LeftUpperLeg
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: thigh_r
|
||||
humanName: RightUpperLeg
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: calf_l
|
||||
humanName: LeftLowerLeg
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: calf_r
|
||||
humanName: RightLowerLeg
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: foot_l
|
||||
humanName: LeftFoot
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: foot_r
|
||||
humanName: RightFoot
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: spine_01
|
||||
humanName: Spine
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: spine_02
|
||||
humanName: Chest
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: neck_01
|
||||
humanName: Neck
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: head
|
||||
humanName: Head
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: clavicle_l
|
||||
humanName: LeftShoulder
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: clavicle_r
|
||||
humanName: RightShoulder
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: upperarm_l
|
||||
humanName: LeftUpperArm
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: upperarm_r
|
||||
humanName: RightUpperArm
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: lowerarm_l
|
||||
humanName: LeftLowerArm
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: lowerarm_r
|
||||
humanName: RightLowerArm
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: hand_l
|
||||
humanName: LeftHand
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: hand_r
|
||||
humanName: RightHand
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: ball_l
|
||||
humanName: LeftToes
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: ball_r
|
||||
humanName: RightToes
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: thumb_01_l
|
||||
humanName: Left Thumb Proximal
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: thumb_02_l
|
||||
humanName: Left Thumb Intermediate
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: thumb_03_l
|
||||
humanName: Left Thumb Distal
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: index_01_l
|
||||
humanName: Left Index Proximal
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: index_02_l
|
||||
humanName: Left Index Intermediate
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: index_03_l
|
||||
humanName: Left Index Distal
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: ring_01_l
|
||||
humanName: Left Ring Proximal
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: ring_02_l
|
||||
humanName: Left Ring Intermediate
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: ring_03_l
|
||||
humanName: Left Ring Distal
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: thumb_01_r
|
||||
humanName: Right Thumb Proximal
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: thumb_02_r
|
||||
humanName: Right Thumb Intermediate
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: thumb_03_r
|
||||
humanName: Right Thumb Distal
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: index_01_r
|
||||
humanName: Right Index Proximal
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: index_02_r
|
||||
humanName: Right Index Intermediate
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: index_03_r
|
||||
humanName: Right Index Distal
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: ring_01_r
|
||||
humanName: Right Ring Proximal
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: ring_02_r
|
||||
humanName: Right Ring Intermediate
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: ring_03_r
|
||||
humanName: Right Ring Distal
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
skeleton:
|
||||
- name: DefaultMouse(Clone)
|
||||
parentName:
|
||||
position: {x: 0, y: 0, z: 0}
|
||||
rotation: {x: 0, y: 0, z: 0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Body1
|
||||
parentName: DefaultMouse(Clone)
|
||||
position: {x: -0, y: 0, z: 0}
|
||||
rotation: {x: -0.7071068, y: 0, z: -0, w: 0.7071068}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Rat
|
||||
parentName: DefaultMouse(Clone)
|
||||
position: {x: -0, y: 0.4321675, z: -1.0839412}
|
||||
rotation: {x: -0.7071068, y: 0, z: -0, w: 0.7071068}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: root
|
||||
parentName: DefaultMouse(Clone)
|
||||
position: {x: -0, y: 0, z: 0}
|
||||
rotation: {x: -0.7071068, y: 0, z: -0, w: 0.7071068}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: pelvis
|
||||
parentName: root
|
||||
position: {x: 7.33889e-17, y: 0.023199638, z: 0.2717067}
|
||||
rotation: {x: 0.0019436182, y: 0.70710415, z: 0.0019436182, w: 0.70710415}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: spine_01
|
||||
parentName: pelvis
|
||||
position: {x: -0.11432394, y: -0.009892768, z: 1.7044286e-17}
|
||||
rotation: {x: -6.980227e-18, y: 4.2070543e-19, z: 0.06411279, w: 0.9979427}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: spine_02
|
||||
parentName: spine_01
|
||||
position: {x: -0.1186689, y: 0.020425145, z: 3.4389898e-17}
|
||||
rotation: {x: 1.0348103e-18, y: -1.6696561e-16, z: -0.1185224, w: 0.9929514}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: spine_03
|
||||
parentName: spine_02
|
||||
position: {x: -0.11615697, y: 0.002283617, z: 6.341153e-17}
|
||||
rotation: {x: 2.8063978e-17, y: -1.6605644e-16, z: -0.04006483, w: 0.99919707}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: neck_01
|
||||
parentName: spine_03
|
||||
position: {x: -0.15768303, y: -0.023169318, z: 4.8567466e-17}
|
||||
rotation: {x: -4.4965862e-17, y: -4.0178776e-18, z: 0.13197342, w: 0.99125326}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: head
|
||||
parentName: neck_01
|
||||
position: {x: -0.18595001, y: -0.024134459, z: 5.84891e-17}
|
||||
rotation: {x: 0, y: 0, z: -0.040376835, w: 0.99918455}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Nose01
|
||||
parentName: head
|
||||
position: {x: -0.060137894, y: -0.30975625, z: 6.5145675e-17}
|
||||
rotation: {x: 0, y: 0, z: 0.5383473, w: 0.8427231}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Nose02
|
||||
parentName: Nose01
|
||||
position: {x: -0.056590676, y: -1.4210854e-16, z: -1.8932661e-31}
|
||||
rotation: {x: -0.23048592, y: -0.6684881, z: -0.23048592, w: 0.6684881}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Rat01_l
|
||||
parentName: head
|
||||
position: {x: -0.13691087, y: 0.07964638, z: -0.14902727}
|
||||
rotation: {x: -0.37457773, y: -0.6996655, z: 0.10231422, w: 0.5997429}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Rat02_l
|
||||
parentName: Rat01_l
|
||||
position: {x: 0.009744652, y: 0.111690655, z: 0.12636532}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Dog01_l
|
||||
parentName: head
|
||||
position: {x: -0.18350182, y: 0.08138738, z: -0.103089064}
|
||||
rotation: {x: 0.01143154, y: -0.7555581, z: 0.009908698, w: 0.654907}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Dog02_l
|
||||
parentName: Dog01_l
|
||||
position: {x: -0, y: 1.0658141e-16, z: 0.09881902}
|
||||
rotation: {x: 0.082184434, y: 0.70231456, z: 0.082184434, w: 0.70231456}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Dog03_l
|
||||
parentName: Dog02_l
|
||||
position: {x: -0.1174944, y: 1.4210854e-16, z: -2.6645352e-17}
|
||||
rotation: {x: -0.082184434, y: -0.70231456, z: -0.082184434, w: 0.70231456}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Rabit01_l
|
||||
parentName: head
|
||||
position: {x: -0.1494289, y: 0.11852971, z: -0.08717348}
|
||||
rotation: {x: -0.08705785, y: -0.16266909, z: -0.4637573, w: 0.86653847}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Rabit02_l
|
||||
parentName: Rabit01_l
|
||||
position: {x: -0.23753135, y: 8.5265126e-16, z: 1.4210854e-16}
|
||||
rotation: {x: 0, y: 0, z: -0.015549913, w: 0.9998791}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Rabit03_l
|
||||
parentName: Rabit02_l
|
||||
position: {x: -0.24194758, y: -2.842171e-16, z: 0}
|
||||
rotation: {x: 0.343308, y: -0.61817443, z: 0.343308, w: 0.61817443}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Rat01_r
|
||||
parentName: head
|
||||
position: {x: -0.13691002, y: 0.0796464, z: 0.149027}
|
||||
rotation: {x: 0.6996655, y: -0.37457773, z: 0.5997429, w: -0.102314204}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Rat02_r
|
||||
parentName: Rat01_r
|
||||
position: {x: -0.009744925, y: -0.11169093, z: -0.12636535}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Dog01_r
|
||||
parentName: head
|
||||
position: {x: -0.18350002, y: 0.0813874, z: 0.103089}
|
||||
rotation: {x: 0.7555581, y: 0.01143154, z: 0.654907, w: -0.009908698}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Dog02_r
|
||||
parentName: Dog01_r
|
||||
position: {x: 0.00000038030342, y: 0.00000011595426, z: -0.09881613}
|
||||
rotation: {x: 0.082184434, y: 0.70231456, z: 0.082184434, w: 0.70231456}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Dog03_r
|
||||
parentName: Dog02_r
|
||||
position: {x: 0.11749515, y: -0.00000025022345, z: -0.00000025208118}
|
||||
rotation: {x: -0.082184434, y: -0.70231456, z: -0.082184434, w: 0.70231456}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Rabit01_r
|
||||
parentName: head
|
||||
position: {x: -0.14943, y: 0.118529506, z: 0.0871735}
|
||||
rotation: {x: 0.16266909, y: -0.08705785, z: 0.86653847, w: 0.4637573}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Rabit02_r
|
||||
parentName: Rabit01_r
|
||||
position: {x: 0.23753238, y: 0.0000011094004, z: -0.00000031643373}
|
||||
rotation: {x: 0, y: 0, z: -0.015549913, w: 0.9998791}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Rabit03_r
|
||||
parentName: Rabit02_r
|
||||
position: {x: 0.24194717, y: -0.00000090337085, z: -0.00000047240744}
|
||||
rotation: {x: 0.343308, y: -0.61817443, z: 0.343308, w: 0.61817443}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: clavicle_l
|
||||
parentName: spine_03
|
||||
position: {x: -0.08977397, y: -0.0388776, z: -0.10642209}
|
||||
rotation: {x: 0.15998697, y: -0.7459689, z: -0.01766271, w: 0.64623725}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: upperarm_l
|
||||
parentName: clavicle_l
|
||||
position: {x: -0.15521362, y: 1.0658141e-16, z: 4.2632563e-16}
|
||||
rotation: {x: -0.016182095, y: 0.08095038, z: 0.109649286, w: 0.99053633}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: lowerarm_l
|
||||
parentName: upperarm_l
|
||||
position: {x: -0.21140571, y: 0.0020677857, z: 4.2632563e-16}
|
||||
rotation: {x: 0, y: 0, z: 0.010152468, w: 0.9999485}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: hand_l
|
||||
parentName: lowerarm_l
|
||||
position: {x: -0.18514626, y: -0.00482675, z: -0.00011951752}
|
||||
rotation: {x: -0.70178133, y: 0.0026466702, z: -0.0007692234, w: 0.71238714}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: thumb_01_l
|
||||
parentName: hand_l
|
||||
position: {x: -0.047104318, y: 0.023203261, z: -0.056340285}
|
||||
rotation: {x: 0.50221115, y: -0.387253, z: 0.1699036, w: 0.754289}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: thumb_02_l
|
||||
parentName: thumb_01_l
|
||||
position: {x: -0.04241225, y: -1.2434498e-16, z: -1.4210854e-16}
|
||||
rotation: {x: 0.059652068, y: 0.019440405, z: -0.035889316, w: 0.99738437}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: thumb_03_l
|
||||
parentName: thumb_02_l
|
||||
position: {x: -0.047298487, y: -0.00032638563, z: 0.0001019219}
|
||||
rotation: {x: 0.01478177, y: -0.030982837, z: -0.08152062, w: 0.9960803}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: index_01_l
|
||||
parentName: hand_l
|
||||
position: {x: -0.106966905, y: -0.031950507, z: -0.04524321}
|
||||
rotation: {x: 0.08184936, y: 0.0059013455, z: 0.010983809, w: 0.9965667}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: index_02_l
|
||||
parentName: index_01_l
|
||||
position: {x: -0.060072307, y: 0.00467801, z: 0.0034518028}
|
||||
rotation: {x: 0.0069556003, y: 0.003193588, z: -0.052581947, w: 0.9985873}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: index_03_l
|
||||
parentName: index_02_l
|
||||
position: {x: -0.039459866, y: -0.00060846546, z: 0.0011372627}
|
||||
rotation: {x: 0.014050877, y: -0.016224818, z: 0.014749223, w: 0.99966085}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: ring_01_l
|
||||
parentName: hand_l
|
||||
position: {x: -0.10911825, y: -0.032612264, z: 0.0107481545}
|
||||
rotation: {x: -0.0022036482, y: 0.004168381, z: -0.022912893, w: 0.99972636}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: ring_02_l
|
||||
parentName: ring_01_l
|
||||
position: {x: -0.057522308, y: -0.0022442401, z: -0.0006415059}
|
||||
rotation: {x: 0.017940473, y: 0.009724062, z: -0.01808565, w: 0.9996282}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: ring_03_l
|
||||
parentName: ring_02_l
|
||||
position: {x: -0.04316089, y: -0.0024548052, z: -0.0026254496}
|
||||
rotation: {x: -0.0020952122, y: -0.009489396, z: 0.0024848802, w: 0.9999497}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: ShoulderPad_l
|
||||
parentName: upperarm_l
|
||||
position: {x: -0.081999995, y: 0.002, z: 0.083}
|
||||
rotation: {x: 0, y: 0, z: 0.009515045, w: 0.99995476}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: clavicle_r
|
||||
parentName: spine_03
|
||||
position: {x: -0.089773625, y: -0.038877536, z: 0.106422}
|
||||
rotation: {x: 0.7459689, y: 0.15998697, z: 0.64623725, w: 0.01766271}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: upperarm_r
|
||||
parentName: clavicle_r
|
||||
position: {x: 0.15521318, y: -0.00000010294632, z: -0.00000059972376}
|
||||
rotation: {x: -0.016205123, y: 0.080947444, z: 0.10965116, w: 0.990536}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: lowerarm_r
|
||||
parentName: upperarm_r
|
||||
position: {x: 0.21140663, y: -0.0020677692, z: -5.684342e-16}
|
||||
rotation: {x: 0, y: 0, z: 0.010152468, w: 0.9999485}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: hand_r
|
||||
parentName: lowerarm_r
|
||||
position: {x: 0.1851453, y: 0.004826761, z: 0.00012}
|
||||
rotation: {x: -0.70176476, y: 0.0026466139, z: -0.00076921494, w: 0.7124034}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: thumb_01_r
|
||||
parentName: hand_r
|
||||
position: {x: 0.047104906, y: -0.023203561, z: 0.056340273}
|
||||
rotation: {x: 0.5022116, y: -0.38725376, z: 0.16990183, w: 0.75428873}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: thumb_02_r
|
||||
parentName: thumb_01_r
|
||||
position: {x: 0.04241207, y: 0.0000001664043, z: -0.0000001201821}
|
||||
rotation: {x: 0.059652284, y: 0.0194402, z: -0.035890378, w: 0.99738437}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: thumb_03_r
|
||||
parentName: thumb_02_r
|
||||
position: {x: 0.047298215, y: 0.00032664675, z: -0.00010212635}
|
||||
rotation: {x: 0.01478177, y: -0.030982837, z: -0.08152062, w: 0.9960803}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: index_01_r
|
||||
parentName: hand_r
|
||||
position: {x: 0.106967345, y: 0.031950988, z: 0.045243192}
|
||||
rotation: {x: 0.08184936, y: 0.0059013455, z: 0.010983809, w: 0.9965667}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: index_02_r
|
||||
parentName: index_01_r
|
||||
position: {x: 0.060072105, y: -0.0046781716, z: -0.0034517753}
|
||||
rotation: {x: 0.0069556003, y: 0.003193588, z: -0.052581947, w: 0.9985873}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: index_03_r
|
||||
parentName: index_02_r
|
||||
position: {x: 0.039459746, y: 0.0006082239, z: -0.0011372312}
|
||||
rotation: {x: 0.014050877, y: -0.016224818, z: 0.014749223, w: 0.99966085}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: ring_01_r
|
||||
parentName: hand_r
|
||||
position: {x: 0.10911854, y: 0.03261257, z: -0.010748135}
|
||||
rotation: {x: -0.0022036482, y: 0.004168381, z: -0.022912893, w: 0.99972636}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: ring_02_r
|
||||
parentName: ring_01_r
|
||||
position: {x: 0.05752217, y: 0.0022442776, z: 0.0006414931}
|
||||
rotation: {x: 0.017940473, y: 0.009724062, z: -0.01808565, w: 0.9996282}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: ring_03_r
|
||||
parentName: ring_02_r
|
||||
position: {x: 0.043161742, y: 0.0024542476, z: 0.0026255096}
|
||||
rotation: {x: -0.0020952122, y: -0.009489396, z: 0.0024848802, w: 0.9999497}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: ShoulderPad_r
|
||||
parentName: upperarm_r
|
||||
position: {x: 0.081999995, y: -0.002, z: -0.083}
|
||||
rotation: {x: 0.000000010536235, y: 1.00257296e-10, z: 0.009515045, w: 0.99995476}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: thigh_l
|
||||
parentName: pelvis
|
||||
position: {x: 0.022199383, y: 0.008744767, z: -0.10806942}
|
||||
rotation: {x: -0.018547952, y: 0.037179936, z: -0.008849067, w: 0.9990972}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: calf_l
|
||||
parentName: thigh_l
|
||||
position: {x: 0.10403038, y: -0.0036481472, z: 0.0008584225}
|
||||
rotation: {x: -0.024624275, y: -0.0030814162, z: 0.0982936, w: 0.994848}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: foot_l
|
||||
parentName: calf_l
|
||||
position: {x: 0.10713632, y: -0.0052270168, z: 0.001269436}
|
||||
rotation: {x: 0.035581596, y: -0.032810636, z: -0.09361462, w: 0.9944314}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: ball_l
|
||||
parentName: foot_l
|
||||
position: {x: 0.017557085, y: -0.12076911, z: -0.01977553}
|
||||
rotation: {x: 0.0030611525, y: -0.008212709, z: 0.7100026, w: 0.70414454}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Tail05
|
||||
parentName: pelvis
|
||||
position: {x: -0.02187072, y: 0.16057724, z: -7.600249e-17}
|
||||
rotation: {x: -0.6989689, y: 0.7151521, z: 2.0258609e-16, w: -1.9800177e-16}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Tail04
|
||||
parentName: Tail05
|
||||
position: {x: -0.22412255, y: 5.684342e-16, z: -4.9765204e-17}
|
||||
rotation: {x: 0.973746, y: -0.22763745, z: -1.3938774e-17, w: 5.9624754e-17}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Tail03
|
||||
parentName: Tail04
|
||||
position: {x: -0.20047836, y: 5.32907e-16, z: 2.0167153e-17}
|
||||
rotation: {x: 0, y: 0, z: 0.19303113, w: 0.98119265}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Tail02
|
||||
parentName: Tail03
|
||||
position: {x: -0.15309824, y: -3.1974422e-16, z: -1.01003724e-17}
|
||||
rotation: {x: 0, y: 0, z: -0.20674652, w: 0.97839457}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Tail01
|
||||
parentName: Tail02
|
||||
position: {x: -0.18719168, y: -2.4868996e-16, z: 2.1023629e-17}
|
||||
rotation: {x: 0.38658842, y: -0.5920721, z: 0.38658842, w: 0.5920721}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Shield
|
||||
parentName: pelvis
|
||||
position: {x: -0.4107887, y: 0.022665631, z: -0.7565539}
|
||||
rotation: {x: -0.0019436182, y: -0.70710415, z: -0.0019436182, w: 0.70710415}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Weapon
|
||||
parentName: pelvis
|
||||
position: {x: -0.41078886, y: 0.022665657, z: 0.756554}
|
||||
rotation: {x: 0.70710415, y: -0.0019436182, z: 0.70710415, w: 0.0019436182}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: thigh_r
|
||||
parentName: pelvis
|
||||
position: {x: 0.02219912, y: 0.008744755, z: 0.108068995}
|
||||
rotation: {x: -0.037179276, y: -0.018561244, z: 0.99909705, w: 0.008848718}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: calf_r
|
||||
parentName: thigh_r
|
||||
position: {x: -0.10403116, y: 0.0036480732, z: -0.00085796614}
|
||||
rotation: {x: -0.024624275, y: -0.0030814162, z: 0.0982936, w: 0.994848}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: foot_r
|
||||
parentName: calf_r
|
||||
position: {x: -0.10713582, y: 0.0052269846, z: -0.0012694859}
|
||||
rotation: {x: 0.035594884, y: -0.032811232, z: -0.09361494, w: 0.99443084}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: ball_r
|
||||
parentName: foot_r
|
||||
position: {x: -0.01755713, y: 0.12076904, z: 0.019775553}
|
||||
rotation: {x: 0.0030611525, y: -0.008212709, z: 0.7100026, w: 0.70414454}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
armTwist: 0.5
|
||||
foreArmTwist: 0.5
|
||||
upperLegTwist: 0.5
|
||||
legTwist: 0.5
|
||||
armStretch: 0.05
|
||||
legStretch: 0.05
|
||||
feetSpacing: 0
|
||||
rootMotionBoneName:
|
||||
hasTranslationDoF: 0
|
||||
hasExtraRoot: 1
|
||||
skeletonHasParents: 1
|
||||
lastHumanDescriptionAvatarSource: {instanceID: 0}
|
||||
animationType: 3
|
||||
humanoidOversampling: 1
|
||||
additionalBone: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
BIN
Assets/StoreAssets/DogKnight/Mesh/DogPolyart.fbx
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/DogKnight/Mesh/DogPolyart.fbx
(Stored with Git LFS)
Normal file
Binary file not shown.
909
Assets/StoreAssets/DogKnight/Mesh/DogPolyart.fbx.meta
Normal file
909
Assets/StoreAssets/DogKnight/Mesh/DogPolyart.fbx.meta
Normal file
@ -0,0 +1,909 @@
|
||||
fileFormatVersion: 2
|
||||
guid: a58d63122b09e9144938cd6a1ece4824
|
||||
ModelImporter:
|
||||
serializedVersion: 23
|
||||
fileIDToRecycleName:
|
||||
100000: ball_l
|
||||
100002: ball_r
|
||||
100004: Body1
|
||||
100006: calf_l
|
||||
100008: calf_r
|
||||
100010: clavicle_l
|
||||
100012: clavicle_r
|
||||
100014: Dog01_l
|
||||
100016: Dog01_r
|
||||
100018: Dog02_l
|
||||
100020: Dog02_r
|
||||
100022: Dog03_l
|
||||
100024: Dog03_r
|
||||
100026: foot_l
|
||||
100028: foot_r
|
||||
100030: hand_l
|
||||
100032: hand_r
|
||||
100034: head
|
||||
100036: index_01_l
|
||||
100038: index_01_r
|
||||
100040: index_02_l
|
||||
100042: index_02_r
|
||||
100044: index_03_l
|
||||
100046: index_03_r
|
||||
100048: lowerarm_l
|
||||
100050: lowerarm_r
|
||||
100052: neck_01
|
||||
100054: Nose01
|
||||
100056: Nose02
|
||||
100058: pelvis
|
||||
100060: //RootNode
|
||||
100062: Rabit01_l
|
||||
100064: Rabit01_r
|
||||
100066: Rabit02_l
|
||||
100068: Rabit02_r
|
||||
100070: Rabit03_l
|
||||
100072: Rabit03_r
|
||||
100074: Rat
|
||||
100076: Rat01_l
|
||||
100078: Rat01_r
|
||||
100080: Rat02_l
|
||||
100082: Rat02_r
|
||||
100084: ring_01_l
|
||||
100086: ring_01_r
|
||||
100088: ring_02_l
|
||||
100090: ring_02_r
|
||||
100092: ring_03_l
|
||||
100094: ring_03_r
|
||||
100096: root
|
||||
100098: Shield
|
||||
100100: ShoulderPad_l
|
||||
100102: ShoulderPad_r
|
||||
100104: spine_01
|
||||
100106: spine_02
|
||||
100108: spine_03
|
||||
100110: Tail01
|
||||
100112: Tail02
|
||||
100114: Tail03
|
||||
100116: Tail04
|
||||
100118: Tail05
|
||||
100120: thigh_l
|
||||
100122: thigh_r
|
||||
100124: thumb_01_l
|
||||
100126: thumb_01_r
|
||||
100128: thumb_02_l
|
||||
100130: thumb_02_r
|
||||
100132: thumb_03_l
|
||||
100134: thumb_03_r
|
||||
100136: upperarm_l
|
||||
100138: upperarm_r
|
||||
100140: Weapon
|
||||
100142: polySurface1
|
||||
400000: ball_l
|
||||
400002: ball_r
|
||||
400004: Body1
|
||||
400006: calf_l
|
||||
400008: calf_r
|
||||
400010: clavicle_l
|
||||
400012: clavicle_r
|
||||
400014: Dog01_l
|
||||
400016: Dog01_r
|
||||
400018: Dog02_l
|
||||
400020: Dog02_r
|
||||
400022: Dog03_l
|
||||
400024: Dog03_r
|
||||
400026: foot_l
|
||||
400028: foot_r
|
||||
400030: hand_l
|
||||
400032: hand_r
|
||||
400034: head
|
||||
400036: index_01_l
|
||||
400038: index_01_r
|
||||
400040: index_02_l
|
||||
400042: index_02_r
|
||||
400044: index_03_l
|
||||
400046: index_03_r
|
||||
400048: lowerarm_l
|
||||
400050: lowerarm_r
|
||||
400052: neck_01
|
||||
400054: Nose01
|
||||
400056: Nose02
|
||||
400058: pelvis
|
||||
400060: //RootNode
|
||||
400062: Rabit01_l
|
||||
400064: Rabit01_r
|
||||
400066: Rabit02_l
|
||||
400068: Rabit02_r
|
||||
400070: Rabit03_l
|
||||
400072: Rabit03_r
|
||||
400074: Rat
|
||||
400076: Rat01_l
|
||||
400078: Rat01_r
|
||||
400080: Rat02_l
|
||||
400082: Rat02_r
|
||||
400084: ring_01_l
|
||||
400086: ring_01_r
|
||||
400088: ring_02_l
|
||||
400090: ring_02_r
|
||||
400092: ring_03_l
|
||||
400094: ring_03_r
|
||||
400096: root
|
||||
400098: Shield
|
||||
400100: ShoulderPad_l
|
||||
400102: ShoulderPad_r
|
||||
400104: spine_01
|
||||
400106: spine_02
|
||||
400108: spine_03
|
||||
400110: Tail01
|
||||
400112: Tail02
|
||||
400114: Tail03
|
||||
400116: Tail04
|
||||
400118: Tail05
|
||||
400120: thigh_l
|
||||
400122: thigh_r
|
||||
400124: thumb_01_l
|
||||
400126: thumb_01_r
|
||||
400128: thumb_02_l
|
||||
400130: thumb_02_r
|
||||
400132: thumb_03_l
|
||||
400134: thumb_03_r
|
||||
400136: upperarm_l
|
||||
400138: upperarm_r
|
||||
400140: Weapon
|
||||
400142: polySurface1
|
||||
4300000: Body1
|
||||
4300002: Rat
|
||||
4300004: polySurface1
|
||||
9500000: //RootNode
|
||||
13700000: Body1
|
||||
13700002: Rat
|
||||
13700004: polySurface1
|
||||
externalObjects: {}
|
||||
materials:
|
||||
importMaterials: 0
|
||||
materialName: 0
|
||||
materialSearch: 1
|
||||
materialLocation: 0
|
||||
animations:
|
||||
legacyGenerateAnimations: 4
|
||||
bakeSimulation: 0
|
||||
resampleCurves: 1
|
||||
optimizeGameObjects: 0
|
||||
motionNodeName:
|
||||
rigImportErrors:
|
||||
rigImportWarnings:
|
||||
animationImportErrors:
|
||||
animationImportWarnings:
|
||||
animationRetargetingWarnings:
|
||||
animationDoRetargetingWarnings: 0
|
||||
importAnimatedCustomProperties: 0
|
||||
importConstraints: 0
|
||||
animationCompression: 3
|
||||
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: 0
|
||||
importBlendShapes: 1
|
||||
importCameras: 0
|
||||
importLights: 0
|
||||
swapUVChannels: 0
|
||||
generateSecondaryUV: 0
|
||||
useFileUnits: 1
|
||||
optimizeMeshForGPU: 1
|
||||
keepQuads: 0
|
||||
weldVertices: 1
|
||||
preserveHierarchy: 0
|
||||
indexFormat: 1
|
||||
secondaryUVAngleDistortion: 8
|
||||
secondaryUVAreaDistortion: 15.000001
|
||||
secondaryUVHardAngle: 88
|
||||
secondaryUVPackMargin: 4
|
||||
useFileScale: 1
|
||||
previousCalculatedGlobalScale: 0.01
|
||||
hasPreviousCalculatedGlobalScale: 1
|
||||
tangentSpace:
|
||||
normalSmoothAngle: 60
|
||||
normalImportMode: 0
|
||||
tangentImportMode: 3
|
||||
normalCalculationMode: 4
|
||||
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 1
|
||||
blendShapeNormalImportMode: 1
|
||||
normalSmoothingSource: 0
|
||||
importAnimation: 0
|
||||
copyAvatar: 0
|
||||
humanDescription:
|
||||
serializedVersion: 2
|
||||
human:
|
||||
- boneName: pelvis
|
||||
humanName: Hips
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: thigh_l
|
||||
humanName: LeftUpperLeg
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: thigh_r
|
||||
humanName: RightUpperLeg
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: calf_l
|
||||
humanName: LeftLowerLeg
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: calf_r
|
||||
humanName: RightLowerLeg
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: foot_l
|
||||
humanName: LeftFoot
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: foot_r
|
||||
humanName: RightFoot
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: spine_01
|
||||
humanName: Spine
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: neck_01
|
||||
humanName: Neck
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: head
|
||||
humanName: Head
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: clavicle_l
|
||||
humanName: LeftShoulder
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: clavicle_r
|
||||
humanName: RightShoulder
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: upperarm_l
|
||||
humanName: LeftUpperArm
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: upperarm_r
|
||||
humanName: RightUpperArm
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: lowerarm_l
|
||||
humanName: LeftLowerArm
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: lowerarm_r
|
||||
humanName: RightLowerArm
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: hand_l
|
||||
humanName: LeftHand
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: hand_r
|
||||
humanName: RightHand
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: ball_l
|
||||
humanName: LeftToes
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: ball_r
|
||||
humanName: RightToes
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: thumb_01_l
|
||||
humanName: Left Thumb Proximal
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: thumb_02_l
|
||||
humanName: Left Thumb Intermediate
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: thumb_03_l
|
||||
humanName: Left Thumb Distal
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: index_01_l
|
||||
humanName: Left Index Proximal
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: index_02_l
|
||||
humanName: Left Index Intermediate
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: index_03_l
|
||||
humanName: Left Index Distal
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: ring_01_l
|
||||
humanName: Left Ring Proximal
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: ring_02_l
|
||||
humanName: Left Ring Intermediate
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: ring_03_l
|
||||
humanName: Left Ring Distal
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: thumb_01_r
|
||||
humanName: Right Thumb Proximal
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: thumb_02_r
|
||||
humanName: Right Thumb Intermediate
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: thumb_03_r
|
||||
humanName: Right Thumb Distal
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: index_01_r
|
||||
humanName: Right Index Proximal
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: index_02_r
|
||||
humanName: Right Index Intermediate
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: index_03_r
|
||||
humanName: Right Index Distal
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: ring_01_r
|
||||
humanName: Right Ring Proximal
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: ring_02_r
|
||||
humanName: Right Ring Intermediate
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: ring_03_r
|
||||
humanName: Right Ring Distal
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
- boneName: spine_02
|
||||
humanName: Chest
|
||||
limit:
|
||||
min: {x: 0, y: 0, z: 0}
|
||||
max: {x: 0, y: 0, z: 0}
|
||||
value: {x: 0, y: 0, z: 0}
|
||||
length: 0
|
||||
modified: 0
|
||||
skeleton:
|
||||
- name: PolyartMouse(Clone)
|
||||
parentName:
|
||||
position: {x: 0, y: 0, z: 0}
|
||||
rotation: {x: 0, y: 0, z: 0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Body1
|
||||
parentName: PolyartMouse(Clone)
|
||||
position: {x: -0, y: 0, z: 0}
|
||||
rotation: {x: -0.7071068, y: 0, z: -0, w: 0.7071068}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Rat
|
||||
parentName: PolyartMouse(Clone)
|
||||
position: {x: -0, y: 0.4321675, z: -1.0839412}
|
||||
rotation: {x: -0.7071068, y: 0, z: -0, w: 0.7071068}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: root
|
||||
parentName: PolyartMouse(Clone)
|
||||
position: {x: -0, y: 0, z: 0}
|
||||
rotation: {x: -0.7071068, y: 0, z: -0, w: 0.7071068}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: pelvis
|
||||
parentName: root
|
||||
position: {x: 7.33889e-17, y: 0.023199638, z: 0.2717067}
|
||||
rotation: {x: 0.0019436182, y: 0.70710415, z: 0.0019436182, w: 0.70710415}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: spine_01
|
||||
parentName: pelvis
|
||||
position: {x: -0.11432394, y: -0.009892768, z: 1.7044286e-17}
|
||||
rotation: {x: -6.980227e-18, y: 4.2070543e-19, z: 0.06411279, w: 0.9979427}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: spine_02
|
||||
parentName: spine_01
|
||||
position: {x: -0.1186689, y: 0.020425145, z: 3.4389898e-17}
|
||||
rotation: {x: 1.0348103e-18, y: -1.6696561e-16, z: -0.1185224, w: 0.9929514}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: spine_03
|
||||
parentName: spine_02
|
||||
position: {x: -0.11615697, y: 0.002283617, z: 6.341153e-17}
|
||||
rotation: {x: 2.8063978e-17, y: -1.6605644e-16, z: -0.04006483, w: 0.99919707}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: neck_01
|
||||
parentName: spine_03
|
||||
position: {x: -0.15768303, y: -0.023169318, z: 4.8567466e-17}
|
||||
rotation: {x: -4.4965862e-17, y: -4.0178776e-18, z: 0.13197342, w: 0.99125326}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: head
|
||||
parentName: neck_01
|
||||
position: {x: -0.18595001, y: -0.024134459, z: 5.84891e-17}
|
||||
rotation: {x: 0, y: 0, z: -0.040376835, w: 0.99918455}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Nose01
|
||||
parentName: head
|
||||
position: {x: -0.060137894, y: -0.30975625, z: 6.5145675e-17}
|
||||
rotation: {x: 0, y: 0, z: 0.5383473, w: 0.8427231}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Nose02
|
||||
parentName: Nose01
|
||||
position: {x: -0.056590676, y: -1.4210854e-16, z: -1.8932661e-31}
|
||||
rotation: {x: -0.23048592, y: -0.6684881, z: -0.23048592, w: 0.6684881}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Rat01_l
|
||||
parentName: head
|
||||
position: {x: -0.13691087, y: 0.07964638, z: -0.14902727}
|
||||
rotation: {x: -0.37457773, y: -0.6996655, z: 0.10231422, w: 0.5997429}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Rat02_l
|
||||
parentName: Rat01_l
|
||||
position: {x: 0.009744652, y: 0.111690655, z: 0.12636532}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Dog01_l
|
||||
parentName: head
|
||||
position: {x: -0.18350182, y: 0.08138738, z: -0.103089064}
|
||||
rotation: {x: 0.01143154, y: -0.7555581, z: 0.009908698, w: 0.654907}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Dog02_l
|
||||
parentName: Dog01_l
|
||||
position: {x: -0, y: 1.0658141e-16, z: 0.09881902}
|
||||
rotation: {x: 0.082184434, y: 0.70231456, z: 0.082184434, w: 0.70231456}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Dog03_l
|
||||
parentName: Dog02_l
|
||||
position: {x: -0.1174944, y: 1.4210854e-16, z: -2.6645352e-17}
|
||||
rotation: {x: -0.082184434, y: -0.70231456, z: -0.082184434, w: 0.70231456}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Rabit01_l
|
||||
parentName: head
|
||||
position: {x: -0.1494289, y: 0.11852971, z: -0.08717348}
|
||||
rotation: {x: -0.08705785, y: -0.16266909, z: -0.4637573, w: 0.86653847}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Rabit02_l
|
||||
parentName: Rabit01_l
|
||||
position: {x: -0.23753135, y: 8.5265126e-16, z: 1.4210854e-16}
|
||||
rotation: {x: 0, y: 0, z: -0.015549913, w: 0.9998791}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Rabit03_l
|
||||
parentName: Rabit02_l
|
||||
position: {x: -0.24194758, y: -2.842171e-16, z: 0}
|
||||
rotation: {x: 0.343308, y: -0.61817443, z: 0.343308, w: 0.61817443}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Rat01_r
|
||||
parentName: head
|
||||
position: {x: -0.13691002, y: 0.0796464, z: 0.149027}
|
||||
rotation: {x: 0.6996655, y: -0.37457773, z: 0.5997429, w: -0.102314204}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Rat02_r
|
||||
parentName: Rat01_r
|
||||
position: {x: -0.009744925, y: -0.11169093, z: -0.12636535}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Dog01_r
|
||||
parentName: head
|
||||
position: {x: -0.18350002, y: 0.0813874, z: 0.103089}
|
||||
rotation: {x: 0.7555581, y: 0.01143154, z: 0.654907, w: -0.009908698}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Dog02_r
|
||||
parentName: Dog01_r
|
||||
position: {x: 0.00000038030342, y: 0.00000011595426, z: -0.09881613}
|
||||
rotation: {x: 0.082184434, y: 0.70231456, z: 0.082184434, w: 0.70231456}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Dog03_r
|
||||
parentName: Dog02_r
|
||||
position: {x: 0.11749515, y: -0.00000025022345, z: -0.00000025208118}
|
||||
rotation: {x: -0.082184434, y: -0.70231456, z: -0.082184434, w: 0.70231456}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Rabit01_r
|
||||
parentName: head
|
||||
position: {x: -0.14943, y: 0.118529506, z: 0.0871735}
|
||||
rotation: {x: 0.16266909, y: -0.08705785, z: 0.86653847, w: 0.4637573}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Rabit02_r
|
||||
parentName: Rabit01_r
|
||||
position: {x: 0.23753238, y: 0.0000011094004, z: -0.00000031643373}
|
||||
rotation: {x: 0, y: 0, z: -0.015549913, w: 0.9998791}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Rabit03_r
|
||||
parentName: Rabit02_r
|
||||
position: {x: 0.24194717, y: -0.00000090337085, z: -0.00000047240744}
|
||||
rotation: {x: 0.343308, y: -0.61817443, z: 0.343308, w: 0.61817443}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: clavicle_l
|
||||
parentName: spine_03
|
||||
position: {x: -0.08977397, y: -0.0388776, z: -0.10642209}
|
||||
rotation: {x: 0.15998697, y: -0.7459689, z: -0.01766271, w: 0.64623725}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: upperarm_l
|
||||
parentName: clavicle_l
|
||||
position: {x: -0.15521362, y: 1.0658141e-16, z: 4.2632563e-16}
|
||||
rotation: {x: -0.016182095, y: 0.08095038, z: 0.109649286, w: 0.99053633}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: lowerarm_l
|
||||
parentName: upperarm_l
|
||||
position: {x: -0.21140571, y: 0.0020677857, z: 4.2632563e-16}
|
||||
rotation: {x: 0, y: 0, z: 0.010152468, w: 0.9999485}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: hand_l
|
||||
parentName: lowerarm_l
|
||||
position: {x: -0.18514626, y: -0.00482675, z: -0.00011951752}
|
||||
rotation: {x: -0.70178133, y: 0.0026466702, z: -0.0007692234, w: 0.71238714}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: thumb_01_l
|
||||
parentName: hand_l
|
||||
position: {x: -0.047104318, y: 0.023203261, z: -0.056340285}
|
||||
rotation: {x: 0.50221115, y: -0.387253, z: 0.1699036, w: 0.754289}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: thumb_02_l
|
||||
parentName: thumb_01_l
|
||||
position: {x: -0.04241225, y: -1.2434498e-16, z: -1.4210854e-16}
|
||||
rotation: {x: 0.059652068, y: 0.019440405, z: -0.035889316, w: 0.99738437}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: thumb_03_l
|
||||
parentName: thumb_02_l
|
||||
position: {x: -0.047298487, y: -0.00032638563, z: 0.0001019219}
|
||||
rotation: {x: 0.01478177, y: -0.030982837, z: -0.08152062, w: 0.9960803}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: index_01_l
|
||||
parentName: hand_l
|
||||
position: {x: -0.106966905, y: -0.031950507, z: -0.04524321}
|
||||
rotation: {x: 0.08184936, y: 0.0059013455, z: 0.010983809, w: 0.9965667}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: index_02_l
|
||||
parentName: index_01_l
|
||||
position: {x: -0.060072307, y: 0.00467801, z: 0.0034518028}
|
||||
rotation: {x: 0.0069556003, y: 0.003193588, z: -0.052581947, w: 0.9985873}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: index_03_l
|
||||
parentName: index_02_l
|
||||
position: {x: -0.039459866, y: -0.00060846546, z: 0.0011372627}
|
||||
rotation: {x: 0.014050877, y: -0.016224818, z: 0.014749223, w: 0.99966085}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: ring_01_l
|
||||
parentName: hand_l
|
||||
position: {x: -0.10911825, y: -0.032612264, z: 0.0107481545}
|
||||
rotation: {x: -0.0022036482, y: 0.004168381, z: -0.022912893, w: 0.99972636}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: ring_02_l
|
||||
parentName: ring_01_l
|
||||
position: {x: -0.057522308, y: -0.0022442401, z: -0.0006415059}
|
||||
rotation: {x: 0.017940473, y: 0.009724062, z: -0.01808565, w: 0.9996282}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: ring_03_l
|
||||
parentName: ring_02_l
|
||||
position: {x: -0.04316089, y: -0.0024548052, z: -0.0026254496}
|
||||
rotation: {x: -0.0020952122, y: -0.009489396, z: 0.0024848802, w: 0.9999497}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: ShoulderPad_l
|
||||
parentName: upperarm_l
|
||||
position: {x: -0.081999995, y: 0.002, z: 0.083}
|
||||
rotation: {x: 0, y: 0, z: 0.009515045, w: 0.99995476}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: clavicle_r
|
||||
parentName: spine_03
|
||||
position: {x: -0.089773625, y: -0.038877536, z: 0.106422}
|
||||
rotation: {x: 0.7459689, y: 0.15998697, z: 0.64623725, w: 0.01766271}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: upperarm_r
|
||||
parentName: clavicle_r
|
||||
position: {x: 0.15521318, y: -0.00000010294632, z: -0.00000059972376}
|
||||
rotation: {x: -0.016205123, y: 0.080947444, z: 0.10965116, w: 0.990536}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: lowerarm_r
|
||||
parentName: upperarm_r
|
||||
position: {x: 0.21140663, y: -0.0020677692, z: -5.684342e-16}
|
||||
rotation: {x: 0, y: 0, z: 0.010152468, w: 0.9999485}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: hand_r
|
||||
parentName: lowerarm_r
|
||||
position: {x: 0.1851453, y: 0.004826761, z: 0.00012}
|
||||
rotation: {x: -0.70176476, y: 0.0026466139, z: -0.00076921494, w: 0.7124034}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: thumb_01_r
|
||||
parentName: hand_r
|
||||
position: {x: 0.047104906, y: -0.023203561, z: 0.056340273}
|
||||
rotation: {x: 0.5022116, y: -0.38725376, z: 0.16990183, w: 0.75428873}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: thumb_02_r
|
||||
parentName: thumb_01_r
|
||||
position: {x: 0.04241207, y: 0.0000001664043, z: -0.0000001201821}
|
||||
rotation: {x: 0.059652284, y: 0.0194402, z: -0.035890378, w: 0.99738437}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: thumb_03_r
|
||||
parentName: thumb_02_r
|
||||
position: {x: 0.047298215, y: 0.00032664675, z: -0.00010212635}
|
||||
rotation: {x: 0.01478177, y: -0.030982837, z: -0.08152062, w: 0.9960803}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: index_01_r
|
||||
parentName: hand_r
|
||||
position: {x: 0.106967345, y: 0.031950988, z: 0.045243192}
|
||||
rotation: {x: 0.08184936, y: 0.0059013455, z: 0.010983809, w: 0.9965667}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: index_02_r
|
||||
parentName: index_01_r
|
||||
position: {x: 0.060072105, y: -0.0046781716, z: -0.0034517753}
|
||||
rotation: {x: 0.0069556003, y: 0.003193588, z: -0.052581947, w: 0.9985873}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: index_03_r
|
||||
parentName: index_02_r
|
||||
position: {x: 0.039459746, y: 0.0006082239, z: -0.0011372312}
|
||||
rotation: {x: 0.014050877, y: -0.016224818, z: 0.014749223, w: 0.99966085}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: ring_01_r
|
||||
parentName: hand_r
|
||||
position: {x: 0.10911854, y: 0.03261257, z: -0.010748135}
|
||||
rotation: {x: -0.0022036482, y: 0.004168381, z: -0.022912893, w: 0.99972636}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: ring_02_r
|
||||
parentName: ring_01_r
|
||||
position: {x: 0.05752217, y: 0.0022442776, z: 0.0006414931}
|
||||
rotation: {x: 0.017940473, y: 0.009724062, z: -0.01808565, w: 0.9996282}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: ring_03_r
|
||||
parentName: ring_02_r
|
||||
position: {x: 0.043161742, y: 0.0024542476, z: 0.0026255096}
|
||||
rotation: {x: -0.0020952122, y: -0.009489396, z: 0.0024848802, w: 0.9999497}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: ShoulderPad_r
|
||||
parentName: upperarm_r
|
||||
position: {x: 0.081999995, y: -0.002, z: -0.083}
|
||||
rotation: {x: 0.000000010536235, y: 1.00257296e-10, z: 0.009515045, w: 0.99995476}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: thigh_l
|
||||
parentName: pelvis
|
||||
position: {x: 0.022199383, y: 0.008744767, z: -0.10806942}
|
||||
rotation: {x: -0.018547952, y: 0.037179936, z: -0.008849067, w: 0.9990972}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: calf_l
|
||||
parentName: thigh_l
|
||||
position: {x: 0.10403038, y: -0.0036481472, z: 0.0008584225}
|
||||
rotation: {x: -0.024624275, y: -0.0030814162, z: 0.0982936, w: 0.994848}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: foot_l
|
||||
parentName: calf_l
|
||||
position: {x: 0.10713632, y: -0.0052270168, z: 0.001269436}
|
||||
rotation: {x: 0.035581596, y: -0.032810636, z: -0.09361462, w: 0.9944314}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: ball_l
|
||||
parentName: foot_l
|
||||
position: {x: 0.017557085, y: -0.12076911, z: -0.01977553}
|
||||
rotation: {x: 0.0030611525, y: -0.008212709, z: 0.7100026, w: 0.70414454}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Tail05
|
||||
parentName: pelvis
|
||||
position: {x: -0.02187072, y: 0.16057724, z: -7.600249e-17}
|
||||
rotation: {x: -0.6989689, y: 0.7151521, z: 2.0258609e-16, w: -1.9800177e-16}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Tail04
|
||||
parentName: Tail05
|
||||
position: {x: -0.22412255, y: 5.684342e-16, z: -4.9765204e-17}
|
||||
rotation: {x: 0.973746, y: -0.22763745, z: -1.3938774e-17, w: 5.9624754e-17}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Tail03
|
||||
parentName: Tail04
|
||||
position: {x: -0.20047836, y: 5.32907e-16, z: 2.0167153e-17}
|
||||
rotation: {x: 0, y: 0, z: 0.19303113, w: 0.98119265}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Tail02
|
||||
parentName: Tail03
|
||||
position: {x: -0.15309824, y: -3.1974422e-16, z: -1.01003724e-17}
|
||||
rotation: {x: 0, y: 0, z: -0.20674652, w: 0.97839457}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Tail01
|
||||
parentName: Tail02
|
||||
position: {x: -0.18719168, y: -2.4868996e-16, z: 2.1023629e-17}
|
||||
rotation: {x: 0.38658842, y: -0.5920721, z: 0.38658842, w: 0.5920721}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Shield
|
||||
parentName: pelvis
|
||||
position: {x: -0.4107887, y: 0.022665631, z: -0.7565539}
|
||||
rotation: {x: -0.0019436182, y: -0.70710415, z: -0.0019436182, w: 0.70710415}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Weapon
|
||||
parentName: pelvis
|
||||
position: {x: -0.41078886, y: 0.022665657, z: 0.756554}
|
||||
rotation: {x: 0.70710415, y: -0.0019436182, z: 0.70710415, w: 0.0019436182}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: thigh_r
|
||||
parentName: pelvis
|
||||
position: {x: 0.02219912, y: 0.008744755, z: 0.108068995}
|
||||
rotation: {x: -0.037179276, y: -0.018561244, z: 0.99909705, w: 0.008848718}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: calf_r
|
||||
parentName: thigh_r
|
||||
position: {x: -0.10403116, y: 0.0036480732, z: -0.00085796614}
|
||||
rotation: {x: -0.024624275, y: -0.0030814162, z: 0.0982936, w: 0.994848}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: foot_r
|
||||
parentName: calf_r
|
||||
position: {x: -0.10713582, y: 0.0052269846, z: -0.0012694859}
|
||||
rotation: {x: 0.035594884, y: -0.032811232, z: -0.09361494, w: 0.99443084}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: ball_r
|
||||
parentName: foot_r
|
||||
position: {x: -0.01755713, y: 0.12076904, z: 0.019775553}
|
||||
rotation: {x: 0.0030611525, y: -0.008212709, z: 0.7100026, w: 0.70414454}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
armTwist: 0.5
|
||||
foreArmTwist: 0.5
|
||||
upperLegTwist: 0.5
|
||||
legTwist: 0.5
|
||||
armStretch: 0.05
|
||||
legStretch: 0.05
|
||||
feetSpacing: 0
|
||||
rootMotionBoneName:
|
||||
hasTranslationDoF: 0
|
||||
hasExtraRoot: 1
|
||||
skeletonHasParents: 1
|
||||
lastHumanDescriptionAvatarSource: {instanceID: 0}
|
||||
animationType: 3
|
||||
humanoidOversampling: 1
|
||||
additionalBone: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
BIN
Assets/StoreAssets/DogKnight/Mesh/Shield.fbx
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/DogKnight/Mesh/Shield.fbx
(Stored with Git LFS)
Normal file
Binary file not shown.
97
Assets/StoreAssets/DogKnight/Mesh/Shield.fbx.meta
Normal file
97
Assets/StoreAssets/DogKnight/Mesh/Shield.fbx.meta
Normal file
@ -0,0 +1,97 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 588cb1a3084bba747b81631d0c071523
|
||||
ModelImporter:
|
||||
serializedVersion: 23
|
||||
fileIDToRecycleName:
|
||||
100000: //RootNode
|
||||
400000: //RootNode
|
||||
2300000: //RootNode
|
||||
3300000: //RootNode
|
||||
4300000: Shield1
|
||||
4300002: Shield4
|
||||
externalObjects: {}
|
||||
materials:
|
||||
importMaterials: 0
|
||||
materialName: 0
|
||||
materialSearch: 1
|
||||
materialLocation: 0
|
||||
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: 0
|
||||
importBlendShapes: 1
|
||||
importCameras: 0
|
||||
importLights: 0
|
||||
swapUVChannels: 0
|
||||
generateSecondaryUV: 0
|
||||
useFileUnits: 1
|
||||
optimizeMeshForGPU: 1
|
||||
keepQuads: 0
|
||||
weldVertices: 1
|
||||
preserveHierarchy: 0
|
||||
indexFormat: 1
|
||||
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: 1
|
||||
blendShapeNormalImportMode: 1
|
||||
normalSmoothingSource: 0
|
||||
importAnimation: 0
|
||||
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:
|
BIN
Assets/StoreAssets/DogKnight/Mesh/ShieldPolyart.fbx
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/DogKnight/Mesh/ShieldPolyart.fbx
(Stored with Git LFS)
Normal file
Binary file not shown.
97
Assets/StoreAssets/DogKnight/Mesh/ShieldPolyart.fbx.meta
Normal file
97
Assets/StoreAssets/DogKnight/Mesh/ShieldPolyart.fbx.meta
Normal file
@ -0,0 +1,97 @@
|
||||
fileFormatVersion: 2
|
||||
guid: b20cb9cb9197fb64a830cea6c0550d0e
|
||||
ModelImporter:
|
||||
serializedVersion: 23
|
||||
fileIDToRecycleName:
|
||||
100000: //RootNode
|
||||
400000: //RootNode
|
||||
2300000: //RootNode
|
||||
3300000: //RootNode
|
||||
4300000: Shield1
|
||||
4300002: Shield4
|
||||
externalObjects: {}
|
||||
materials:
|
||||
importMaterials: 0
|
||||
materialName: 0
|
||||
materialSearch: 1
|
||||
materialLocation: 0
|
||||
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: 0
|
||||
importBlendShapes: 1
|
||||
importCameras: 0
|
||||
importLights: 0
|
||||
swapUVChannels: 0
|
||||
generateSecondaryUV: 0
|
||||
useFileUnits: 1
|
||||
optimizeMeshForGPU: 1
|
||||
keepQuads: 0
|
||||
weldVertices: 1
|
||||
preserveHierarchy: 0
|
||||
indexFormat: 1
|
||||
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: 1
|
||||
blendShapeNormalImportMode: 1
|
||||
normalSmoothingSource: 0
|
||||
importAnimation: 0
|
||||
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:
|
BIN
Assets/StoreAssets/DogKnight/Mesh/Stage.fbx
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/DogKnight/Mesh/Stage.fbx
(Stored with Git LFS)
Normal file
Binary file not shown.
96
Assets/StoreAssets/DogKnight/Mesh/Stage.fbx.meta
Normal file
96
Assets/StoreAssets/DogKnight/Mesh/Stage.fbx.meta
Normal file
@ -0,0 +1,96 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 83ccc45f4c0939440a46957a74a54d2c
|
||||
ModelImporter:
|
||||
serializedVersion: 23
|
||||
fileIDToRecycleName:
|
||||
100000: //RootNode
|
||||
400000: //RootNode
|
||||
2300000: //RootNode
|
||||
3300000: //RootNode
|
||||
4300000: pCylinder1
|
||||
externalObjects: {}
|
||||
materials:
|
||||
importMaterials: 0
|
||||
materialName: 0
|
||||
materialSearch: 1
|
||||
materialLocation: 0
|
||||
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: 0
|
||||
importBlendShapes: 1
|
||||
importCameras: 0
|
||||
importLights: 0
|
||||
swapUVChannels: 0
|
||||
generateSecondaryUV: 0
|
||||
useFileUnits: 1
|
||||
optimizeMeshForGPU: 1
|
||||
keepQuads: 0
|
||||
weldVertices: 1
|
||||
preserveHierarchy: 0
|
||||
indexFormat: 1
|
||||
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: 1
|
||||
blendShapeNormalImportMode: 1
|
||||
normalSmoothingSource: 0
|
||||
importAnimation: 0
|
||||
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:
|
BIN
Assets/StoreAssets/DogKnight/Mesh/Sword.fbx
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/DogKnight/Mesh/Sword.fbx
(Stored with Git LFS)
Normal file
Binary file not shown.
97
Assets/StoreAssets/DogKnight/Mesh/Sword.fbx.meta
Normal file
97
Assets/StoreAssets/DogKnight/Mesh/Sword.fbx.meta
Normal file
@ -0,0 +1,97 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 9ef625d01f79b4e4eb62fcdf032954ca
|
||||
ModelImporter:
|
||||
serializedVersion: 23
|
||||
fileIDToRecycleName:
|
||||
100000: //RootNode
|
||||
400000: //RootNode
|
||||
2300000: //RootNode
|
||||
3300000: //RootNode
|
||||
4300000: Sword1
|
||||
4300002: Sword3
|
||||
externalObjects: {}
|
||||
materials:
|
||||
importMaterials: 0
|
||||
materialName: 0
|
||||
materialSearch: 1
|
||||
materialLocation: 0
|
||||
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: 0
|
||||
importBlendShapes: 1
|
||||
importCameras: 0
|
||||
importLights: 0
|
||||
swapUVChannels: 0
|
||||
generateSecondaryUV: 0
|
||||
useFileUnits: 1
|
||||
optimizeMeshForGPU: 1
|
||||
keepQuads: 0
|
||||
weldVertices: 1
|
||||
preserveHierarchy: 0
|
||||
indexFormat: 1
|
||||
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: 1
|
||||
blendShapeNormalImportMode: 1
|
||||
normalSmoothingSource: 0
|
||||
importAnimation: 0
|
||||
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:
|
BIN
Assets/StoreAssets/DogKnight/Mesh/SwordPolyart.fbx
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/DogKnight/Mesh/SwordPolyart.fbx
(Stored with Git LFS)
Normal file
Binary file not shown.
97
Assets/StoreAssets/DogKnight/Mesh/SwordPolyart.fbx.meta
Normal file
97
Assets/StoreAssets/DogKnight/Mesh/SwordPolyart.fbx.meta
Normal file
@ -0,0 +1,97 @@
|
||||
fileFormatVersion: 2
|
||||
guid: b96201848d117da4ca7dc3ade4bd59de
|
||||
ModelImporter:
|
||||
serializedVersion: 23
|
||||
fileIDToRecycleName:
|
||||
100000: //RootNode
|
||||
400000: //RootNode
|
||||
2300000: //RootNode
|
||||
3300000: //RootNode
|
||||
4300000: Sword1
|
||||
4300002: Sword3
|
||||
externalObjects: {}
|
||||
materials:
|
||||
importMaterials: 0
|
||||
materialName: 0
|
||||
materialSearch: 1
|
||||
materialLocation: 0
|
||||
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: 0
|
||||
importBlendShapes: 1
|
||||
importCameras: 0
|
||||
importLights: 0
|
||||
swapUVChannels: 0
|
||||
generateSecondaryUV: 0
|
||||
useFileUnits: 1
|
||||
optimizeMeshForGPU: 1
|
||||
keepQuads: 0
|
||||
weldVertices: 1
|
||||
preserveHierarchy: 0
|
||||
indexFormat: 1
|
||||
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: 1
|
||||
blendShapeNormalImportMode: 1
|
||||
normalSmoothingSource: 0
|
||||
importAnimation: 0
|
||||
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:
|
9
Assets/StoreAssets/DogKnight/Prefab.meta
Normal file
9
Assets/StoreAssets/DogKnight/Prefab.meta
Normal file
@ -0,0 +1,9 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 9739c933b2b55f3488427aed995de914
|
||||
folderAsset: yes
|
||||
timeCreated: 1544585043
|
||||
licenseType: Store
|
||||
DefaultImporter:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
BIN
Assets/StoreAssets/DogKnight/Prefab/DogPBR.prefab
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/DogKnight/Prefab/DogPBR.prefab
(Stored with Git LFS)
Normal file
Binary file not shown.
7
Assets/StoreAssets/DogKnight/Prefab/DogPBR.prefab.meta
Normal file
7
Assets/StoreAssets/DogKnight/Prefab/DogPBR.prefab.meta
Normal file
@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 214e08cd5e5d74c458e2a81b7ec2c84c
|
||||
PrefabImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
BIN
Assets/StoreAssets/DogKnight/Prefab/DogPolyart.prefab
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/DogKnight/Prefab/DogPolyart.prefab
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 45288819fde2143449a96207b14db0bb
|
||||
PrefabImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
9
Assets/StoreAssets/DogKnight/Scene.meta
Normal file
9
Assets/StoreAssets/DogKnight/Scene.meta
Normal file
@ -0,0 +1,9 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 169044d5b44cadd40949a7ac78a33176
|
||||
folderAsset: yes
|
||||
timeCreated: 1544585050
|
||||
licenseType: Store
|
||||
DefaultImporter:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
BIN
Assets/StoreAssets/DogKnight/Scene/Scene01.unity
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/DogKnight/Scene/Scene01.unity
(Stored with Git LFS)
Normal file
Binary file not shown.
8
Assets/StoreAssets/DogKnight/Scene/Scene01.unity.meta
Normal file
8
Assets/StoreAssets/DogKnight/Scene/Scene01.unity.meta
Normal file
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: f289dc5ef7a55d44b83125c0b2415ed4
|
||||
timeCreated: 1544585140
|
||||
licenseType: Store
|
||||
DefaultImporter:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
66
Assets/StoreAssets/DogKnight/Scene/Scene01Settings.lighting
Normal file
66
Assets/StoreAssets/DogKnight/Scene/Scene01Settings.lighting
Normal file
@ -0,0 +1,66 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!850595691 &4890085278179872738
|
||||
LightingSettings:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: Scene01Settings
|
||||
serializedVersion: 6
|
||||
m_GIWorkflowMode: 0
|
||||
m_EnableBakedLightmaps: 1
|
||||
m_EnableRealtimeLightmaps: 1
|
||||
m_RealtimeEnvironmentLighting: 1
|
||||
m_BounceScale: 1
|
||||
m_AlbedoBoost: 1
|
||||
m_IndirectOutputScale: 1
|
||||
m_UsingShadowmask: 0
|
||||
m_BakeBackend: 0
|
||||
m_LightmapMaxSize: 1024
|
||||
m_BakeResolution: 40
|
||||
m_Padding: 2
|
||||
m_LightmapCompression: 3
|
||||
m_AO: 0
|
||||
m_AOMaxDistance: 1
|
||||
m_CompAOExponent: 1
|
||||
m_CompAOExponentDirect: 0
|
||||
m_ExtractAO: 0
|
||||
m_MixedBakeMode: 1
|
||||
m_LightmapsBakeMode: 1
|
||||
m_FilterMode: 1
|
||||
m_LightmapParameters: {fileID: 15204, guid: 0000000000000000f000000000000000, type: 0}
|
||||
m_ExportTrainingData: 0
|
||||
m_TrainingDataDestination: TrainingData
|
||||
m_RealtimeResolution: 2
|
||||
m_ForceWhiteAlbedo: 0
|
||||
m_ForceUpdates: 0
|
||||
m_FinalGather: 0
|
||||
m_FinalGatherRayCount: 256
|
||||
m_FinalGatherFiltering: 1
|
||||
m_PVRCulling: 1
|
||||
m_PVRSampling: 1
|
||||
m_PVRDirectSampleCount: 32
|
||||
m_PVRSampleCount: 512
|
||||
m_PVREnvironmentSampleCount: 512
|
||||
m_PVREnvironmentReferencePointCount: 2048
|
||||
m_LightProbeSampleCountMultiplier: 4
|
||||
m_PVRBounces: 2
|
||||
m_PVRMinBounces: 2
|
||||
m_PVREnvironmentImportanceSampling: 0
|
||||
m_PVRFilteringMode: 2
|
||||
m_PVRDenoiserTypeDirect: 0
|
||||
m_PVRDenoiserTypeIndirect: 0
|
||||
m_PVRDenoiserTypeAO: 0
|
||||
m_PVRFilterTypeDirect: 0
|
||||
m_PVRFilterTypeIndirect: 0
|
||||
m_PVRFilterTypeAO: 0
|
||||
m_PVRFilteringGaussRadiusDirect: 1
|
||||
m_PVRFilteringGaussRadiusIndirect: 5
|
||||
m_PVRFilteringGaussRadiusAO: 2
|
||||
m_PVRFilteringAtrousPositionSigmaDirect: 0.5
|
||||
m_PVRFilteringAtrousPositionSigmaIndirect: 2
|
||||
m_PVRFilteringAtrousPositionSigmaAO: 1
|
||||
m_PVRTiledBaking: 0
|
||||
m_NumRaysToShootPerTexel: -1
|
||||
m_RespectSceneVisibilityWhenBakingGI: 0
|
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 44e5a656ab44e5f4a8029963bba9595d
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 4890085278179872738
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
9
Assets/StoreAssets/DogKnight/Texture.meta
Normal file
9
Assets/StoreAssets/DogKnight/Texture.meta
Normal file
@ -0,0 +1,9 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 8475906f06c098743a1bb0fb3fcbe0c4
|
||||
folderAsset: yes
|
||||
timeCreated: 1544585067
|
||||
licenseType: Store
|
||||
DefaultImporter:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
BIN
Assets/StoreAssets/DogKnight/Texture/AO.png
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/DogKnight/Texture/AO.png
(Stored with Git LFS)
Normal file
Binary file not shown.
76
Assets/StoreAssets/DogKnight/Texture/AO.png.meta
Normal file
76
Assets/StoreAssets/DogKnight/Texture/AO.png.meta
Normal file
@ -0,0 +1,76 @@
|
||||
fileFormatVersion: 2
|
||||
guid: ab3e8c0e82b3db8429abc130ac9e62d5
|
||||
timeCreated: 1579247699
|
||||
licenseType: Store
|
||||
TextureImporter:
|
||||
fileIDToRecycleName: {}
|
||||
serializedVersion: 4
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 1
|
||||
sRGBTexture: 1
|
||||
linearTexture: 0
|
||||
fadeOut: 0
|
||||
borderMipMap: 0
|
||||
mipMapFadeDistanceStart: 1
|
||||
mipMapFadeDistanceEnd: 3
|
||||
bumpmap:
|
||||
convertToNormalMap: 0
|
||||
externalNormalMap: 0
|
||||
heightScale: 0.25
|
||||
normalMapFilter: 0
|
||||
isReadable: 0
|
||||
grayScaleToAlpha: 0
|
||||
generateCubemap: 6
|
||||
cubemapConvolution: 0
|
||||
seamlessCubemap: 0
|
||||
textureFormat: 1
|
||||
maxTextureSize: 2048
|
||||
textureSettings:
|
||||
filterMode: -1
|
||||
aniso: -1
|
||||
mipBias: -1
|
||||
wrapMode: -1
|
||||
nPOTScale: 1
|
||||
lightmap: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 0
|
||||
spriteExtrude: 1
|
||||
spriteMeshType: 1
|
||||
alignment: 0
|
||||
spritePivot: {x: 0.5, y: 0.5}
|
||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||
spritePixelsToUnits: 100
|
||||
alphaUsage: 1
|
||||
alphaIsTransparency: 0
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 0
|
||||
textureShape: 1
|
||||
maxTextureSizeSet: 0
|
||||
compressionQualitySet: 0
|
||||
textureFormatSet: 0
|
||||
platformSettings:
|
||||
- buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 2048
|
||||
textureFormat: -1
|
||||
textureCompression: 2
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
- buildTarget: Standalone
|
||||
maxTextureSize: 2048
|
||||
textureFormat: -1
|
||||
textureCompression: 2
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
spritePackingTag:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
BIN
Assets/StoreAssets/DogKnight/Texture/Albedo.png
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/DogKnight/Texture/Albedo.png
(Stored with Git LFS)
Normal file
Binary file not shown.
76
Assets/StoreAssets/DogKnight/Texture/Albedo.png.meta
Normal file
76
Assets/StoreAssets/DogKnight/Texture/Albedo.png.meta
Normal file
@ -0,0 +1,76 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 3c94236cfdd0fcc4b8fd91e7d12dabec
|
||||
timeCreated: 1579247699
|
||||
licenseType: Store
|
||||
TextureImporter:
|
||||
fileIDToRecycleName: {}
|
||||
serializedVersion: 4
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 1
|
||||
sRGBTexture: 1
|
||||
linearTexture: 0
|
||||
fadeOut: 0
|
||||
borderMipMap: 0
|
||||
mipMapFadeDistanceStart: 1
|
||||
mipMapFadeDistanceEnd: 3
|
||||
bumpmap:
|
||||
convertToNormalMap: 0
|
||||
externalNormalMap: 0
|
||||
heightScale: 0.25
|
||||
normalMapFilter: 0
|
||||
isReadable: 0
|
||||
grayScaleToAlpha: 0
|
||||
generateCubemap: 6
|
||||
cubemapConvolution: 0
|
||||
seamlessCubemap: 0
|
||||
textureFormat: 1
|
||||
maxTextureSize: 2048
|
||||
textureSettings:
|
||||
filterMode: -1
|
||||
aniso: -1
|
||||
mipBias: -1
|
||||
wrapMode: -1
|
||||
nPOTScale: 1
|
||||
lightmap: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 0
|
||||
spriteExtrude: 1
|
||||
spriteMeshType: 1
|
||||
alignment: 0
|
||||
spritePivot: {x: 0.5, y: 0.5}
|
||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||
spritePixelsToUnits: 100
|
||||
alphaUsage: 1
|
||||
alphaIsTransparency: 0
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 0
|
||||
textureShape: 1
|
||||
maxTextureSizeSet: 0
|
||||
compressionQualitySet: 0
|
||||
textureFormatSet: 0
|
||||
platformSettings:
|
||||
- buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 2048
|
||||
textureFormat: -1
|
||||
textureCompression: 2
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
- buildTarget: Standalone
|
||||
maxTextureSize: 2048
|
||||
textureFormat: -1
|
||||
textureCompression: 2
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
spritePackingTag:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
BIN
Assets/StoreAssets/DogKnight/Texture/MS.png
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/DogKnight/Texture/MS.png
(Stored with Git LFS)
Normal file
Binary file not shown.
76
Assets/StoreAssets/DogKnight/Texture/MS.png.meta
Normal file
76
Assets/StoreAssets/DogKnight/Texture/MS.png.meta
Normal file
@ -0,0 +1,76 @@
|
||||
fileFormatVersion: 2
|
||||
guid: f4da30a223a78034fbc3c563d2a924a7
|
||||
timeCreated: 1579247700
|
||||
licenseType: Store
|
||||
TextureImporter:
|
||||
fileIDToRecycleName: {}
|
||||
serializedVersion: 4
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 1
|
||||
sRGBTexture: 1
|
||||
linearTexture: 0
|
||||
fadeOut: 0
|
||||
borderMipMap: 0
|
||||
mipMapFadeDistanceStart: 1
|
||||
mipMapFadeDistanceEnd: 3
|
||||
bumpmap:
|
||||
convertToNormalMap: 0
|
||||
externalNormalMap: 0
|
||||
heightScale: 0.25
|
||||
normalMapFilter: 0
|
||||
isReadable: 0
|
||||
grayScaleToAlpha: 0
|
||||
generateCubemap: 6
|
||||
cubemapConvolution: 0
|
||||
seamlessCubemap: 0
|
||||
textureFormat: 1
|
||||
maxTextureSize: 2048
|
||||
textureSettings:
|
||||
filterMode: -1
|
||||
aniso: -1
|
||||
mipBias: -1
|
||||
wrapMode: -1
|
||||
nPOTScale: 1
|
||||
lightmap: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 0
|
||||
spriteExtrude: 1
|
||||
spriteMeshType: 1
|
||||
alignment: 0
|
||||
spritePivot: {x: 0.5, y: 0.5}
|
||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||
spritePixelsToUnits: 100
|
||||
alphaUsage: 1
|
||||
alphaIsTransparency: 0
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 0
|
||||
textureShape: 1
|
||||
maxTextureSizeSet: 0
|
||||
compressionQualitySet: 0
|
||||
textureFormatSet: 0
|
||||
platformSettings:
|
||||
- buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 2048
|
||||
textureFormat: -1
|
||||
textureCompression: 2
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
- buildTarget: Standalone
|
||||
maxTextureSize: 2048
|
||||
textureFormat: -1
|
||||
textureCompression: 2
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
spritePackingTag:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
BIN
Assets/StoreAssets/DogKnight/Texture/Normal.png
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/DogKnight/Texture/Normal.png
(Stored with Git LFS)
Normal file
Binary file not shown.
76
Assets/StoreAssets/DogKnight/Texture/Normal.png.meta
Normal file
76
Assets/StoreAssets/DogKnight/Texture/Normal.png.meta
Normal file
@ -0,0 +1,76 @@
|
||||
fileFormatVersion: 2
|
||||
guid: fe860d9813d9fba43a6db2f1dc9d2044
|
||||
timeCreated: 1579247757
|
||||
licenseType: Store
|
||||
TextureImporter:
|
||||
fileIDToRecycleName: {}
|
||||
serializedVersion: 4
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 1
|
||||
sRGBTexture: 0
|
||||
linearTexture: 0
|
||||
fadeOut: 0
|
||||
borderMipMap: 0
|
||||
mipMapFadeDistanceStart: 1
|
||||
mipMapFadeDistanceEnd: 3
|
||||
bumpmap:
|
||||
convertToNormalMap: 0
|
||||
externalNormalMap: 0
|
||||
heightScale: 0.25
|
||||
normalMapFilter: 0
|
||||
isReadable: 0
|
||||
grayScaleToAlpha: 0
|
||||
generateCubemap: 6
|
||||
cubemapConvolution: 0
|
||||
seamlessCubemap: 0
|
||||
textureFormat: 1
|
||||
maxTextureSize: 2048
|
||||
textureSettings:
|
||||
filterMode: -1
|
||||
aniso: -1
|
||||
mipBias: -1
|
||||
wrapMode: -1
|
||||
nPOTScale: 1
|
||||
lightmap: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 0
|
||||
spriteExtrude: 1
|
||||
spriteMeshType: 1
|
||||
alignment: 0
|
||||
spritePivot: {x: 0.5, y: 0.5}
|
||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||
spritePixelsToUnits: 100
|
||||
alphaUsage: 1
|
||||
alphaIsTransparency: 0
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 1
|
||||
textureShape: 1
|
||||
maxTextureSizeSet: 0
|
||||
compressionQualitySet: 0
|
||||
textureFormatSet: 0
|
||||
platformSettings:
|
||||
- buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 2048
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
- buildTarget: Standalone
|
||||
maxTextureSize: 2048
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
spritePackingTag:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
BIN
Assets/StoreAssets/DogKnight/Texture/StandardAlbedo.png
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/DogKnight/Texture/StandardAlbedo.png
(Stored with Git LFS)
Normal file
Binary file not shown.
99
Assets/StoreAssets/DogKnight/Texture/StandardAlbedo.png.meta
Normal file
99
Assets/StoreAssets/DogKnight/Texture/StandardAlbedo.png.meta
Normal file
@ -0,0 +1,99 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 5b981358eaa6be84dbe67e39c78e448b
|
||||
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: 2
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
- serializedVersion: 2
|
||||
buildTarget: Standalone
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 2
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID:
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
spritePackingTag:
|
||||
pSDRemoveMatte: 0
|
||||
pSDShowRemoveMatteOption: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
BIN
Assets/StoreAssets/DogKnight/promotion.jpg
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/DogKnight/promotion.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
68
Assets/StoreAssets/DogKnight/promotion.jpg.meta
Normal file
68
Assets/StoreAssets/DogKnight/promotion.jpg.meta
Normal file
@ -0,0 +1,68 @@
|
||||
fileFormatVersion: 2
|
||||
guid: f27d7537e17799e47be587331b9ef52b
|
||||
timeCreated: 1544625158
|
||||
licenseType: Store
|
||||
TextureImporter:
|
||||
fileIDToRecycleName: {}
|
||||
serializedVersion: 4
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 1
|
||||
sRGBTexture: 1
|
||||
linearTexture: 0
|
||||
fadeOut: 0
|
||||
borderMipMap: 0
|
||||
mipMapFadeDistanceStart: 1
|
||||
mipMapFadeDistanceEnd: 3
|
||||
bumpmap:
|
||||
convertToNormalMap: 0
|
||||
externalNormalMap: 0
|
||||
heightScale: 0.25
|
||||
normalMapFilter: 0
|
||||
isReadable: 0
|
||||
grayScaleToAlpha: 0
|
||||
generateCubemap: 6
|
||||
cubemapConvolution: 0
|
||||
seamlessCubemap: 0
|
||||
textureFormat: 1
|
||||
maxTextureSize: 2048
|
||||
textureSettings:
|
||||
filterMode: -1
|
||||
aniso: -1
|
||||
mipBias: -1
|
||||
wrapMode: -1
|
||||
nPOTScale: 1
|
||||
lightmap: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 0
|
||||
spriteExtrude: 1
|
||||
spriteMeshType: 1
|
||||
alignment: 0
|
||||
spritePivot: {x: 0.5, y: 0.5}
|
||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||
spritePixelsToUnits: 100
|
||||
alphaUsage: 1
|
||||
alphaIsTransparency: 0
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 0
|
||||
textureShape: 1
|
||||
maxTextureSizeSet: 0
|
||||
compressionQualitySet: 0
|
||||
textureFormatSet: 0
|
||||
platformSettings:
|
||||
- buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 2048
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
spritePackingTag:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
BIN
Assets/StoreAssets/RPG Monster DUO PBR Polyart/Materials/PBRDefault.mat
(Stored with Git LFS)
BIN
Assets/StoreAssets/RPG Monster DUO PBR Polyart/Materials/PBRDefault.mat
(Stored with Git LFS)
Binary file not shown.
BIN
Assets/StoreAssets/RPG Monster DUO PBR Polyart/Materials/PolyartDefault.mat
(Stored with Git LFS)
BIN
Assets/StoreAssets/RPG Monster DUO PBR Polyart/Materials/PolyartDefault.mat
(Stored with Git LFS)
Binary file not shown.
BIN
Assets/StoreAssets/RPGMonsterPartnersPBRPolyart/Materials/PBRDefault.mat
(Stored with Git LFS)
BIN
Assets/StoreAssets/RPGMonsterPartnersPBRPolyart/Materials/PBRDefault.mat
(Stored with Git LFS)
Binary file not shown.
BIN
Assets/StoreAssets/RPGMonsterPartnersPBRPolyart/Materials/PolyartDefault.mat
(Stored with Git LFS)
BIN
Assets/StoreAssets/RPGMonsterPartnersPBRPolyart/Materials/PolyartDefault.mat
(Stored with Git LFS)
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user