VCA 추가

This commit is contained in:
SweetJJuya 2024-09-05 18:39:51 +09:00
parent 2a56a257df
commit 7ce2094032
5670 changed files with 1116679 additions and 0 deletions

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 8cb4c73c5575ec14b97aa917958b9499
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,42 @@
using System;
using Unity.Cinemachine;
using UnityEngine;
public class Crosshead : MonoBehaviour
{
public CinemachineCamera camera;
private CinemachinePositionComposer camera_Compser;
private float CameraDoon = 0.0f;
private void Start()
{
camera_Compser = camera.GetComponent<CinemachinePositionComposer>();
}
void Update()
{
if (Input.GetMouseButton(1))
{
camera.enabled = true;
CameraDoon += Time.deltaTime;
if (CameraDoon >= 0.5f)
{
float mouseX = 1 - Input.mousePosition.x / Screen.width;
float mouseY = Input.mousePosition.y / Screen.height;
camera_Compser.Composition.ScreenPosition.x = mouseX - 0.5f;
camera_Compser.Composition.ScreenPosition.y = mouseY + -0.5f;
}
}
else
{
CameraDoon = 0.0f;
camera.enabled = false;
camera_Compser.Composition.ScreenPosition.x = 0.0f;
camera_Compser.Composition.ScreenPosition.y = 0.0f;
}
}
}

View File

@ -0,0 +1,2 @@
fileFormatVersion: 2
guid: 1b3222408c35ab540940be2adf0d7750

View File

@ -0,0 +1,102 @@
using System;
using UnityEngine;
using UnityEngine.Rendering;
[ExecuteAlways]
public class BendingManager : MonoBehaviour
{
#region Constants
private const string BENDING_FEATURE = "ENABLE_BENDING";
private const string PLANET_FEATURE = "ENABLE_BENDING_PLANET";
private static readonly int BENDING_AMOUNT =
Shader.PropertyToID("_BendingAmount");
#endregion
#region Inspector
[SerializeField]
private bool enablePlanet = default;
[SerializeField]
[Range(0.0f, 0.1f)]
private float bendingAmount = 0.001f;
#endregion
#region Fields
private float _prevAmount;
#endregion
#region MonoBehaviour
private void Awake ()
{
if ( Application.isPlaying )
Shader.EnableKeyword(BENDING_FEATURE);
else
Shader.DisableKeyword(BENDING_FEATURE);
if ( enablePlanet )
Shader.EnableKeyword(PLANET_FEATURE);
else
Shader.DisableKeyword(PLANET_FEATURE);
UpdateBendingAmount();
}
private void OnEnable ()
{
if ( !Application.isPlaying )
return;
RenderPipelineManager.beginCameraRendering += OnBeginCameraRendering;
RenderPipelineManager.endCameraRendering += OnEndCameraRendering;
}
private void Update ()
{
if ( Math.Abs(_prevAmount - bendingAmount) > Mathf.Epsilon )
UpdateBendingAmount();
}
private void OnDisable ()
{
RenderPipelineManager.beginCameraRendering -= OnBeginCameraRendering;
RenderPipelineManager.endCameraRendering -= OnEndCameraRendering;
}
#endregion
#region Methods
private void UpdateBendingAmount ()
{
_prevAmount = bendingAmount;
Shader.SetGlobalFloat(BENDING_AMOUNT, bendingAmount);
}
private static void OnBeginCameraRendering (ScriptableRenderContext ctx,
Camera cam)
{
cam.cullingMatrix = Matrix4x4.Ortho(-99, 99, -99, 99, 0.001f, 99) *
cam.worldToCameraMatrix;
}
private static void OnEndCameraRendering (ScriptableRenderContext ctx,
Camera cam)
{
cam.ResetCullingMatrix();
}
#endregion
}

View File

@ -0,0 +1,11 @@
fileFormatVersion: 2
guid: cb3725ac11ed340faa37dc53fa0c57c5
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,13 @@
using UnityEngine;
public class Fish_Rotation : MonoBehaviour
{ // 회전 속도 변수, 유니티 에디터에서 조정 가능
public float rotationSpeed = 10f;
void Update()
{
// 오브젝트를 y축을 기준으로 회전
transform.Rotate(Vector3.up * rotationSpeed * Time.deltaTime);
}
}

View File

@ -0,0 +1,2 @@
fileFormatVersion: 2
guid: d7c410f7c12b3274a8403fffcb4f6cfc

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,10 @@
fileFormatVersion: 2
guid: 4e83b2e7ddb342143b2889e7b8d5caed
ScriptedImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 2
userData:
assetBundleName:
assetBundleVariant:
script: {fileID: 11500000, guid: 625f186215c104763be7675aa2d941aa, type: 3}

View File

@ -0,0 +1,144 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!114 &-5902211915721786559
MonoBehaviour:
m_ObjectHideFlags: 11
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3}
m_Name:
m_EditorClassIdentifier:
version: 9
--- !u!21 &2100000
Material:
serializedVersion: 8
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: Bending_Fish1 1
m_Shader: {fileID: -6465566751694194690, guid: 4e83b2e7ddb342143b2889e7b8d5caed, type: 3}
m_Parent: {fileID: 0}
m_ModifiedSerializedProperties: 0
m_ValidKeywords: []
m_InvalidKeywords: []
m_LightmapFlags: 4
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
m_CustomRenderQueue: -1
stringTagMap: {}
disabledShaderPasses:
- MOTIONVECTORS
m_LockedProperties:
m_SavedProperties:
serializedVersion: 3
m_TexEnvs:
- Texture2D_72426835:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _BaseMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _BumpMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _DetailAlbedoMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _DetailMask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _DetailNormalMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _EmissionMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _MainTex:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _MetallicGlossMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _OcclusionMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _ParallaxMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _SpecGlossMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- unity_Lightmaps:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- unity_LightmapsInd:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- unity_ShadowMasks:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
m_Ints: []
m_Floats:
- _AddPrecomputedVelocity: 0
- _Alpha: 1
- _AlphaClip: 0
- _AlphaToMask: 0
- _Blend: 0
- _BlendModePreserveSpecular: 1
- _BumpScale: 1
- _ClearCoatMask: 0
- _ClearCoatSmoothness: 0
- _Cull: 2
- _Cutoff: 0.5
- _DetailAlbedoMapScale: 1
- _DetailNormalMapScale: 1
- _DstBlend: 0
- _DstBlendAlpha: 0
- _EnvironmentReflections: 1
- _GlossMapScale: 0
- _Glossiness: 0
- _GlossyReflections: 0
- _Metallic: 0
- _OcclusionStrength: 1
- _Parallax: 0.005
- _QueueControl: 0
- _QueueOffset: 0
- _ReceiveShadows: 1
- _Smoothness: 0.5
- _SmoothnessTextureChannel: 0
- _SpecularHighlights: 1
- _SrcBlend: 1
- _SrcBlendAlpha: 1
- _Surface: 0
- _Wave_Draction: 0.7
- _Wave_Speed: 8
- _WorkflowMode: 1
- _ZWrite: 1
m_Colors:
- Vector2_6A93A1CF: {r: 1, g: 1, b: 0, a: 0}
- _BaseColor: {r: 1, g: 1, b: 1, a: 1}
- _Color: {r: 1, g: 1, b: 1, a: 1}
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
- _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1}
m_BuildTextureStacks: []
m_AllowLocking: 1

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 2bfd033c1199fc043b78e109dc94a4d8
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 2100000
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,144 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!114 &-5902211915721786559
MonoBehaviour:
m_ObjectHideFlags: 11
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3}
m_Name:
m_EditorClassIdentifier:
version: 9
--- !u!21 &2100000
Material:
serializedVersion: 8
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: Bending_Fish1 2
m_Shader: {fileID: -6465566751694194690, guid: 4e83b2e7ddb342143b2889e7b8d5caed, type: 3}
m_Parent: {fileID: 0}
m_ModifiedSerializedProperties: 0
m_ValidKeywords: []
m_InvalidKeywords: []
m_LightmapFlags: 4
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
m_CustomRenderQueue: -1
stringTagMap: {}
disabledShaderPasses:
- MOTIONVECTORS
m_LockedProperties:
m_SavedProperties:
serializedVersion: 3
m_TexEnvs:
- Texture2D_72426835:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _BaseMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _BumpMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _DetailAlbedoMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _DetailMask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _DetailNormalMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _EmissionMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _MainTex:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _MetallicGlossMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _OcclusionMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _ParallaxMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _SpecGlossMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- unity_Lightmaps:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- unity_LightmapsInd:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- unity_ShadowMasks:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
m_Ints: []
m_Floats:
- _AddPrecomputedVelocity: 0
- _Alpha: 1
- _AlphaClip: 0
- _AlphaToMask: 0
- _Blend: 0
- _BlendModePreserveSpecular: 1
- _BumpScale: 1
- _ClearCoatMask: 0
- _ClearCoatSmoothness: 0
- _Cull: 2
- _Cutoff: 0.5
- _DetailAlbedoMapScale: 1
- _DetailNormalMapScale: 1
- _DstBlend: 0
- _DstBlendAlpha: 0
- _EnvironmentReflections: 1
- _GlossMapScale: 0
- _Glossiness: 0
- _GlossyReflections: 0
- _Metallic: 0
- _OcclusionStrength: 1
- _Parallax: 0.005
- _QueueControl: 0
- _QueueOffset: 0
- _ReceiveShadows: 1
- _Smoothness: 0.5
- _SmoothnessTextureChannel: 0
- _SpecularHighlights: 1
- _SrcBlend: 1
- _SrcBlendAlpha: 1
- _Surface: 0
- _Wave_Draction: 0.5
- _Wave_Speed: 5
- _WorkflowMode: 1
- _ZWrite: 1
m_Colors:
- Vector2_6A93A1CF: {r: 1, g: 1, b: 0, a: 0}
- _BaseColor: {r: 1, g: 1, b: 1, a: 1}
- _Color: {r: 1, g: 1, b: 1, a: 1}
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
- _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1}
m_BuildTextureStacks: []
m_AllowLocking: 1

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 02f5f48ea110e4449b69b4a7a1273153
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 2100000
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,144 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!114 &-5902211915721786559
MonoBehaviour:
m_ObjectHideFlags: 11
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3}
m_Name:
m_EditorClassIdentifier:
version: 9
--- !u!21 &2100000
Material:
serializedVersion: 8
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: Bending_Fish1
m_Shader: {fileID: -6465566751694194690, guid: 4e83b2e7ddb342143b2889e7b8d5caed, type: 3}
m_Parent: {fileID: 0}
m_ModifiedSerializedProperties: 0
m_ValidKeywords: []
m_InvalidKeywords: []
m_LightmapFlags: 4
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
m_CustomRenderQueue: -1
stringTagMap: {}
disabledShaderPasses:
- MOTIONVECTORS
m_LockedProperties:
m_SavedProperties:
serializedVersion: 3
m_TexEnvs:
- Texture2D_72426835:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _BaseMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _BumpMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _DetailAlbedoMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _DetailMask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _DetailNormalMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _EmissionMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _MainTex:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _MetallicGlossMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _OcclusionMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _ParallaxMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _SpecGlossMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- unity_Lightmaps:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- unity_LightmapsInd:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- unity_ShadowMasks:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
m_Ints: []
m_Floats:
- _AddPrecomputedVelocity: 0
- _Alpha: 1
- _AlphaClip: 0
- _AlphaToMask: 0
- _Blend: 0
- _BlendModePreserveSpecular: 1
- _BumpScale: 1
- _ClearCoatMask: 0
- _ClearCoatSmoothness: 0
- _Cull: 2
- _Cutoff: 0.5
- _DetailAlbedoMapScale: 1
- _DetailNormalMapScale: 1
- _DstBlend: 0
- _DstBlendAlpha: 0
- _EnvironmentReflections: 1
- _GlossMapScale: 0
- _Glossiness: 0
- _GlossyReflections: 0
- _Metallic: 0
- _OcclusionStrength: 1
- _Parallax: 0.005
- _QueueControl: 0
- _QueueOffset: 0
- _ReceiveShadows: 1
- _Smoothness: 0.5
- _SmoothnessTextureChannel: 0
- _SpecularHighlights: 1
- _SrcBlend: 1
- _SrcBlendAlpha: 1
- _Surface: 0
- _Wave_Draction: 0.4
- _Wave_Speed: 3
- _WorkflowMode: 1
- _ZWrite: 1
m_Colors:
- Vector2_6A93A1CF: {r: 1, g: 1, b: 0, a: 0}
- _BaseColor: {r: 1, g: 1, b: 1, a: 1}
- _Color: {r: 1, g: 1, b: 1, a: 1}
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
- _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1}
m_BuildTextureStacks: []
m_AllowLocking: 1

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 6f4839854aa599a4c9fd49afa97338a9
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 2100000
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,142 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!21 &2100000
Material:
serializedVersion: 8
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: Master 1
m_Shader: {fileID: -6465566751694194690, guid: 940d79357fd7a4f01a49e7247aeaa4da, type: 3}
m_Parent: {fileID: 0}
m_ModifiedSerializedProperties: 0
m_ValidKeywords: []
m_InvalidKeywords: []
m_LightmapFlags: 4
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
m_CustomRenderQueue: -1
stringTagMap: {}
disabledShaderPasses:
- MOTIONVECTORS
m_LockedProperties:
m_SavedProperties:
serializedVersion: 3
m_TexEnvs:
- Texture2D_72426835:
m_Texture: {fileID: 2800000, guid: 964c2e73185575e4ab8f889c31f021dc, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _BaseMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _BumpMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _DetailAlbedoMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _DetailMask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _DetailNormalMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _EmissionMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _MainTex:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _MetallicGlossMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _OcclusionMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _ParallaxMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _SpecGlossMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- unity_Lightmaps:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- unity_LightmapsInd:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- unity_ShadowMasks:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
m_Ints: []
m_Floats:
- _AddPrecomputedVelocity: 0
- _Alpha: 3.45
- _AlphaClip: 0
- _AlphaToMask: 0
- _Blend: 0
- _BlendModePreserveSpecular: 1
- _BumpScale: 1
- _ClearCoatMask: 0
- _ClearCoatSmoothness: 0
- _Cull: 2
- _Cutoff: 0.5
- _DetailAlbedoMapScale: 1
- _DetailNormalMapScale: 1
- _DstBlend: 0
- _DstBlendAlpha: 0
- _EnvironmentReflections: 1
- _GlossMapScale: 0
- _Glossiness: 0
- _GlossyReflections: 0
- _Metallic: 0
- _OcclusionStrength: 1
- _Parallax: 0.005
- _QueueControl: 0
- _QueueOffset: 0
- _ReceiveShadows: 1
- _Smoothness: 0.5
- _SmoothnessTextureChannel: 0
- _SpecularHighlights: 1
- _SrcBlend: 1
- _SrcBlendAlpha: 1
- _Surface: 0
- _WorkflowMode: 1
- _ZWrite: 1
m_Colors:
- Vector2_6A93A1CF: {r: 1, g: 1, b: 0, a: 0}
- _BaseColor: {r: 1, g: 1, b: 1, a: 1}
- _Color: {r: 1, g: 1, b: 1, a: 1}
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
- _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1}
m_BuildTextureStacks: []
m_AllowLocking: 1
--- !u!114 &9048502931546906176
MonoBehaviour:
m_ObjectHideFlags: 11
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3}
m_Name:
m_EditorClassIdentifier:
version: 9

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 1b3f34f5008ab3a449cd0ca7ae41a30e
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 2100000
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,142 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!21 &2100000
Material:
serializedVersion: 8
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: Master
m_Shader: {fileID: -6465566751694194690, guid: 940d79357fd7a4f01a49e7247aeaa4da, type: 3}
m_Parent: {fileID: 0}
m_ModifiedSerializedProperties: 0
m_ValidKeywords: []
m_InvalidKeywords: []
m_LightmapFlags: 4
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
m_CustomRenderQueue: -1
stringTagMap: {}
disabledShaderPasses:
- MOTIONVECTORS
m_LockedProperties:
m_SavedProperties:
serializedVersion: 3
m_TexEnvs:
- Texture2D_72426835:
m_Texture: {fileID: 2800000, guid: 964c2e73185575e4ab8f889c31f021dc, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _BaseMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _BumpMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _DetailAlbedoMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _DetailMask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _DetailNormalMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _EmissionMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _MainTex:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _MetallicGlossMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _OcclusionMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _ParallaxMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _SpecGlossMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- unity_Lightmaps:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- unity_LightmapsInd:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- unity_ShadowMasks:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
m_Ints: []
m_Floats:
- _AddPrecomputedVelocity: 0
- _Alpha: 1
- _AlphaClip: 0
- _AlphaToMask: 0
- _Blend: 0
- _BlendModePreserveSpecular: 1
- _BumpScale: 1
- _ClearCoatMask: 0
- _ClearCoatSmoothness: 0
- _Cull: 2
- _Cutoff: 0.5
- _DetailAlbedoMapScale: 1
- _DetailNormalMapScale: 1
- _DstBlend: 0
- _DstBlendAlpha: 0
- _EnvironmentReflections: 1
- _GlossMapScale: 0
- _Glossiness: 0
- _GlossyReflections: 0
- _Metallic: 0
- _OcclusionStrength: 1
- _Parallax: 0.005
- _QueueControl: 0
- _QueueOffset: 0
- _ReceiveShadows: 1
- _Smoothness: 0.5
- _SmoothnessTextureChannel: 0
- _SpecularHighlights: 1
- _SrcBlend: 1
- _SrcBlendAlpha: 1
- _Surface: 0
- _WorkflowMode: 1
- _ZWrite: 1
m_Colors:
- Vector2_6A93A1CF: {r: 1, g: 1, b: 0, a: 0}
- _BaseColor: {r: 1, g: 1, b: 1, a: 1}
- _Color: {r: 1, g: 1, b: 1, a: 1}
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
- _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1}
m_BuildTextureStacks: []
m_AllowLocking: 1
--- !u!114 &9048502931546906176
MonoBehaviour:
m_ObjectHideFlags: 11
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3}
m_Name:
m_EditorClassIdentifier:
version: 9

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: bd4b519bb6b55df45846c135cc1b1fda
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 2100000
userData:
assetBundleName:
assetBundleVariant:

8
Assets/12.Models.meta Normal file
View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: ff1c5f158a725ac459f9c1c7d09a3834
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 3b6dc4a8d98046f4ba3853dc483ed07b
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: b8a01d7a745c18f45961a8301f27ff6d
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 7bdd5576f319a8a418cf6cccf44e52ff
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,22 @@
# Blender MTL File: 'Dolphin.blend'
# Material Count: 2
newmtl Bottom
Ns 96.078431
Ka 1.000000 1.000000 1.000000
Kd 0.350835 0.350835 0.350835
Ks 0.500000 0.500000 0.500000
Ke 0.000000 0.000000 0.000000
Ni 1.000000
d 1.000000
illum 2
newmtl Top
Ns 96.078431
Ka 1.000000 1.000000 1.000000
Kd 0.240000 0.240000 0.240000
Ks 0.500000 0.500000 0.500000
Ke 0.000000 0.000000 0.000000
Ni 1.000000
d 1.000000
illum 2

View File

@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: 6803d5a01918dde4fb51cec7ff49f68e
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,682 @@
# Blender v2.79 (sub 0) OBJ File: 'Dolphin.blend'
# www.blender.org
mtllib Dolphin.mtl
o Dolphin
v 0.724502 -0.259997 1.289664
v 0.624793 -0.210429 -0.582696
v 0.909402 0.303738 1.275565
v 0.795619 0.150603 -0.615554
v 0.735569 1.003274 1.225788
v 0.625512 0.603442 -0.656540
v 0.356980 -0.228836 -2.309605
v 0.364856 -0.101735 -2.324018
v 0.353683 0.102768 -2.346882
v 0.475518 -0.220645 -1.447717
v 0.559441 0.025226 -1.470787
v 0.475603 0.339165 -1.500203
v 0.063901 -0.295597 -3.331586
v 0.049761 -0.145214 -3.378259
v 0.704348 -0.123906 2.686316
v 0.788923 0.342474 2.673842
v 0.625558 0.943066 2.655464
v 0.137112 0.856813 -0.670715
v 0.131882 1.191539 1.213916
v 0.069796 1.350312 0.918754
v 0.074992 1.204295 -0.209199
v 0.069785 1.674970 0.580304
v 0.074997 1.485272 -0.043456
v 0.068890 1.983372 0.197482
v 0.073975 1.755536 -0.043093
v 0.069798 2.149786 -0.212806
v 0.075027 2.050060 -0.262074
v 0.459018 -0.037226 -1.912056
v 0.414342 -0.224675 -1.893853
v 0.412682 0.221067 -1.937062
v 0.807438 -0.026953 1.286317
v 0.701172 -0.253638 0.904238
v 0.744596 -0.196850 1.947963
v 0.936369 -0.281397 0.784133
v 1.065247 -0.364013 1.038468
v 1.301550 -0.440286 1.509053
v 1.084424 -0.238606 1.057065
v 1.296159 -0.343293 1.465768
v 0.946286 -0.202260 0.790380
v 0.783738 -0.044887 1.870440
v 0.759756 -0.102944 0.892542
v 1.337510 -0.618572 0.760682
v 1.389584 -0.565875 0.720279
v 1.224974 -0.588034 0.624093
v 1.477715 -0.689451 1.052370
v 1.515503 -0.633160 0.987032
v 1.277434 -0.535203 0.584806
v 1.395944 -0.865356 0.397586
v 1.448195 -0.812701 0.357196
v 1.338738 -0.767200 0.431839
v 1.546700 -0.851261 0.741668
v 1.572511 -0.797264 0.702173
v 1.391631 -0.714773 0.392533
v 1.438058 -0.733648 0.505498
v 1.395633 -0.820232 0.502445
v 0.595398 -0.090523 3.307611
v 0.664949 0.247063 3.298140
v 0.536315 0.897404 3.275735
v 0.538919 -0.040551 3.673595
v 0.459228 0.691164 3.684548
v 0.399587 0.448143 3.929348
v 0.343222 -0.005865 4.026841
v 0.335441 0.131085 4.022812
v 0.150907 0.023129 4.478987
v 0.143126 0.105799 4.476556
v 0.201181 0.012247 4.261074
v 0.194757 0.110382 4.258187
v 0.187891 -0.402416 -4.110805
v 0.650846 -0.285281 -3.766216
v 0.597760 -0.389612 -4.150367
v 0.937145 -0.380176 -4.109432
v 0.815891 -0.441915 -4.344413
v 1.108181 -0.474357 -4.445184
v 1.074507 -0.514512 -4.592139
v 0.057191 -0.224232 -3.353735
v 0.187874 -0.506530 -4.078520
v 0.650827 -0.400475 -3.732244
v 0.597742 -0.504835 -4.117667
v 0.937127 -0.495572 -4.076358
v 0.815873 -0.557384 -4.311963
v 1.108163 -0.589801 -4.412313
v 1.074489 -0.629987 -4.559415
v 0.221886 -0.451964 -4.095114
v 0.650837 -0.342956 -3.749210
v 0.597751 -0.446827 -4.134098
v 0.937136 -0.438034 -4.092858
v 0.815882 -0.499503 -4.328219
v 1.108172 -0.532194 -4.428723
v 1.074498 -0.571963 -4.575840
v 0.082096 -0.456438 -4.094096
v 0.071263 -0.405871 -4.109790
v 0.071247 -0.507001 -4.078403
v -0.722903 -0.262438 1.289058
v -0.624769 -0.210502 -0.582737
v -0.911129 0.302487 1.275009
v -0.795594 0.150560 -0.615643
v -0.736559 1.003359 1.225872
v -0.625349 0.603653 -0.656569
v -0.356966 -0.229022 -2.309593
v -0.364803 -0.101959 -2.323970
v -0.353568 0.102850 -2.346906
v -0.475549 -0.220520 -1.447752
v -0.559397 0.025393 -1.470818
v -0.475464 0.339306 -1.500230
v -0.063850 -0.295578 -3.331589
v -0.049662 -0.145199 -3.378262
v -0.704673 -0.125878 2.685579
v -0.790207 0.342133 2.673729
v -0.626386 0.943084 2.655548
v -0.136914 0.856850 -0.670721
v -0.131676 1.191762 1.214311
v -0.069566 1.350435 0.918900
v -0.074838 1.204348 -0.209185
v -0.069576 1.675003 0.580326
v -0.074833 1.485298 -0.043448
v -0.068685 1.983382 0.197482
v -0.073789 1.755549 -0.043092
v -0.069564 2.149795 -0.212807
v -0.074803 2.050070 -0.262075
v -0.458968 -0.037091 -1.912086
v -0.414349 -0.224553 -1.893889
v -0.412554 0.221190 -1.937075
v 0.000076 0.221919 -2.360508
v 0.000092 0.402823 -1.954455
v -0.808079 -0.029067 1.284478
v -0.699548 -0.255743 0.903679
v -0.745153 -0.196412 1.947875
v -0.933771 -0.286576 0.783516
v -1.062406 -0.369319 1.037768
v -1.298318 -0.446901 1.508238
v -1.082719 -0.244070 1.056221
v -1.293445 -0.349977 1.464791
v -0.944367 -0.207161 0.789776
v -0.785665 -0.045868 1.869791
v -0.759251 -0.104949 0.891759
v -1.337535 -0.622193 0.760973
v -1.389082 -0.568716 0.720757
v -1.225105 -0.594157 0.623567
v -1.476929 -0.690319 1.053661
v -1.514323 -0.633294 0.988460
v -1.277013 -0.540606 0.584438
v -1.403181 -0.868992 0.399113
v -1.454729 -0.815515 0.358898
v -1.343960 -0.771793 0.432664
v -1.551347 -0.851054 0.744139
v -1.576429 -0.796717 0.704641
v -1.396146 -0.718530 0.393539
v -1.442154 -0.736196 0.506871
v -1.401342 -0.823551 0.503819
v 0.000081 1.485710 -0.043191
v 0.000681 -0.542752 1.327705
v -0.000083 -0.507862 -0.554015
v 0.000109 1.232691 1.211014
v 0.000106 0.922039 -0.675336
v -0.000016 -0.381415 -2.292011
v -0.000049 -0.443153 -1.426908
v 0.000101 0.548382 -1.519814
v 0.000022 -0.317509 -3.324784
v 0.000050 -0.137264 -3.380726
v -0.000016 -0.411283 2.695817
v 0.000007 1.144043 2.649479
v 0.000115 1.350304 0.918774
v 0.000074 1.207664 -0.207629
v 0.000104 1.675200 0.580595
v 0.000102 1.983516 0.197656
v 0.000093 1.755561 -0.043098
v 0.000117 2.149801 -0.212792
v 0.000112 2.050061 -0.262080
v -0.000032 -0.411483 -1.875797
v -0.595398 -0.090601 3.307587
v -0.664949 0.246996 3.298115
v -0.536315 0.897321 3.275731
v 0.000000 -0.342164 3.314353
v 0.000000 1.069085 3.270843
v -0.538919 -0.040583 3.673584
v -0.459228 0.691151 3.684542
v -0.000000 -0.234411 3.734550
v -0.000000 0.853407 3.703183
v -0.399587 0.448135 3.929344
v -0.000000 0.509374 3.951387
v -0.343222 -0.005865 4.026841
v -0.000000 -0.174598 4.039539
v -0.335441 0.131085 4.022812
v -0.000000 0.184393 4.021244
v -0.150907 0.023129 4.478987
v -0.000000 -0.056907 4.489077
v -0.143126 0.105799 4.476556
v -0.000000 0.137979 4.475609
v -0.201181 0.012247 4.261074
v -0.194757 0.110382 4.258187
v -0.000000 0.148582 4.257063
v -0.000000 -0.108638 4.271016
v -0.000000 0.106159 4.594880
v -0.000000 0.008718 4.601225
v -0.187829 -0.402744 -4.110756
v -0.650768 -0.285210 -3.766240
v -0.597692 -0.389668 -4.150364
v -0.937076 -0.380101 -4.109453
v -0.815828 -0.441908 -4.344419
v -1.108122 -0.474306 -4.445198
v -1.074451 -0.514497 -4.592145
v -0.057117 -0.224215 -3.353739
v -0.187845 -0.508114 -4.078036
v -0.650786 -0.400401 -3.732234
v -0.597710 -0.504933 -4.117617
v -0.937094 -0.495493 -4.076349
v -0.815846 -0.557380 -4.311939
v -1.108140 -0.589744 -4.412299
v -1.074470 -0.629968 -4.559393
v -0.221839 -0.453337 -4.094800
v -0.650777 -0.342884 -3.749218
v -0.597701 -0.446907 -4.134072
v -0.937085 -0.437958 -4.092865
v -0.815837 -0.499495 -4.328211
v -1.108131 -0.532141 -4.428723
v -1.074461 -0.571943 -4.575833
v -0.082051 -0.456413 -4.094101
v -0.071202 -0.405850 -4.109794
v 0.000022 -0.458916 -4.093326
v -0.071217 -0.506980 -4.078407
v 0.000031 -0.405860 -4.109792
v 0.000015 -0.506991 -4.078405
vn 0.6741 0.2465 0.6963
vn 0.9558 0.2776 -0.0974
vn 0.3721 0.9090 -0.1876
vn 0.3001 0.9520 0.0609
vn 0.9739 0.0999 -0.2037
vn 0.3552 0.8690 -0.3444
vn 0.4141 0.8378 -0.3558
vn 0.9204 0.2797 -0.2733
vn 0.2969 0.9028 -0.3112
vn 0.4557 0.8716 -0.1805
vn 0.9638 0.2542 0.0805
vn 0.9677 0.2494 -0.0364
vn 0.0024 0.5086 -0.8610
vn 0.1775 0.8976 0.4036
vn 0.2680 0.8044 -0.5302
vn 0.9999 0.0085 0.0078
vn 0.0027 0.7214 0.6925
vn 1.0000 0.0016 0.0056
vn 0.9997 0.0174 0.0159
vn -0.0017 0.0008 -1.0000
vn 0.0042 0.7788 0.6272
vn 0.0000 0.4430 -0.8965
vn -0.0001 -0.5967 -0.8025
vn 0.0016 0.9267 0.3757
vn 0.3955 0.8708 -0.2920
vn 0.9559 0.1967 -0.2182
vn -0.6285 -0.7594 0.1683
vn 0.9311 0.0584 0.3601
vn -0.4375 0.1092 -0.8926
vn -0.3189 -0.9458 0.0614
vn 0.5432 0.8396 0.0008
vn -0.2655 -0.9615 -0.0706
vn -0.7221 0.2376 -0.6497
vn -0.6888 -0.6616 0.2964
vn 0.5925 0.7688 -0.2407
vn -0.6152 -0.7731 0.1546
vn -0.4953 0.0166 -0.8686
vn 0.6562 0.7416 -0.1392
vn -0.5753 -0.0439 -0.8168
vn 0.6860 -0.6853 -0.2445
vn 0.7503 0.6126 -0.2485
vn -0.7070 -0.6570 0.2618
vn 0.6793 0.6697 -0.3000
vn 0.9201 -0.2273 0.3190
vn 0.8015 0.5487 -0.2377
vn 0.7197 0.6319 -0.2876
vn -0.8023 -0.5492 0.2340
vn -0.6302 -0.7139 0.3053
vn 0.9548 0.2290 0.1895
vn 0.3025 0.9464 0.1137
vn 0.9410 0.1956 0.2761
vn 0.2895 0.8447 0.4502
vn 0.1970 0.6187 0.7605
vn 0.9275 0.0725 0.3668
vn 0.8642 0.0008 0.5032
vn 0.0644 0.2400 0.9686
vn 0.3861 -0.8900 0.2426
vn 0.9707 0.0829 0.2255
vn 0.2032 0.9774 0.0580
vn 0.4587 -0.8394 0.2914
vn 0.1669 0.9718 0.1664
vn 0.8546 0.0668 0.5149
vn 0.4411 -0.7746 0.4533
vn 0.2107 0.9445 0.2520
vn 0.6300 0.0649 0.7739
vn 0.9282 0.1251 0.3504
vn -0.0308 0.9413 -0.3363
vn 0.0045 0.9655 -0.2603
vn 0.5682 0.2673 0.7782
vn -0.0108 0.9511 -0.3087
vn 0.0161 0.9644 -0.2638
vn -0.6777 -0.2000 -0.7076
vn 0.7795 0.1747 0.6015
vn 0.9764 -0.0591 -0.2076
vn -0.7063 -0.1923 -0.6812
vn 0.8978 0.1208 0.4234
vn -0.0875 -0.3111 -0.9463
vn 0.0042 -0.9622 0.2724
vn -0.0053 -0.9656 0.2599
vn 0.5731 0.2651 0.7754
vn 0.0191 -0.9629 0.2693
vn -0.0164 -0.9645 0.2637
vn -0.6780 -0.1994 -0.7075
vn 0.7799 0.1747 0.6010
vn 0.9765 -0.0591 -0.2075
vn -0.7062 -0.1920 -0.6815
vn 0.8979 0.1208 0.4233
vn -0.0935 -0.2541 -0.9626
vn 0.0014 -0.2942 -0.9558
vn 0.0017 -0.2985 -0.9544
vn 0.0687 0.9383 -0.3390
vn 0.1672 -0.9523 0.2553
vn -0.0000 -0.2964 -0.9551
vn 0.9578 0.0149 -0.2869
vn 0.4953 -0.8501 0.1792
vn -0.6787 0.2427 0.6932
vn -0.9556 0.2779 -0.0981
vn -0.3716 0.9092 -0.1877
vn -0.2996 0.9521 0.0610
vn -0.9739 0.1001 -0.2038
vn -0.3550 0.8691 -0.3444
vn -0.4138 0.8379 -0.3559
vn -0.9203 0.2799 -0.2733
vn -0.2967 0.9029 -0.3112
vn -0.4656 0.8658 -0.1834
vn -0.9637 0.2547 0.0806
vn -0.9677 0.2494 -0.0364
vn -0.0022 0.5086 -0.8610
vn -0.1750 0.8980 0.4037
vn -0.2677 0.8045 -0.5302
vn -0.9999 0.0085 0.0079
vn -0.0011 0.7215 0.6924
vn -1.0000 0.0016 0.0057
vn -0.9997 0.0175 0.0159
vn 0.0017 0.0008 -1.0000
vn -0.0039 0.7788 0.6272
vn 0.0001 0.4430 -0.8965
vn -0.0000 -0.5967 -0.8025
vn -0.0014 0.9268 0.3757
vn -0.3953 0.8709 -0.2920
vn -0.9558 0.1970 -0.2183
vn 0.6245 -0.7626 0.1687
vn -0.9293 0.0608 0.3644
vn 0.4373 0.1116 -0.8924
vn 0.3270 -0.9428 0.0651
vn -0.5519 0.8339 -0.0016
vn 0.2748 -0.9590 -0.0688
vn 0.7211 0.2220 -0.6563
vn 0.6777 -0.6741 0.2939
vn -0.5892 0.7709 -0.2419
vn 0.6089 -0.7788 0.1507
vn 0.4925 0.0164 -0.8701
vn -0.6517 0.7463 -0.1356
vn 0.5689 -0.0570 -0.8204
vn -0.7001 -0.6733 -0.2377
vn -0.7406 0.6258 -0.2447
vn 0.6964 -0.6696 0.2580
vn -0.6679 0.6820 -0.2979
vn -0.9215 -0.2099 0.3267
vn -0.7929 0.5626 -0.2342
vn -0.7099 0.6441 -0.2849
vn 0.7936 -0.5631 0.2304
vn 0.6190 -0.7244 0.3035
vn -0.9544 0.2293 0.1911
vn -0.3023 0.9464 0.1139
vn -0.9410 0.1956 0.2761
vn -0.2896 0.8447 0.4502
vn -0.1970 0.6187 0.7605
vn -0.9275 0.0725 0.3668
vn -0.8642 0.0008 0.5032
vn -0.0644 0.2400 0.9686
vn -0.3861 -0.8900 0.2426
vn -0.9707 0.0829 0.2255
vn -0.2032 0.9774 0.0580
vn -0.4587 -0.8394 0.2914
vn -0.1669 0.9718 0.1664
vn -0.8546 0.0668 0.5149
vn -0.4411 -0.7746 0.4533
vn -0.2107 0.9445 0.2520
vn -0.6300 0.0649 0.7739
vn -0.9282 0.1251 0.3503
vn 0.0278 0.9414 -0.3362
vn -0.0042 0.9655 -0.2605
vn -0.5682 0.2675 0.7782
vn 0.0114 0.9509 -0.3092
vn -0.0159 0.9644 -0.2640
vn 0.6777 -0.2004 -0.7075
vn -0.7795 0.1751 0.6014
vn -0.9764 -0.0589 -0.2076
vn 0.7063 -0.1927 -0.6811
vn -0.8978 0.1211 0.4233
vn 0.0873 -0.3106 -0.9465
vn 0.0102 -0.9622 0.2723
vn 0.0048 -0.9656 0.2601
vn -0.5731 0.2654 0.7753
vn -0.0215 -0.9624 0.2709
vn 0.0162 -0.9644 0.2639
vn 0.6780 -0.1998 -0.7074
vn -0.7799 0.1751 0.6009
vn -0.9765 -0.0588 -0.2075
vn 0.7062 -0.1924 -0.6814
vn -0.8979 0.1212 0.4232
vn 0.0935 -0.2552 -0.9623
vn -0.0010 -0.2948 -0.9555
vn -0.0010 -0.2982 -0.9545
vn -0.0684 0.9383 -0.3390
vn -0.1675 -0.9523 0.2552
vn -0.9578 0.0151 -0.2869
vn -0.4953 -0.8501 0.1792
vn 0.3922 -0.9194 -0.0311
vn 0.3999 -0.9148 -0.0561
vn 0.9439 -0.2944 -0.1498
vn 0.9703 -0.1790 -0.1628
vn 0.4239 -0.9034 -0.0647
vn 0.3798 -0.9235 -0.0529
vn 0.3647 -0.9265 0.0924
vn 0.4152 -0.9080 -0.0564
vn 0.9797 -0.1848 0.0774
vn 0.9715 -0.2256 0.0730
vn 0.9095 -0.4124 -0.0532
vn 0.9482 -0.3156 -0.0354
vn 0.9027 -0.3947 -0.1712
vn 0.3819 -0.9177 0.1094
vn 0.9683 -0.1809 0.1721
vn 0.3683 -0.9061 0.2082
vn 0.9652 -0.1939 0.1754
vn 0.9596 -0.0564 -0.2758
vn -0.3908 -0.9200 -0.0313
vn -0.3999 -0.9149 -0.0557
vn -0.9440 -0.2941 -0.1499
vn -0.9704 -0.1787 -0.1627
vn -0.4240 -0.9033 -0.0648
vn -0.3796 -0.9237 -0.0530
vn -0.3635 -0.9270 0.0922
vn -0.4154 -0.9079 -0.0564
vn -0.9790 -0.1880 0.0788
vn -0.9715 -0.2256 0.0728
vn -0.9087 -0.4139 -0.0532
vn -0.9471 -0.3188 -0.0364
vn -0.9028 -0.3946 -0.1713
vn -0.3806 -0.9181 0.1108
vn -0.9679 -0.1817 0.1734
vn -0.3682 -0.9061 0.2083
vn -0.9652 -0.1939 0.1754
vn -0.9596 -0.0561 -0.2758
usemtl Top
s off
f 40//1 33//1 36//1 38//1
f 3//2 4//2 6//2 5//2
f 5//3 6//3 18//3 19//3
f 5//4 19//4 153//4 161//4 17//4
f 30//5 28//5 8//5 9//5
f 124//6 30//6 9//6 123//6
f 154//7 18//7 6//7 12//7 157//7
f 6//8 4//8 11//8 12//8
f 123//9 9//9 14//9 159//9
f 41//10 31//10 37//10 39//10
f 3//11 5//11 17//11 16//11
f 19//12 18//12 21//12 20//12
f 23//13 21//13 163//13 150//13
f 153//14 19//14 20//14 162//14
f 18//15 154//15 163//15 21//15
f 22//16 23//16 25//16 24//16
f 162//17 20//17 22//17 164//17
f 20//18 21//18 23//18 22//18
f 24//19 25//19 27//19 26//19
f 23//20 150//20 166//20 25//20
f 164//21 22//21 24//21 165//21
f 26//22 27//22 168//22 167//22
f 25//23 166//23 168//23 27//23
f 165//24 24//24 26//24 167//24
f 157//25 12//25 30//25 124//25
f 12//26 11//26 28//26 30//26
f 35//27 34//27 44//27 42//27
f 38//28 36//28 45//28 46//28
f 32//29 41//29 39//29 34//29
f 33//30 1//30 35//30 36//30
f 31//31 40//31 38//31 37//31
f 1//32 32//32 34//32 35//32
f 44//33 47//33 53//33 50//33
f 42//34 44//34 50//34 55//34
f 39//35 37//35 43//35 47//35
f 36//36 35//36 42//36 45//36
f 34//37 39//37 47//37 44//37
f 37//38 38//38 46//38 43//38
f 48//39 50//39 53//39 49//39
f 48//40 49//40 52//40 51//40
f 43//41 46//41 52//41 54//41
f 45//42 42//42 55//42 51//42
f 47//43 43//43 54//43 53//43
f 46//44 45//44 51//44 52//44
f 53//45 54//45 49//45
f 54//46 52//46 49//46
f 55//47 50//47 48//47
f 51//48 55//48 48//48
f 16//49 17//49 58//49 57//49
f 17//50 161//50 174//50 58//50
f 57//51 58//51 60//51
f 58//52 174//52 178//52 60//52
f 60//53 178//53 180//53 61//53
f 59//54 57//54 61//54
f 59//55 61//55 63//55 62//55
f 61//56 180//56 184//56 63//56
f 177//57 59//57 62//57 182//57
f 66//58 67//58 65//58 64//58
f 67//59 191//59 188//59 65//59
f 182//60 62//60 66//60 192//60
f 63//61 184//61 191//61 67//61
f 62//62 63//62 67//62 66//62
f 186//63 64//63 194//63
f 193//64 65//64 188//64
f 194//65 64//65 65//65 193//65
f 61//66 57//66 60//66
f 14//67 68//67 91//67
f 69//68 71//68 72//68 70//68
f 75//69 84//69 69//69 14//69
f 14//70 69//70 70//70 68//70
f 71//71 73//71 74//71 72//71
f 70//72 72//72 87//72 85//72
f 84//73 86//73 71//73 69//73
f 88//74 89//74 74//74 73//74
f 72//75 74//75 89//75 87//75
f 86//76 88//76 73//76 71//76
f 68//77 70//77 85//77 83//77
f 13//78 92//78 76//78
f 77//79 78//79 80//79 79//79
f 75//80 13//80 77//80 84//80
f 13//81 76//81 78//81 77//81
f 79//82 80//82 82//82 81//82
f 78//83 85//83 87//83 80//83
f 84//84 77//84 79//84 86//84
f 88//85 81//85 82//85 89//85
f 80//86 87//86 89//86 82//86
f 86//87 79//87 81//87 88//87
f 76//88 83//88 85//88 78//88
f 76//89 92//89 90//89 83//89
f 68//90 83//90 90//90 91//90
f 14//91 91//91 221//91 159//91
f 92//92 13//92 158//92 222//92
f 91//93 90//93 219//93 221//93
f 9//94 8//94 75//94 14//94
f 219//93 90//93 92//93 222//93
f 192//95 66//95 64//95 186//95
f 134//96 132//96 130//96 127//96
f 95//97 97//97 98//97 96//97
f 97//98 111//98 110//98 98//98
f 97//99 109//99 161//99 153//99 111//99
f 122//100 101//100 100//100 120//100
f 124//101 123//101 101//101 122//101
f 154//102 157//102 104//102 98//102 110//102
f 98//103 104//103 103//103 96//103
f 123//104 159//104 106//104 101//104
f 135//105 133//105 131//105 125//105
f 95//106 108//106 109//106 97//106
f 111//107 112//107 113//107 110//107
f 115//108 150//108 163//108 113//108
f 153//109 162//109 112//109 111//109
f 110//110 113//110 163//110 154//110
f 114//111 116//111 117//111 115//111
f 162//112 164//112 114//112 112//112
f 112//113 114//113 115//113 113//113
f 116//114 118//114 119//114 117//114
f 115//115 117//115 166//115 150//115
f 164//116 165//116 116//116 114//116
f 118//117 167//117 168//117 119//117
f 117//118 119//118 168//118 166//118
f 165//119 167//119 118//119 116//119
f 157//120 124//120 122//120 104//120
f 104//121 122//121 120//121 103//121
f 129//122 136//122 138//122 128//122
f 132//123 140//123 139//123 130//123
f 126//124 128//124 133//124 135//124
f 127//125 130//125 129//125 93//125
f 125//126 131//126 132//126 134//126
f 93//127 129//127 128//127 126//127
f 138//128 144//128 147//128 141//128
f 136//129 149//129 144//129 138//129
f 133//130 141//130 137//130 131//130
f 130//131 139//131 136//131 129//131
f 128//132 138//132 141//132 133//132
f 131//133 137//133 140//133 132//133
f 142//134 143//134 147//134 144//134
f 142//135 145//135 146//135 143//135
f 137//136 148//136 146//136 140//136
f 139//137 145//137 149//137 136//137
f 141//138 147//138 148//138 137//138
f 140//139 146//139 145//139 139//139
f 147//140 143//140 148//140
f 148//141 143//141 146//141
f 149//142 142//142 144//142
f 145//143 142//143 149//143
f 108//144 171//144 172//144 109//144
f 109//145 172//145 174//145 161//145
f 171//146 176//146 172//146
f 172//147 176//147 178//147 174//147
f 176//148 179//148 180//148 178//148
f 175//149 179//149 171//149
f 175//150 181//150 183//150 179//150
f 179//151 183//151 184//151 180//151
f 177//152 182//152 181//152 175//152
f 189//153 185//153 187//153 190//153
f 190//154 187//154 188//154 191//154
f 182//155 192//155 189//155 181//155
f 183//156 190//156 191//156 184//156
f 181//157 189//157 190//157 183//157
f 186//158 194//158 185//158
f 193//159 188//159 187//159
f 194//160 193//160 187//160 185//160
f 179//161 176//161 171//161
f 106//162 218//162 195//162
f 196//163 197//163 199//163 198//163
f 202//164 106//164 196//164 211//164
f 106//165 195//165 197//165 196//165
f 198//166 199//166 201//166 200//166
f 197//167 212//167 214//167 199//167
f 211//168 196//168 198//168 213//168
f 215//169 200//169 201//169 216//169
f 199//170 214//170 216//170 201//170
f 213//171 198//171 200//171 215//171
f 195//172 210//172 212//172 197//172
f 105//173 203//173 220//173
f 204//174 206//174 207//174 205//174
f 202//175 211//175 204//175 105//175
f 105//176 204//176 205//176 203//176
f 206//177 208//177 209//177 207//177
f 205//178 207//178 214//178 212//178
f 211//179 213//179 206//179 204//179
f 215//180 216//180 209//180 208//180
f 207//181 209//181 216//181 214//181
f 213//182 215//182 208//182 206//182
f 203//183 205//183 212//183 210//183
f 203//184 210//184 217//184 220//184
f 195//185 218//185 217//185 210//185
f 106//186 159//186 221//186 218//186
f 220//187 222//187 158//187 105//187
f 218//93 221//93 219//93 217//93
f 101//188 106//188 202//188 100//188
f 219//93 222//93 220//93 217//93
f 192//189 186//189 185//189 189//189
usemtl Bottom
f 151//190 152//190 2//190 32//190 1//190
f 29//191 169//191 155//191 7//191
f 29//192 28//192 11//192 10//192
f 28//193 29//193 7//193 8//193
f 2//194 152//194 156//194 10//194
f 7//195 155//195 158//195 13//195
f 151//196 1//196 33//196 15//196 160//196
f 10//197 156//197 169//197 29//197
f 40//198 16//198 15//198 33//198
f 31//199 3//199 16//199 40//199
f 32//200 2//200 4//200 41//200
f 41//201 4//201 3//201 31//201
f 2//202 10//202 11//202 4//202
f 160//203 15//203 56//203 173//203
f 15//204 16//204 57//204 56//204
f 173//205 56//205 59//205 177//205
f 56//206 57//206 59//206
f 75//207 8//207 7//207 13//207
f 151//208 93//208 126//208 94//208 152//208
f 121//209 99//209 155//209 169//209
f 121//210 102//210 103//210 120//210
f 120//211 100//211 99//211 121//211
f 94//212 102//212 156//212 152//212
f 99//213 105//213 158//213 155//213
f 151//214 160//214 107//214 127//214 93//214
f 102//215 121//215 169//215 156//215
f 134//216 127//216 107//216 108//216
f 125//217 134//217 108//217 95//217
f 126//218 135//218 96//218 94//218
f 135//219 125//219 95//219 96//219
f 94//220 96//220 103//220 102//220
f 160//221 173//221 170//221 107//221
f 107//222 170//222 171//222 108//222
f 173//223 177//223 175//223 170//223
f 170//224 175//224 171//224
f 202//225 105//225 99//225 100//225

View File

@ -0,0 +1,107 @@
fileFormatVersion: 2
guid: 20ccdb20054f15a4bbe4c2d360b0b257
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 2
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 1
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations: []
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 0
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human: []
skeleton: []
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {instanceID: 0}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 2
humanoidOversampling: 1
avatarSetup: 0
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,32 @@
# Blender MTL File: 'Fish1.blend'
# Material Count: 3
newmtl Bottom
Ns 96.078431
Ka 1.000000 1.000000 1.000000
Kd 0.547680 0.640011 0.582281
Ks 0.500000 0.500000 0.500000
Ke 0.000000 0.000000 0.000000
Ni 1.000000
d 1.000000
illum 2
newmtl Fins
Ns 96.078431
Ka 1.000000 1.000000 1.000000
Kd 0.640002 0.524790 0.321365
Ks 0.500000 0.500000 0.500000
Ke 0.000000 0.000000 0.000000
Ni 1.000000
d 1.000000
illum 2
newmtl Top
Ns 96.078431
Ka 1.000000 1.000000 1.000000
Kd 0.640014 0.286931 0.192577
Ks 0.500000 0.500000 0.500000
Ke 0.000000 0.000000 0.000000
Ni 1.000000
d 1.000000
illum 2

View File

@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: a775fe7e0621ee946b74dbd809df72ed
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,859 @@
# Blender v2.79 (sub 0) OBJ File: 'Fish1.blend'
# www.blender.org
mtllib Fish1.mtl
o Fish_Cube
v 0.107083 -0.233144 0.204781
v 0.106941 0.463553 0.177310
v 0.101692 -0.158520 -0.598403
v 0.101637 0.395119 -0.620247
v 0.136605 0.127524 -0.610184
v 0.141761 0.072077 0.192524
v 0.104390 0.461637 -0.222917
v 0.104532 -0.230445 -0.195628
v 0.139205 0.099443 -0.208857
v 0.083122 0.277300 -1.040690
v 0.100902 0.152258 -1.035264
v 0.082591 -0.013816 -1.029304
v 0.053640 0.208193 -1.336631
v 0.062985 0.161360 -1.334563
v 0.053643 0.121858 -1.333222
v 0.045919 0.157700 -1.631885
v 0.051565 0.141391 -1.630751
v 0.045861 0.129494 -1.630770
v 0.046998 0.118230 -1.473797
v 0.043524 0.183941 -1.476694
v 0.054573 0.151825 -1.474480
v 0.085557 0.388599 -1.997011
v 0.070103 0.394180 -1.857174
v 0.045888 0.141247 -1.631234
v 0.050310 -0.184842 -1.690719
v 0.059436 -0.072136 -1.791445
v 0.050908 0.138212 -1.689398
v 0.042060 -0.044581 -1.554149
v 0.063207 -0.268678 -1.838948
v 0.053181 0.294119 -1.617452
v 0.046924 0.140522 -1.643176
v 0.069958 0.261035 -1.863015
v 0.058367 0.266138 -1.749155
v 0.050118 0.236963 -1.623501
v 0.048799 -0.043374 -1.670050
v 0.043352 0.016659 -1.581109
v 0.131601 0.067871 0.577689
v 0.096794 0.391398 0.565153
v 0.084389 0.328617 0.805974
v 0.128217 0.070036 0.649951
v 0.124313 0.014580 0.579836
v 0.099777 -0.199117 0.479993
v 0.096542 0.288420 0.710132
v 0.084589 -0.239907 0.592181
v 0.161340 0.015234 0.581631
v 0.108196 -0.138430 0.474792
v 0.100211 -0.254212 0.484779
v 0.093925 0.327669 0.922785
v 0.144116 0.085618 0.971006
v 0.076883 0.093979 1.176975
v 0.058304 0.130635 1.195303
v 0.070364 0.003233 1.102280
v 0.082771 -0.100438 0.968235
v 0.064934 -0.051916 1.046692
v 0.108852 0.328306 0.805280
v 0.166774 0.076378 0.651139
v 0.126673 0.289900 0.709294
v 0.138376 -0.137691 0.477970
v 0.148826 0.132729 0.357971
v 0.147959 0.284037 0.352373
v 0.166545 0.131249 0.394593
v 0.166134 0.281804 0.388931
v 0.130044 0.128628 0.412343
v 0.131194 0.131329 0.365047
v 0.114930 0.279289 0.411874
v 0.116213 0.282756 0.367887
v 0.227401 0.252284 0.176461
v 0.227416 0.168860 0.208610
v 0.193416 0.255620 0.167952
v 0.193651 0.171427 0.199665
v 0.233044 0.180276 0.070944
v 0.196606 0.182981 0.073007
v 0.183369 0.281675 0.288018
v 0.183920 0.152618 0.292451
v 0.212376 0.278892 0.310554
v 0.212570 0.150596 0.315247
v 0.020212 0.457687 -0.622439
v 0.025727 -0.295707 0.207766
v 0.020251 -0.221086 -0.595666
v 0.025559 0.526123 0.175361
v 0.023008 0.524207 -0.224866
v 0.023176 -0.293008 -0.192643
v 0.021827 0.334063 -1.044317
v 0.017027 -0.264522 -0.741651
v 0.020855 0.235384 -1.338471
v 0.020787 0.098781 -1.333083
v 0.042654 -0.184854 -1.691378
v 0.031529 -0.044598 -1.555055
v 0.026968 0.196089 -1.484226
v 0.024769 0.115876 -1.475596
v 0.070282 0.388575 -1.998322
v 0.057509 0.394160 -1.858256
v 0.055551 -0.268690 -1.839607
v 0.051219 -0.070169 -1.791334
v 0.042352 0.137816 -1.690120
v 0.037710 0.297903 -1.616043
v 0.057645 0.258564 -1.861254
v 0.025116 0.452175 0.563214
v 0.023743 0.350641 0.853172
v 0.025490 -0.258388 0.498331
v 0.031008 -0.274192 0.593875
v 0.026342 0.351595 0.942621
v 0.023562 0.087229 1.183620
v 0.019338 0.159591 1.197376
v 0.019364 0.123632 1.201777
v 0.021686 -0.004733 1.108736
v 0.020131 -0.058009 1.048737
v 0.019382 -0.114005 0.967074
v 0.029541 0.367527 0.876775
v 0.031606 -0.286903 0.501953
v 0.105903 0.462773 0.014439
v 0.024065 0.616279 -0.248977
v 0.106045 -0.232046 0.041836
v 0.140721 0.083213 0.029184
v 0.024689 -0.294609 0.044821
v 0.024521 0.525344 0.012490
v 0.010807 -0.385057 0.046741
v 0.024797 0.637212 -0.134315
v 0.009871 -0.396191 -0.028662
v 0.009869 -0.356965 -0.029340
v 0.008821 -0.378792 -0.119476
v 0.024221 0.584616 -0.224225
v 0.025726 0.589234 0.011822
v 0.023581 0.655798 -0.325229
v 0.024159 0.662887 -0.234639
v 0.011688 0.527805 -0.689284
v 0.014765 0.455997 -0.867182
v 0.012371 0.592262 -0.785364
v 0.014043 0.548736 -0.841726
v 0.012977 0.623578 -0.862620
v 0.014263 0.613969 -0.877099
v 0.020007 -0.113587 -0.935586
v 0.018294 -0.168145 -0.969731
v 0.009456 -0.297152 -0.913599
v 0.015732 -0.291726 -0.824311
v 0.014912 -0.263266 -0.884465
v 0.016465 -0.206023 -0.880085
v -0.104476 -0.233134 0.206129
v -0.104618 0.463562 0.178658
v -0.109848 -0.158520 -0.597769
v -0.109904 0.395120 -0.619587
v -0.144423 0.127535 -0.608539
v -0.139279 0.072090 0.194316
v -0.107169 0.461647 -0.221569
v -0.107027 -0.230435 -0.194280
v -0.141835 0.099456 -0.207066
v -0.075632 0.277249 -1.044243
v -0.092869 0.152193 -1.039786
v -0.076172 -0.013865 -1.032690
v -0.031581 0.208165 -1.338624
v -0.040916 0.161326 -1.336997
v -0.031584 0.121830 -1.335221
v 0.023677 0.157665 -1.633802
v 0.017955 0.141338 -1.633647
v 0.023615 0.129459 -1.632687
v -0.005013 0.118149 -1.478225
v -0.000978 0.183871 -1.480505
v -0.012297 0.151721 -1.480191
v 0.045838 0.388537 -2.000421
v 0.037354 0.394128 -1.859989
v 0.023648 0.141211 -1.633151
v 0.030404 -0.184874 -1.692433
v 0.038259 -0.072170 -1.793269
v 0.028663 0.138177 -1.691315
v 0.014680 -0.044624 -1.556504
v 0.043301 -0.268709 -1.840662
v 0.013582 0.294056 -1.620863
v 0.024677 0.140486 -1.645093
v 0.038635 0.260986 -1.865701
v 0.030919 0.266095 -1.751515
v 0.017792 0.236912 -1.626285
v 0.027876 -0.043407 -1.671851
v 0.017781 0.016619 -1.583308
v -0.124211 0.067882 0.579319
v -0.089536 0.391406 0.566341
v -0.074068 0.328625 0.806984
v -0.119906 0.070048 0.651533
v -0.116901 0.014591 0.581374
v -0.093659 -0.199108 0.481226
v -0.087446 0.288428 0.711305
v -0.077046 -0.239900 0.593211
v -0.153902 0.015249 0.583640
v -0.102138 -0.138421 0.476132
v -0.094037 -0.254203 0.486017
v -0.082115 0.327677 0.923907
v -0.131709 0.085631 0.972764
v -0.061856 0.093985 1.177859
v -0.043042 0.130639 1.195948
v -0.056298 0.003239 1.103087
v -0.070422 -0.100431 0.969212
v -0.051582 -0.051911 1.047434
v -0.098539 0.328316 0.806601
v -0.158444 0.076394 0.653211
v -0.117585 0.289911 0.710851
v -0.132275 -0.137678 0.479695
v -0.144338 0.132738 0.359732
v -0.143558 0.284045 0.354095
v -0.161564 0.131261 0.396589
v -0.161234 0.281815 0.390899
v -0.124755 0.128640 0.413967
v -0.126507 0.131341 0.366690
v -0.109635 0.279300 0.413305
v -0.111477 0.282767 0.369338
v -0.225523 0.252303 0.179301
v -0.225094 0.168879 0.211447
v -0.191662 0.255634 0.170309
v -0.191459 0.171441 0.202023
v -0.232678 0.180296 0.073877
v -0.196214 0.182996 0.075420
v -0.179900 0.281688 0.290220
v -0.180402 0.152631 0.294663
v -0.208585 0.278908 0.313165
v -0.208729 0.150613 0.317861
v -0.028601 0.457686 -0.622329
v -0.023094 -0.295705 0.208078
v -0.028563 -0.221087 -0.595572
v -0.023262 0.526126 0.175673
v -0.025813 0.524210 -0.224555
v -0.025646 -0.293006 -0.192331
v -0.014825 0.334052 -1.045110
v -0.024596 -0.264527 -0.741977
v 0.001184 0.235378 -1.338930
v 0.001115 0.098774 -1.333543
v 0.038060 -0.184862 -1.691774
v 0.025210 -0.044607 -1.555598
v 0.016694 0.196073 -1.485107
v 0.017164 0.115864 -1.476243
v 0.061116 0.388561 -1.999109
v 0.049951 0.394148 -1.858906
v 0.050957 -0.268697 -1.840003
v 0.046331 -0.070177 -1.791755
v 0.037218 0.137808 -1.690562
v 0.028572 0.297889 -1.616830
v 0.050417 0.258553 -1.861874
v -0.017883 0.452177 0.563488
v -0.012824 0.350643 0.853405
v -0.019150 -0.258386 0.498616
v -0.023451 -0.274189 0.594222
v -0.014283 0.351597 0.942880
v -0.008455 0.087230 1.183824
v -0.004050 0.159592 1.197525
v -0.004023 0.123633 1.201926
v -0.007543 -0.004732 1.108922
v -0.006757 -0.058007 1.048908
v -0.007055 -0.114004 0.967243
v -0.018319 0.367530 0.877080
v -0.025221 -0.286900 0.502315
v -0.105656 0.462783 0.015787
v -0.027169 0.616281 -0.248650
v -0.105514 -0.232036 0.043184
v -0.140319 0.083227 0.030975
v -0.024132 -0.294606 0.045132
v -0.024300 0.525346 0.012801
v -0.010235 -0.385056 0.046875
v -0.026437 0.637214 -0.133989
v -0.010262 -0.396190 -0.028533
v -0.010264 -0.356964 -0.029212
v -0.010368 -0.378792 -0.119354
v -0.027012 0.584618 -0.223898
v -0.025508 0.589237 0.012148
v -0.027653 0.655801 -0.324903
v -0.027075 0.662890 -0.234312
v -0.020327 0.527802 -0.689403
v -0.019696 0.455992 -0.867537
v -0.019642 0.592258 -0.785590
v -0.020310 0.548731 -0.841990
v -0.019036 0.623574 -0.862857
v -0.020082 0.613965 -0.877356
v -0.019423 -0.113597 -0.936287
v -0.017428 -0.168153 -0.970307
v -0.012247 -0.297156 -0.913863
v -0.021011 -0.291732 -0.824720
v -0.018414 -0.263272 -0.884872
v -0.019526 -0.206030 -0.880576
vn 0.9890 -0.1198 -0.0870
vn 0.9937 -0.1115 -0.0105
vn 0.5998 -0.7870 -0.1448
vn -0.0007 -0.9845 -0.1756
vn 0.6094 -0.7928 -0.0092
vn 0.9934 -0.1131 -0.0208
vn 0.9804 -0.1369 -0.1415
vn 0.5624 -0.7315 -0.3855
vn 0.9598 -0.2804 -0.0134
vn 0.0859 -0.0395 -0.9955
vn 0.9732 -0.2264 -0.0416
vn 0.0945 -0.0920 -0.9913
vn -0.1713 -0.1118 -0.9789
vn 0.0497 0.5585 -0.8280
vn -0.0247 0.2603 -0.9652
vn -0.0305 0.9232 -0.3831
vn 0.0025 -0.9189 0.3945
vn -0.0459 0.7682 -0.6385
vn 0.6219 -0.7759 0.1061
vn 0.9898 -0.1333 0.0503
vn 0.9918 -0.1255 0.0260
vn 0.0015 0.9719 0.2352
vn 0.9927 -0.1152 0.0363
vn 0.0039 0.7985 0.6019
vn 0.4932 -0.8558 0.1561
vn 0.9385 -0.2971 0.1761
vn 0.9184 0.2587 0.2994
vn 0.9700 0.2164 0.1105
vn 0.0049 -0.6315 0.7754
vn 0.8980 -0.3163 0.3060
vn 0.0057 -0.4458 0.8951
vn 0.0063 0.1215 0.9926
vn 0.1876 -0.6274 0.7558
vn 0.1697 -0.7239 0.6688
vn 0.9466 -0.3132 0.0761
vn 0.3557 -0.8656 0.3526
vn 0.8846 -0.3256 0.3337
vn 0.0008 -0.9906 0.1370
vn 0.9838 0.1671 0.0649
vn 0.1535 -0.8199 0.5516
vn -0.0037 0.8137 -0.5813
vn 0.0036 -0.8247 0.5655
vn 0.0042 -0.7478 0.6639
vn 0.1865 -0.3918 0.9010
vn 0.4591 0.6967 0.5512
vn 0.1417 0.1204 0.9826
vn -0.0001 -1.0000 -0.0067
vn 0.3849 0.8926 0.2347
vn -0.0706 0.8501 -0.5219
vn -0.0063 -0.1273 -0.9918
vn 0.0008 -0.9919 0.1274
vn 0.4199 -0.9064 -0.0471
vn 0.0055 -0.9929 -0.1186
vn 0.6445 -0.7217 -0.2523
vn 0.0095 -0.8820 -0.4711
vn 0.9942 -0.1073 -0.0104
vn 0.9562 -0.2697 0.1137
vn 0.9410 -0.2749 0.1971
vn 0.4901 0.8691 0.0670
vn -0.9859 -0.1165 -0.1198
vn -0.9938 -0.1114 0.0022
vn -0.6019 -0.7869 -0.1360
vn -0.6095 -0.7928 -0.0015
vn -0.9937 -0.1122 -0.0073
vn -0.9733 -0.1314 -0.1884
vn -0.5467 -0.7283 -0.4131
vn -0.9427 -0.2802 -0.1811
vn 0.0857 -0.0396 -0.9955
vn -0.9582 -0.2268 -0.1742
vn -0.1071 -0.0920 -0.9900
vn 0.1588 -0.1119 -0.9810
vn -0.0602 0.5585 -0.8273
vn 0.0125 0.2603 -0.9654
vn 0.0257 0.9232 -0.3834
vn 0.0379 0.7682 -0.6390
vn -0.6206 -0.7758 0.1140
vn -0.9891 -0.1332 0.0630
vn -0.9914 -0.1254 0.0387
vn -0.9921 -0.1151 0.0490
vn -0.4913 -0.8557 0.1624
vn -0.9362 -0.2970 0.1880
vn -0.9145 0.2588 0.3111
vn -0.9685 0.2165 0.1229
vn -0.8940 -0.3163 0.3174
vn -0.1780 -0.6273 0.7581
vn -0.1612 -0.7238 0.6709
vn -0.9456 -0.3132 0.0882
vn -0.3513 -0.8655 0.3571
vn -0.8803 -0.3256 0.3450
vn -0.9829 0.1672 0.0774
vn -0.1465 -0.8199 0.5535
vn -0.1751 -0.3918 0.9033
vn -0.4520 0.6968 0.5570
vn -0.1292 0.1204 0.9843
vn -0.3818 0.8927 0.2396
vn 0.0640 0.8501 -0.5227
vn -0.4113 -0.9056 -0.1039
vn -0.6476 -0.7134 -0.2677
vn -0.9942 -0.1072 0.0023
vn -0.9547 -0.2696 0.1258
vn -0.9385 -0.2748 0.2091
vn -0.4892 0.8691 0.0732
vn 0.9960 0.0898 -0.0035
vn 0.6303 0.7428 -0.2256
vn 0.9939 0.1097 -0.0119
vn 0.9885 0.1297 -0.0777
vn 0.9807 0.1493 -0.1261
vn 0.6544 0.7178 -0.2379
vn 0.0858 -0.0395 -0.9955
vn 0.9455 0.3232 -0.0399
vn 0.6339 0.7531 -0.1763
vn 0.9652 0.2443 -0.0934
vn 0.0109 0.9658 -0.2592
vn 0.9908 0.1097 0.0796
vn 0.9908 0.1154 0.0701
vn 0.9947 0.0988 0.0276
vn 0.9942 0.0986 0.0436
vn 0.9938 0.1056 0.0347
vn 0.9952 0.0921 0.0344
vn 0.5742 0.7778 0.2557
vn 0.0022 0.9438 0.3305
vn 0.6096 0.7927 -0.0077
vn 0.6177 0.7713 0.1537
vn 0.6060 0.7839 -0.1354
vn 0.9956 0.0933 -0.0034
vn -0.0007 0.9863 -0.1650
vn 0.0068 0.9481 -0.3180
vn -0.9959 0.0899 0.0092
vn -0.6270 0.7391 -0.2462
vn -0.9940 0.1093 0.0014
vn -0.9857 0.1255 -0.1125
vn -0.9743 0.1445 -0.1728
vn -0.6452 0.7148 -0.2697
vn 0.0857 -0.0395 -0.9955
vn -0.9242 0.3229 -0.2039
vn -0.6099 0.7477 -0.2627
vn -0.9440 0.2413 -0.2248
vn -0.9897 0.1098 0.0923
vn -0.9899 0.1155 0.0828
vn -0.9943 0.0989 0.0403
vn -0.9935 0.0987 0.0562
vn -0.9933 0.1057 0.0474
vn -0.9946 0.0922 0.0471
vn -0.5708 0.7779 0.2630
vn -0.6096 0.7927 0.0001
vn -0.6156 0.7713 0.1616
vn -0.6076 0.7840 -0.1269
vn -0.9956 0.0934 0.0093
vn 0.0012 0.9823 0.1873
vn -0.0064 0.0107 -0.9999
vn 0.9998 -0.0195 -0.0061
vn 0.9991 -0.0395 -0.0154
vn 0.9952 -0.0125 0.0974
vn -0.0535 0.7924 0.6077
vn 0.0018 0.9992 -0.0397
vn 0.9981 -0.0561 0.0246
vn 0.1272 0.9152 0.3825
vn 0.9969 -0.0453 0.0637
vn 0.0840 -0.8178 -0.5694
vn 0.9996 -0.0254 -0.0099
vn 0.9943 -0.0057 0.1062
vn 0.9974 -0.0520 0.0503
vn 0.0737 0.4383 -0.8958
vn 0.0764 0.4389 -0.8953
vn 0.0626 0.2364 -0.9696
vn 0.9982 -0.0555 0.0248
vn 0.2589 0.7530 0.6050
vn 0.9983 0.0029 0.0581
vn 0.0546 -0.7267 -0.6848
vn 0.9961 -0.0021 0.0878
vn 0.9980 0.0027 0.0630
vn 0.9962 -0.0023 0.0873
vn 0.9996 -0.0262 -0.0091
vn 0.0470 -0.9972 -0.0590
vn -0.4145 -0.0300 -0.9096
vn -0.9956 -0.0192 -0.0919
vn 0.4186 0.0400 0.9073
vn -0.0118 0.9973 0.0730
vn 0.1836 0.9660 -0.1821
vn 0.9922 0.0223 0.1223
vn 0.0194 -0.9834 -0.1804
vn -0.0660 -0.9939 -0.0885
vn 0.1221 0.8074 -0.5772
vn -0.9996 -0.0120 -0.0244
vn 0.9990 0.0164 0.0422
vn 0.1537 -0.9721 -0.1772
vn 0.8620 0.0207 0.5064
vn 0.0885 0.9960 0.0139
vn -0.8774 -0.0216 -0.4792
vn 0.0830 0.2372 -0.9679
vn 0.0505 -0.8182 -0.5728
vn -0.0408 -0.8712 0.4892
vn -0.0330 0.9297 0.3668
vn -0.0407 -0.8712 0.4892
vn -0.0419 -0.4429 0.8956
vn 0.0598 -0.7270 -0.6840
vn -0.0603 -0.6982 0.7134
vn -0.0756 -0.4450 0.8923
vn 0.0143 0.5298 -0.8480
vn 0.0009 -0.9893 0.1461
vn -0.0001 0.6906 0.7232
vn 1.0000 -0.0000 -0.0064
vn 0.9998 -0.0189 -0.0063
vn -0.0050 -0.6159 -0.7878
vn -0.0030 -0.8878 -0.4601
vn -0.0005 0.9970 -0.0780
vn 0.0030 -0.8745 0.4850
vn -0.0015 0.9719 -0.2353
vn 0.0023 0.9329 0.3600
vn -0.0041 0.7658 -0.6431
vn 0.9999 -0.0001 -0.0116
vn 0.9929 -0.1073 -0.0519
vn 0.0020 0.9501 0.3119
vn 0.9884 -0.1519 -0.0073
vn 0.0016 0.9688 0.2479
vn -0.0012 -0.9821 -0.1881
vn 0.0089 0.8241 -0.5663
vn -0.0031 0.8306 0.5569
vn 0.0086 0.2652 -0.9642
vn 0.9953 0.0939 -0.0228
vn 0.9994 0.0214 0.0257
vn 0.9998 0.0077 0.0165
vn 0.0040 0.8334 -0.5527
vn -0.0028 0.9268 0.3756
vn 0.0067 -0.4767 -0.8791
vn -0.0007 -0.9586 0.2848
vn 0.0060 -0.9212 -0.3889
vn 0.9997 -0.0183 -0.0150
vn 0.0091 0.6511 -0.7590
vn 0.0129 0.0755 -0.9971
vn 0.9994 -0.0349 0.0056
vn -0.0028 -0.9499 0.3124
vn -0.0005 -0.9982 0.0607
vn 0.9924 -0.1053 -0.0634
vn -0.9998 -0.0194 0.0066
vn -0.9995 -0.0070 -0.0321
vn -0.9973 -0.0163 -0.0720
vn -0.9872 -0.0587 -0.1484
vn -0.1935 0.9146 0.3550
vn -0.9931 -0.0493 -0.1068
vn 0.0168 -0.8179 -0.5751
vn -0.9825 -0.0306 -0.1836
vn -0.9980 -0.0069 -0.0632
vn -0.9913 -0.0548 -0.1198
vn 0.0792 0.4383 -0.8953
vn 0.1034 0.2364 -0.9661
vn -0.9871 -0.0592 -0.1486
vn -0.3599 0.7526 0.5514
vn -0.9935 -0.0007 -0.1137
vn 0.0652 -0.7267 -0.6839
vn -0.9965 -0.0055 -0.0837
vn -0.9939 0.0004 -0.1098
vn -0.9964 -0.0047 -0.0845
vn -0.9824 -0.0298 -0.1843
vn -0.0474 -0.9972 -0.0582
vn 0.4049 -0.0302 -0.9139
vn 0.9942 -0.0194 -0.1061
vn -0.4081 0.0402 0.9121
vn 0.0125 0.9973 0.0728
vn -0.1860 0.9660 -0.1794
vn -0.9904 0.0224 0.1365
vn -0.0221 -0.9834 -0.1801
vn 0.0646 -0.9939 -0.0894
vn -0.1302 0.8074 -0.5754
vn 0.9992 -0.0121 -0.0386
vn -0.9983 0.0166 0.0564
vn -0.1561 -0.9721 -0.1750
vn -0.8548 0.0208 0.5186
vn -0.0882 0.9960 0.0151
vn 0.8705 -0.0217 -0.4917
vn -0.1093 -0.4433 0.8897
vn -1.0000 0.0000 0.0064
vn -0.9998 -0.0188 0.0065
vn -1.0000 -0.0000 0.0012
vn -0.9935 -0.1072 -0.0392
vn -0.9884 -0.1518 0.0053
vn -0.9986 0.0387 -0.0365
vn -0.9998 0.0196 0.0094
vn -1.0000 0.0004 -0.0001
vn -0.9990 -0.0109 -0.0433
vn -0.9994 -0.0174 -0.0307
vn -0.9906 -0.1023 -0.0912
usemtl Bottom
s off
f 5//1 3//1 12//1 11//1
f 114//2 6//2 1//2 113//2
f 82//3 79//3 3//3 8//3
f 82//4 219//4 216//4 79//4
f 115//5 82//5 8//5 113//5
f 5//6 9//6 8//6 3//6
f 11//7 12//7 15//7 14//7
f 132//8 86//8 15//8 12//8
f 21//9 19//9 18//9 17//9
f 24//10 17//10 18//10
f 14//11 15//11 19//11 21//11
f 42//12 46//12 58//12 47//12
f 100//13 42//13 47//13 110//13
f 46//14 41//14 45//14 58//14
f 40//15 43//15 57//15 56//15
f 43//16 39//16 55//16 57//16
f 108//17 245//17 238//17 101//17
f 41//18 40//18 56//18 45//18
f 78//19 1//19 42//19 100//19
f 41//20 37//20 40//20
f 6//21 37//21 41//21 46//21
f 246//22 239//22 102//22 109//22
f 1//23 6//23 46//23 42//23
f 239//24 241//24 104//24 102//24
f 110//25 47//25 44//25 101//25
f 47//26 58//26 44//26
f 49//27 48//27 51//27 50//27
f 57//28 55//28 48//28 49//28
f 103//29 240//29 243//29 106//29
f 49//30 50//30 52//30
f 240//31 103//31 105//31 242//31
f 241//32 242//32 105//32 104//32
f 103//33 106//33 52//33 50//33
f 106//34 107//34 54//34 52//34
f 53//35 56//35 49//35
f 101//36 44//36 53//36 108//36
f 54//37 53//37 49//37 52//37
f 101//38 238//38 247//38 110//38
f 56//39 57//39 49//39
f 53//40 54//40 107//40 108//40
f 236//41 246//41 109//41 99//41
f 245//42 108//42 107//42 244//42
f 106//43 243//43 244//43 107//43
f 50//44 51//44 105//44 103//44
f 48//45 102//45 104//45 51//45
f 51//46 104//46 105//46
f 115//47 252//47 219//47 82//47
f 109//48 102//48 48//48
f 39//49 99//49 109//49 55//49
f 110//50 247//50 237//50 100//50
f 100//51 237//51 215//51 78//51
f 15//52 86//52 90//52 19//52
f 223//53 227//53 90//53 86//53
f 3//54 79//54 132//54 12//54
f 269//55 223//55 86//55 132//55
f 78//5 115//5 113//5 1//5
f 9//56 114//56 113//56 8//56
f 44//57 45//57 56//57 53//57
f 58//58 45//58 44//58
f 55//59 109//59 48//59
f 142//60 148//60 149//60 140//60
f 251//61 250//61 138//61 143//61
f 219//62 145//62 140//62 216//62
f 252//63 250//63 145//63 219//63
f 142//64 140//64 145//64 146//64
f 148//65 151//65 152//65 149//65
f 269//66 149//66 152//66 223//66
f 158//67 154//67 155//67 156//67
f 161//68 155//68 154//68
f 151//69 158//69 156//69 152//69
f 179//70 184//70 195//70 183//70
f 237//71 247//71 184//71 179//71
f 183//72 195//72 182//72 178//72
f 177//73 193//73 194//73 180//73
f 180//74 194//74 192//74 176//74
f 178//75 182//75 193//75 177//75
f 215//76 237//76 179//76 138//76
f 178//77 177//77 174//77
f 143//78 183//78 178//78 174//78
f 138//79 179//79 183//79 143//79
f 247//80 238//80 181//80 184//80
f 184//81 181//81 195//81
f 186//82 187//82 188//82 185//82
f 194//83 186//83 185//83 192//83
f 186//84 189//84 187//84
f 240//85 187//85 189//85 243//85
f 243//86 189//86 191//86 244//86
f 190//87 186//87 193//87
f 238//88 245//88 190//88 181//88
f 191//89 189//89 186//89 190//89
f 193//90 186//90 194//90
f 190//91 245//91 244//91 191//91
f 187//92 240//92 242//92 188//92
f 185//93 188//93 241//93 239//93
f 188//94 242//94 241//94
f 246//95 185//95 239//95
f 176//96 192//96 246//96 236//96
f 152//97 156//97 227//97 223//97
f 140//98 149//98 269//98 216//98
f 215//63 138//63 250//63 252//63
f 146//99 145//99 250//99 251//99
f 181//100 190//100 193//100 182//100
f 195//101 181//101 182//101
f 192//102 185//102 246//102
usemtl Top
f 111//103 2//103 6//103 114//103
f 77//104 4//104 10//104 83//104
f 4//105 7//105 9//105 5//105
f 4//106 5//106 11//106 10//106
f 10//107 11//107 14//107 13//107
f 83//108 10//108 13//108 85//108
f 16//109 17//109 24//109
f 20//110 21//110 17//110 16//110
f 85//111 13//111 20//111 89//111
f 13//112 14//112 21//112 20//112
f 89//113 226//113 222//113 85//113
f 38//114 39//114 43//114
f 37//115 38//115 43//115 40//115
f 63//116 37//116 6//116 64//116
f 2//117 38//117 65//117 66//117
f 63//118 65//118 38//118 37//118
f 6//119 2//119 66//119 64//119
f 38//120 98//120 99//120 39//120
f 235//121 236//121 99//121 98//121
f 111//122 7//122 81//122 116//122
f 2//123 80//123 98//123 38//123
f 7//124 4//124 77//124 81//124
f 2//122 111//122 116//122 80//122
f 7//125 111//125 114//125 9//125
f 218//126 81//126 77//126 214//126
f 85//127 222//127 220//127 83//127
f 248//128 251//128 143//128 139//128
f 214//129 220//129 147//129 141//129
f 141//130 142//130 146//130 144//130
f 141//131 147//131 148//131 142//131
f 147//132 150//132 151//132 148//132
f 220//133 222//133 150//133 147//133
f 153//134 161//134 154//134
f 157//135 153//135 154//135 158//135
f 222//136 226//136 157//136 150//136
f 150//137 157//137 158//137 151//137
f 175//138 180//138 176//138
f 174//139 177//139 180//139 175//139
f 200//140 201//140 143//140 174//140
f 139//141 203//141 202//141 175//141
f 200//142 174//142 175//142 202//142
f 143//143 201//143 203//143 139//143
f 175//144 176//144 236//144 235//144
f 248//145 253//145 218//145 144//145
f 139//146 175//146 235//146 217//146
f 144//147 218//147 214//147 141//147
f 139//145 217//145 253//145 248//145
f 144//148 146//148 251//148 248//148
f 217//149 235//149 98//149 80//149
usemtl Fins
f 218//150 259//150 122//150 81//150
f 116//151 81//151 122//151 123//151
f 132//152 79//152 84//152 137//152
f 31//153 27//153 32//153 33//153
f 96//154 233//154 226//154 89//154
f 91//155 228//155 229//155 92//155
f 92//155 23//155 22//155 91//155
f 30//156 20//156 34//156
f 96//157 30//157 23//157 92//157
f 16//158 24//158 31//158 33//158 34//158
f 97//159 32//159 27//159 95//159
f 19//160 28//160 36//160
f 33//161 32//161 22//161 23//161
f 34//162 33//162 23//162 30//162
f 95//163 27//163 26//163 94//163
f 94//164 231//164 232//164 95//164
f 94//165 26//165 29//165 93//165
f 20//166 16//166 34//166
f 89//167 20//167 30//167 96//167
f 36//168 28//168 25//168 35//168
f 91//169 22//169 32//169 97//169
f 26//170 35//170 25//170 29//170
f 18//171 36//171 35//171 31//171 24//171
f 27//172 31//172 35//172 26//172
f 18//173 19//173 36//173
f 63//174 64//174 59//174 61//174
f 64//175 66//175 60//175 59//175
f 74//176 73//176 69//176 70//176
f 65//177 63//177 61//177 62//177
f 66//178 65//178 62//178 60//178
f 73//179 75//179 67//179 69//179
f 75//180 76//180 68//180 67//180
f 76//181 74//181 70//181 68//181
f 68//182 70//182 72//182 71//182
f 69//183 67//183 71//183 72//183
f 70//184 69//184 72//184
f 67//185 68//185 71//185
f 61//186 59//186 74//186 76//186
f 62//187 61//187 76//187 75//187
f 60//188 62//188 75//188 73//188
f 59//189 60//189 73//189 74//189
f 93//190 230//190 231//190 94//190
f 95//191 232//191 234//191 97//191
f 25//192 87//192 93//192 29//192
f 92//193 229//193 233//193 96//193
f 224//194 230//194 93//194 87//194
f 19//195 90//195 88//195 28//195
f 97//196 234//196 228//196 91//196
f 225//197 224//197 87//197 88//197
f 28//197 88//197 87//197 25//197
f 227//198 225//198 88//198 90//198
f 133//199 270//199 269//199 132//199
f 254//200 256//200 119//200 117//200
f 126//201 263//201 214//201 77//201
f 112//202 124//202 125//202
f 80//203 116//203 123//203
f 259//204 249//204 112//204 122//204
f 249//205 261//205 124//205 112//205
f 262//206 125//206 124//206 261//206
f 78//207 215//207 254//207 117//207
f 121//208 258//208 257//208 120//208
f 217//209 80//209 123//209 260//209
f 120//210 257//210 252//210 115//210
f 120//211 119//211 121//211
f 115//212 117//212 119//212 120//212
f 118//213 255//213 260//213 123//213
f 115//214 78//214 117//214
f 123//202 122//202 118//202
f 125//215 262//215 255//215 118//215
f 256//216 258//216 121//216 119//216
f 220//217 264//217 127//217 83//217
f 122//202 112//202 125//202 118//202
f 128//218 265//218 263//218 126//218
f 264//219 266//219 129//219 127//219
f 77//220 83//220 127//220 126//220
f 128//221 129//221 131//221 130//221
f 126//222 127//222 129//222 128//222
f 131//223 268//223 267//223 130//223
f 130//224 267//224 265//224 128//224
f 266//225 268//225 131//225 129//225
f 216//226 221//226 84//226 79//226
f 270//227 133//227 137//227 274//227
f 137//228 84//228 135//228 136//228
f 134//229 271//229 273//229 136//229
f 136//230 273//230 274//230 137//230
f 133//231 132//231 137//231
f 221//232 272//232 135//232 84//232
f 272//233 271//233 134//233 135//233
f 136//234 135//234 134//234
f 253//235 260//235 259//235 218//235
f 269//236 274//236 221//236 216//236
f 168//237 170//237 169//237 164//237
f 229//155 228//155 159//155 160//155
f 167//238 171//238 157//238
f 233//239 229//239 160//239 167//239
f 153//240 171//240 170//240 168//240 161//240
f 234//241 232//241 164//241 169//241
f 156//242 173//242 165//242
f 170//243 160//243 159//243 169//243
f 171//244 167//244 160//244 170//244
f 232//245 231//245 163//245 164//245
f 231//246 230//246 166//246 163//246
f 157//247 171//247 153//247
f 226//248 233//248 167//248 157//248
f 173//249 172//249 162//249 165//249
f 228//250 234//250 169//250 159//250
f 163//251 166//251 162//251 172//251
f 155//252 161//252 168//252 172//252 173//252
f 164//253 163//253 172//253 168//253
f 155//254 173//254 156//254
f 200//255 198//255 196//255 201//255
f 201//256 196//256 197//256 203//256
f 211//257 207//257 206//257 210//257
f 202//258 199//258 198//258 200//258
f 203//259 197//259 199//259 202//259
f 210//260 206//260 204//260 212//260
f 212//261 204//261 205//261 213//261
f 213//262 205//262 207//262 211//262
f 205//263 208//263 209//263 207//263
f 206//264 209//264 208//264 204//264
f 207//265 209//265 206//265
f 204//266 208//266 205//266
f 198//267 213//267 211//267 196//267
f 199//268 212//268 213//268 198//268
f 197//269 210//269 212//269 199//269
f 196//270 211//270 210//270 197//270
f 162//192 166//192 230//192 224//192
f 156//271 165//271 225//271 227//271
f 165//197 162//197 224//197 225//197
f 249//272 262//272 261//272
f 217//273 260//273 253//273
f 257//274 258//274 256//274
f 252//275 257//275 256//275 254//275
f 252//276 254//276 215//276
f 260//272 255//272 259//272
f 259//272 255//272 262//272 249//272
f 214//277 263//277 264//277 220//277
f 265//278 267//278 268//278 266//278
f 263//279 265//279 266//279 264//279
f 274//280 273//280 272//280 221//280
f 270//281 274//281 269//281
f 273//282 271//282 272//282

View File

@ -0,0 +1,107 @@
fileFormatVersion: 2
guid: 18b51af828ae6ea4798a6ae72e22d613
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 2
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 1
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations: []
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 0
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human: []
skeleton: []
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {instanceID: 0}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 2
humanoidOversampling: 1
avatarSetup: 0
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,32 @@
# Blender MTL File: 'Fish2.blend'
# Material Count: 3
newmtl Body
Ns 96.078431
Ka 1.000000 1.000000 1.000000
Kd 0.059431 0.090905 0.640004
Ks 0.500000 0.500000 0.500000
Ke 0.000000 0.000000 0.000000
Ni 1.000000
d 1.000000
illum 2
newmtl Fins
Ns 96.078431
Ka 1.000000 1.000000 1.000000
Kd 0.578440 0.545266 0.305827
Ks 0.500000 0.500000 0.500000
Ke 0.000000 0.000000 0.000000
Ni 1.000000
d 1.000000
illum 2
newmtl Front
Ns 96.078431
Ka 1.000000 1.000000 1.000000
Kd 0.185842 0.393601 0.800000
Ks 0.500000 0.500000 0.500000
Ke 0.000000 0.000000 0.000000
Ni 1.000000
d 1.000000
illum 2

View File

@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: 12d2fb81db766c447b66dd08adcb3354
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,782 @@
# Blender v2.79 (sub 0) OBJ File: 'Fish2.blend'
# www.blender.org
mtllib Fish2.mtl
o Fish2_Fish
v 0.032501 -0.237935 0.387490
v 0.034938 0.345813 0.337037
v 0.039661 -0.346991 -0.544079
v 0.056989 0.468082 -0.574873
v 0.069463 0.059972 -0.564171
v 0.073923 0.541946 -0.179166
v 0.081441 -0.392333 -0.135266
v 0.082542 0.035753 -0.141729
v -0.010137 0.201819 -0.853963
v -0.005256 0.048933 -0.864634
v -0.015775 -0.222446 -0.840942
v 0.052439 0.499628 0.096669
v 0.045985 -0.353620 0.108999
v 0.070673 0.005530 0.103428
v -0.047725 0.111722 -0.957549
v -0.034949 0.048204 -0.971628
v -0.049305 -0.064498 -0.947467
v -0.173946 0.170480 -1.181617
v -0.195270 -0.020488 -1.232689
v -0.148629 -0.179669 -1.137380
v -0.093673 -0.145406 -1.047814
v -0.116796 0.013882 -1.106060
v -0.110430 0.131586 -1.079624
v -0.183107 -0.123706 -1.196450
v -0.197034 0.088735 -1.221552
v 0.068470 0.003693 0.148925
v 0.054022 0.227688 0.215816
v 0.059420 -0.090151 0.166048
v 0.045912 -0.352987 0.110521
v 0.076160 -0.004353 0.391261
v 0.049032 -0.251169 0.417331
v 0.051526 0.353449 0.365706
v 0.044395 0.195904 0.509945
v 0.054049 -0.038171 0.552902
v 0.039060 -0.053421 0.620191
v 0.037090 0.006623 0.660865
v 0.040434 -0.097237 0.591825
v 0.040454 0.049037 0.591375
v 0.037214 -0.028010 0.658317
v 0.036638 -0.067579 0.670215
v 0.036693 -0.038405 0.669066
v 0.086934 0.004936 0.168737
v 0.071695 0.242149 0.238232
v 0.077360 -0.094478 0.186628
v 0.056728 -0.253696 0.020983
v 0.067522 -0.245037 -0.040080
v 0.065711 -0.117965 -0.008762
v 0.062317 -0.155458 0.038193
v 0.102424 -0.238767 -0.071969
v 0.097002 -0.243108 -0.020096
v 0.102902 -0.132290 0.012601
v 0.109399 -0.055647 -0.079546
v 0.142588 -0.056784 -0.074591
v 0.135029 -0.240034 -0.066785
v 0.158010 -0.029831 -0.160071
v 0.149229 -0.243108 -0.156721
v 0.125162 -0.028580 -0.165272
v 0.116636 -0.241839 -0.161911
v 0.171597 -0.031728 -0.245499
v 0.160101 -0.219296 -0.219178
v 0.139003 -0.030459 -0.250688
v 0.127507 -0.218026 -0.224367
v 0.041096 0.551943 -0.179558
v -0.030745 0.212772 -0.851342
v 0.023108 0.479665 -0.571507
v 0.015796 0.510633 0.095125
v 0.032011 0.636678 -0.528663
v 0.044365 0.628962 -0.258979
v -0.034925 0.311380 -0.926962
v 0.015966 0.546609 -0.646363
v 0.003850 0.610763 -0.756530
v -0.031954 0.436742 -0.971557
v -0.011137 0.552414 -0.845402
v -0.045491 0.481915 -1.075134
v -0.033787 0.578278 -1.006559
v -0.059845 0.510358 -1.189205
v -0.057300 0.558999 -1.177725
v -0.077704 0.492148 -1.323414
v 0.006940 -0.359527 -0.538547
v -0.035394 -0.235751 -0.837270
v 0.050078 -0.403823 -0.132934
v 0.015489 -0.517444 -0.467826
v -0.036001 -0.344449 -0.819859
v -0.005256 -0.426272 -0.609126
v -0.013291 -0.554414 -0.644587
v -0.047224 -0.442844 -0.879963
v -0.026026 -0.491054 -0.735741
v -0.064410 -0.469534 -0.988260
v -0.057593 -0.555434 -0.932647
v -0.082566 -0.481460 -1.104797
v -0.082599 -0.522504 -1.099630
v -0.102059 -0.453106 -1.235322
v 0.060932 -0.364448 0.040718
v 0.032419 -0.496433 0.037941
v 0.033298 -0.431249 0.004796
v 0.038023 -0.562098 -0.050696
v 0.039110 -0.462802 -0.100882
v 0.043167 -0.520843 -0.144322
v 0.043603 -0.580775 -0.189218
v 0.021489 -0.372118 0.107950
v 0.028988 -0.385595 0.038103
v -0.069780 -0.237936 0.382538
v -0.067343 0.345812 0.332085
v -0.061495 -0.344952 -0.528535
v -0.044430 0.469685 -0.563716
v -0.017104 0.351239 0.353186
v -0.020013 -0.247237 0.413378
v -0.079939 0.062984 -0.541205
v -0.028065 0.542497 -0.178573
v -0.019020 -0.391185 -0.128636
v 0.032252 -0.414089 -0.131274
v -0.068467 0.035752 -0.149040
v -0.085387 0.203336 -0.842357
v -0.099371 0.050830 -0.850166
v -0.090774 -0.220932 -0.828775
v -0.049782 0.499740 0.092857
v -0.000127 0.521905 0.093972
v -0.001686 -0.377157 0.107257
v -0.055810 -0.353620 0.104075
v -0.080336 0.005529 0.096116
v -0.064776 0.140272 -0.953234
v -0.082677 0.112436 -0.948188
v -0.101961 0.049586 -0.947624
v -0.085114 -0.063772 -0.940149
v -0.067378 -0.094987 -0.941888
v -0.193993 0.193735 -1.168584
v -0.215973 0.171371 -1.155735
v -0.265559 -0.018993 -1.187777
v -0.192622 -0.178739 -1.111472
v -0.169993 -0.200431 -1.122588
v -0.235816 -0.018040 -1.218742
v -0.128736 0.156289 -1.069069
v -0.113500 -0.169303 -1.035780
v -0.132233 -0.144597 -1.027994
v -0.182588 0.015281 -1.064022
v -0.147568 0.132369 -1.058593
v -0.238748 -0.122524 -1.161317
v -0.221798 -0.129753 -1.194519
v -0.229031 0.086154 -1.211591
v -0.251419 0.089891 -1.186802
v -0.082539 0.003691 0.141614
v -0.074625 0.227687 0.209588
v -0.075184 -0.090153 0.159531
v 0.012056 -0.561805 -0.051320
v -0.056054 -0.352988 0.105587
v -0.113604 -0.004355 0.382073
v -0.089116 -0.251170 0.410643
v -0.021472 -0.261042 0.443531
v -0.086623 0.353447 0.359018
v -0.018496 0.358872 0.381929
v -0.024472 0.226686 0.505395
v -0.093457 0.195902 0.503271
v -0.107210 -0.038173 0.545095
v -0.098792 -0.053423 0.613516
v -0.100762 0.006622 0.654191
v -0.028548 -0.126786 0.589651
v -0.097418 -0.097238 0.585150
v -0.097398 0.049036 0.584701
v -0.028413 0.079820 0.586825
v -0.031829 0.010257 0.657385
v -0.100638 -0.028011 0.651642
v -0.031705 -0.024376 0.654836
v -0.029808 -0.022639 0.615641
v -0.032305 -0.076444 0.667227
v -0.101214 -0.067580 0.663541
v -0.032249 -0.047270 0.666078
v -0.101159 -0.038406 0.662392
v -0.030268 -0.052209 0.625158
v -0.102830 0.004935 0.159549
v -0.094381 0.242147 0.230191
v -0.095027 -0.094479 0.178282
v -0.058487 -0.253697 0.015404
v -0.047773 -0.244771 -0.043001
v -0.064556 -0.117967 -0.015069
v -0.065714 -0.155459 0.031995
v -0.094562 -0.239281 -0.080286
v -0.092896 -0.243797 -0.027399
v -0.102350 -0.132873 0.004267
v -0.101871 -0.056156 -0.088639
v -0.135506 -0.057509 -0.086128
v -0.127516 -0.240776 -0.077428
v -0.144980 -0.030753 -0.172358
v -0.135331 -0.243977 -0.168137
v -0.111739 -0.029283 -0.175173
v -0.102464 -0.242469 -0.171022
v -0.152942 -0.032788 -0.258430
v -0.141956 -0.220260 -0.231222
v -0.120075 -0.031281 -0.261315
v -0.109089 -0.218752 -0.234107
v 0.008199 0.552141 -0.179159
v -0.063327 0.213429 -0.846187
v -0.009617 0.480174 -0.567991
v -0.017192 0.510657 0.093768
v -0.050113 0.578566 -1.004461
v 0.015618 0.636892 -0.527312
v -0.000762 0.637106 -0.525961
v -0.051294 0.311690 -0.924617
v 0.027914 0.629093 -0.258455
v 0.011504 0.629224 -0.257934
v -0.067555 0.311999 -0.922243
v -0.016757 0.547120 -0.642824
v -0.012518 0.611025 -0.754695
v -0.028871 0.611287 -0.752862
v -0.048314 0.437031 -0.969452
v -0.064647 0.437320 -0.967349
v -0.043837 0.552971 -0.841401
v -0.076190 0.510650 -1.187075
v -0.073639 0.559290 -1.175600
v -0.061827 0.482206 -1.073005
v -0.078182 0.482497 -1.070875
v -0.066480 0.578855 -1.002361
v -0.092535 0.510941 -1.184945
v -0.089991 0.559581 -1.173474
v -0.094047 0.492439 -1.321283
v -0.110394 0.492731 -1.319152
v -0.028990 -0.358802 -0.533022
v -0.071371 -0.235024 -0.831412
v 0.014273 -0.403396 -0.130390
v -0.075652 -0.555070 -0.929870
v -0.002575 -0.517092 -0.465171
v -0.020645 -0.516740 -0.462517
v -0.054060 -0.344084 -0.817083
v -0.072119 -0.343720 -0.814307
v -0.041374 -0.425544 -0.603574
v -0.031350 -0.554049 -0.641811
v -0.049409 -0.553685 -0.639034
v -0.065283 -0.442480 -0.877187
v -0.083343 -0.442116 -0.874410
v -0.062144 -0.490325 -0.730189
v -0.100625 -0.481096 -1.102021
v -0.100658 -0.522140 -1.096854
v -0.082470 -0.469170 -0.985484
v -0.100529 -0.468806 -0.982708
v -0.093712 -0.554706 -0.927094
v -0.118684 -0.480732 -1.099245
v -0.118717 -0.521776 -1.094077
v -0.120118 -0.452742 -1.232546
v -0.138177 -0.452378 -1.229770
v -0.040599 -0.364139 0.038895
v 0.012317 -0.388271 0.035499
v 0.011906 -0.430011 -0.000626
v 0.010874 -0.496288 0.037317
v 0.013210 -0.459397 -0.105331
v -0.010543 -0.496288 0.037318
v -0.009681 -0.431101 0.004195
v -0.013916 -0.561922 -0.051440
v -0.012829 -0.462625 -0.101620
v -0.016069 -0.520642 -0.145167
v 0.013620 -0.517426 -0.148825
v 0.013990 -0.580469 -0.189893
v -0.015632 -0.580573 -0.190063
v -0.023978 -0.372080 0.106126
v -0.005689 -0.385473 0.037644
vn 0.0166 0.9652 -0.2611
vn 0.7220 -0.1901 -0.6652
vn -0.0289 -0.9140 -0.4047
vn 0.3238 -0.8026 -0.5009
vn 0.4143 0.7006 -0.5809
vn 0.6894 0.2459 -0.6814
vn 0.3087 -0.6998 0.6441
vn 0.2311 0.6546 0.7198
vn 0.9874 0.0734 0.1403
vn 0.9864 -0.1043 0.1274
vn 0.9882 0.1047 0.1118
vn 0.9809 0.0735 0.1800
vn 0.1555 0.4758 0.8657
vn 0.1556 0.7678 0.6215
vn -0.0542 -0.0735 0.9958
vn -0.2481 -0.9296 0.2726
vn 0.2234 -0.8629 0.4534
vn -0.0483 0.0394 0.9981
vn 0.9832 -0.0793 0.1647
vn -0.0570 0.9740 -0.2192
vn 0.0734 0.3045 0.9497
vn 0.9988 0.0000 0.0484
vn 0.9760 -0.0960 0.1956
vn 0.9930 0.0749 0.0917
vn 0.9933 -0.1037 0.0515
vn 0.9951 -0.0878 0.0445
vn 0.9975 0.0493 0.0504
vn 0.0087 0.9652 -0.2614
vn -0.6544 -0.1901 -0.7319
vn 0.0679 -0.9140 -0.4000
vn -0.2739 -0.8026 -0.5299
vn -0.3563 0.7006 -0.6182
vn -0.6203 0.2459 -0.7448
vn -0.3695 -0.6998 0.6113
vn -0.2996 0.6546 0.6941
vn -0.9963 0.0734 0.0443
vn -0.9940 -0.1043 0.0315
vn -0.9944 0.1047 0.0158
vn -0.9937 0.0735 0.0844
vn -0.2384 0.4758 0.8466
vn -0.2149 0.7678 0.6035
vn -0.0423 -0.0735 0.9964
vn 0.2206 -0.9296 0.2953
vn -0.2661 -0.8629 0.4297
vn -0.9945 -0.0793 0.0689
vn 0.0779 0.9740 -0.2127
vn -0.1648 0.3045 0.9382
vn -0.9988 -0.0000 -0.0484
vn -0.9903 -0.0961 0.1004
vn -0.9972 0.0749 -0.0047
vn -0.9936 -0.1038 -0.0447
vn -0.9948 -0.0878 -0.0518
vn -0.9977 0.0493 -0.0462
vn -0.1187 0.5274 -0.8413
vn 0.9921 0.0439 -0.1174
vn -0.0138 -0.9910 0.1332
vn 0.1072 0.5701 -0.8146
vn -0.0571 0.1612 -0.9853
vn -0.0230 -0.8041 0.5941
vn 0.1419 -0.9833 -0.1143
vn -0.0552 0.7822 0.6206
vn -0.0685 0.7694 0.6351
vn -0.0115 0.9542 0.2990
vn -0.8111 0.0580 -0.5821
vn 0.6723 -0.2066 0.7108
vn 0.0426 -0.9960 -0.0789
vn 0.8817 -0.0797 0.4650
vn 0.0198 -0.9353 -0.3532
vn -0.9859 0.0340 -0.1636
vn 0.9862 -0.0361 0.1616
vn -0.0432 -0.9987 0.0273
vn 0.1500 -0.1464 -0.9778
vn 0.9868 -0.0383 0.1575
vn 0.0409 0.9990 -0.0155
vn -0.9865 0.0375 -0.1593
vn 0.9893 -0.0553 -0.1353
vn 0.3103 0.8981 0.3115
vn 0.9996 -0.0197 0.0220
vn 0.9903 -0.0546 -0.1275
vn 0.9914 -0.0307 -0.1269
vn 0.0121 0.9995 0.0282
vn 0.9975 0.0458 -0.0542
vn -0.0670 -0.9177 -0.3915
vn 0.9897 -0.0221 -0.1412
vn -0.1331 -0.3302 -0.9345
vn 0.0034 0.9935 -0.1134
vn 0.9927 -0.1086 -0.0522
vn 0.0031 0.9937 -0.1123
vn -0.0001 -0.9909 0.1345
vn 0.9909 -0.0243 -0.1323
vn 0.9889 -0.0340 -0.1444
vn 0.0012 0.9916 -0.1290
vn -0.0481 -0.9706 -0.2360
vn 0.9914 -0.0214 -0.1290
vn -0.0375 0.9102 -0.4124
vn 0.9923 -0.0460 -0.1149
vn 0.9880 -0.0260 -0.1522
vn 0.9882 -0.0199 -0.1519
vn 0.9877 -0.0191 -0.1549
vn 0.9917 -0.0625 -0.1123
vn -0.0168 0.9714 -0.2367
vn 0.0111 -0.9791 0.2030
vn 0.2863 -0.9198 0.2682
vn -0.0484 -0.9813 -0.1863
vn 0.0512 0.9775 0.2047
vn -0.0192 -0.9998 0.0065
vn 0.0043 0.9947 -0.1025
vn -0.0862 -0.8920 -0.4438
vn 0.9837 -0.0338 -0.1767
vn 0.1432 -0.4203 -0.8960
vn 0.9986 0.0142 0.0516
vn 0.9949 0.0307 0.0963
vn 0.0287 -0.4961 0.8678
vn 0.1989 0.5924 -0.7807
vn 0.1498 0.9510 -0.2704
vn 0.9977 0.0216 0.0643
vn 0.9987 -0.0254 0.0437
vn 0.1394 0.6198 -0.7723
vn -0.9920 -0.0420 0.1186
vn 0.0032 -0.9911 0.1334
vn -0.0800 0.5707 -0.8172
vn -0.3325 0.1623 -0.9290
vn 0.0005 -0.8041 0.5945
vn -0.0781 -0.9833 -0.1646
vn 0.0104 0.7820 0.6232
vn 0.0193 0.7709 0.6367
vn -0.0165 0.9544 0.2981
vn 0.8208 0.0993 -0.5624
vn -0.7354 -0.2075 0.6451
vn -0.0134 -0.9963 -0.0847
vn -0.9151 -0.0850 0.3942
vn 0.0119 -0.9356 -0.3530
vn 0.9948 0.0386 -0.0946
vn -0.9949 -0.0413 0.0917
vn 0.0482 -0.9984 0.0310
vn -0.0798 -0.1477 -0.9858
vn -0.9949 -0.0441 0.0909
vn -0.0466 0.9987 -0.0190
vn 0.9947 0.0430 -0.0935
vn -0.9892 0.0555 0.1354
vn -0.3013 0.9148 0.2690
vn -0.9995 0.0199 -0.0224
vn -0.9903 0.0546 0.1277
vn -0.9914 0.0309 0.1271
vn 0.0122 0.9995 0.0286
vn -0.9975 -0.0458 0.0542
vn -0.0670 -0.9177 -0.3916
vn -0.9897 0.0221 0.1413
vn -0.1344 -0.3319 -0.9337
vn 0.0034 0.9935 -0.1135
vn -0.9927 0.1086 0.0523
vn -0.9909 0.0244 0.1323
vn -0.9889 0.0342 0.1446
vn 0.0012 0.9916 -0.1291
vn -0.0480 -0.9706 -0.2360
vn -0.9914 0.0214 0.1290
vn -0.9898 0.0581 0.1303
vn -0.9879 0.0274 0.1529
vn -0.9882 0.0199 0.1519
vn -0.9877 0.0190 0.1550
vn -0.9915 0.0639 0.1136
vn 0.0111 -0.9791 0.2031
vn -0.2482 -0.9134 0.3227
vn -0.9832 0.0350 0.1794
vn -0.4533 -0.3999 -0.7966
vn -0.9995 0.0230 0.0220
vn -0.9856 0.0436 -0.1635
vn -0.0804 -0.5002 0.8622
vn -0.1726 0.5937 -0.7859
vn -0.1355 0.9521 -0.2743
vn -0.9989 0.0290 0.0357
vn -0.9997 -0.0184 0.0149
vn -0.1095 0.6226 -0.7749
vn 0.9948 -0.0672 0.0761
vn 0.2948 0.9371 -0.1869
vn 0.9930 0.0521 0.1056
vn 0.9991 0.0211 -0.0379
vn 0.2810 0.9450 0.1674
vn 0.9968 -0.0391 -0.0691
vn 0.9306 0.1156 -0.3472
vn 0.2067 0.6852 -0.6984
vn 0.9675 0.0299 -0.2511
vn 0.9716 -0.0723 -0.2254
vn 0.2812 0.7991 0.5314
vn 0.9972 0.0298 0.0680
vn 0.9766 0.0731 0.2022
vn 0.9302 -0.1041 -0.3521
vn -0.1757 -0.2864 -0.9419
vn -0.3119 0.0884 -0.9460
vn 0.8568 -0.0780 -0.5098
vn 0.8396 0.0685 -0.5389
vn 0.6757 -0.7195 -0.1602
vn 0.7139 0.6704 -0.2023
vn 0.8592 0.1404 -0.4921
vn 0.8962 -0.1019 -0.4318
vn 0.8519 -0.0558 -0.5207
vn 0.1019 -0.6808 -0.7253
vn -0.2078 0.4453 -0.8709
vn 0.8454 0.0520 -0.5316
vn 0.9950 -0.0705 0.0711
vn 0.9968 0.0395 0.0695
vn 0.9971 -0.0658 0.0380
vn 0.3452 -0.8448 -0.4089
vn 0.3329 -0.9329 -0.1374
vn 0.7495 0.5844 -0.3109
vn 0.2716 0.6752 -0.6858
vn 0.8280 -0.5576 0.0599
vn 0.1965 -0.5192 -0.8317
vn 0.4153 -0.8940 0.1680
vn 0.9941 -0.0147 0.1074
vn 0.5492 -0.8032 0.2306
vn 0.3678 -0.8467 0.3846
vn -0.9974 -0.0683 -0.0211
vn -0.2792 0.9460 -0.1646
vn -0.9964 0.0823 -0.0202
vn -0.9959 0.0845 0.0307
vn -0.2845 0.9508 0.1225
vn -0.9951 -0.0785 0.0605
vn -0.9854 0.1546 -0.0707
vn -0.3439 0.7068 -0.6182
vn -0.9942 0.0896 0.0597
vn -0.9967 -0.0360 0.0731
vn -0.3328 0.8030 0.4943
vn -0.9961 0.0688 -0.0550
vn -0.9614 -0.1967 -0.1926
vn -0.9952 -0.0708 -0.0675
vn -0.7893 -0.2786 -0.5471
vn -0.7246 0.0972 -0.6823
vn -0.8200 -0.0671 0.5684
vn -0.8392 0.1042 0.5338
vn -0.4762 -0.6608 0.5801
vn -0.4501 0.6854 0.5724
vn -0.8248 0.2350 0.5143
vn -0.8139 -0.1093 0.5707
vn -0.7853 -0.1084 0.6095
vn -0.6967 -0.6977 -0.1668
vn -0.6769 0.4732 -0.5637
vn -0.7926 0.1739 0.5844
vn -0.9970 -0.0713 -0.0288
vn -0.9961 0.0593 -0.0660
vn -0.9962 -0.0667 -0.0557
vn -0.4844 -0.8273 -0.2845
vn -0.3728 -0.9256 -0.0649
vn -0.6498 0.6008 0.4656
vn -0.4169 0.6842 -0.5984
vn -0.5492 -0.4752 0.6874
vn -0.4633 -0.5012 -0.7308
vn -0.4070 -0.9106 0.0711
vn -0.9883 -0.1125 -0.1028
vn -0.5122 -0.8585 0.0252
vn -0.3818 -0.8570 0.3460
usemtl Front
s off
f 2//1 106//1 150//1 32//1
f 28//2 26//2 42//2 44//2
f 107//3 1//3 31//3 148//3
f 1//4 28//4 44//4 31//4
f 27//5 2//5 32//5 43//5
f 26//6 27//6 43//6 42//6
f 148//7 31//7 37//7 156//7
f 32//8 150//8 151//8 33//8
f 30//9 32//9 33//9 34//9
f 31//10 30//10 34//10 37//10
f 36//11 34//11 38//11
f 34//12 33//12 38//12
f 151//13 159//13 38//13 33//13
f 159//14 160//14 36//14 38//14
f 160//15 162//15 39//15 36//15
f 162//16 163//16 35//16 39//16
f 37//17 40//17 164//17 156//17
f 40//18 41//18 166//18 164//18
f 35//19 34//19 36//19 39//19
f 41//20 35//20 168//20 166//20
f 35//21 163//21 168//21
f 40//22 37//22 35//22 41//22
f 35//23 37//23 34//23
f 32//24 30//24 43//24
f 30//25 31//25 44//25
f 42//26 30//26 44//26
f 30//27 42//27 43//27
f 103//28 149//28 150//28 106//28
f 143//29 171//29 169//29 141//29
f 107//30 148//30 147//30 102//30
f 102//31 147//31 171//31 143//31
f 142//32 170//32 149//32 103//32
f 141//33 169//33 170//33 142//33
f 148//34 156//34 157//34 147//34
f 149//35 152//35 151//35 150//35
f 146//36 153//36 152//36 149//36
f 147//37 157//37 153//37 146//37
f 155//38 158//38 153//38
f 153//39 158//39 152//39
f 151//40 152//40 158//40 159//40
f 159//41 158//41 155//41 160//41
f 160//42 155//42 161//42 162//42
f 162//43 161//43 154//43 163//43
f 157//44 156//44 164//44 165//44
f 165//18 164//18 166//18 167//18
f 154//45 161//45 155//45 153//45
f 167//46 166//46 168//46 154//46
f 154//47 168//47 163//47
f 165//48 167//48 154//48 157//48
f 154//49 153//49 157//49
f 149//50 170//50 146//50
f 146//51 171//51 147//51
f 169//52 171//52 146//52
f 146//53 170//53 169//53
usemtl Fins
f 86//54 227//54 222//54 83//54
f 82//55 84//55 81//55
f 96//56 144//56 250//56 99//56
f 250//57 249//57 98//57 99//57
f 197//58 69//58 15//58 121//58
f 94//59 242//59 144//59 96//59
f 45//60 46//60 50//60
f 47//61 48//61 51//61
f 47//62 51//62 53//62 52//62
f 52//63 53//63 55//63 57//63
f 46//64 47//64 52//64 49//64
f 50//65 51//65 48//65 45//65
f 50//66 46//66 49//66 54//66
f 51//67 50//67 54//67 53//67
f 56//68 58//68 62//68 60//68
f 49//69 52//69 57//69 58//69
f 53//70 54//70 56//70 55//70
f 54//71 49//71 58//71 56//71
f 62//72 61//72 59//72 60//72
f 55//73 56//73 60//73 59//73
f 57//74 55//74 59//74 61//74
f 58//75 57//75 61//75 62//75
f 65//76 64//76 69//76 70//76
f 117//77 66//77 68//77 198//77
f 66//78 63//78 67//78 68//78
f 70//79 69//79 72//79 73//79
f 67//80 70//80 73//80 71//80
f 68//81 67//81 195//81 198//81
f 63//82 65//82 70//82
f 72//83 204//83 209//83 74//83
f 73//84 72//84 74//84 75//84
f 69//85 197//85 204//85 72//85
f 195//86 67//86 71//86 202//86
f 67//87 63//87 70//87
f 194//88 75//88 77//88 208//88
f 76//89 207//89 214//89 78//89
f 75//90 74//90 76//90 77//90
f 71//91 73//91 75//91
f 202//92 71//92 75//92 194//92
f 74//93 209//93 207//93 76//93
f 77//94 76//94 78//94
f 208//95 77//95 78//95 214//95
f 64//96 15//96 69//96
f 79//97 84//97 83//97 80//97
f 84//98 87//98 86//98 83//98
f 82//99 85//99 87//99 84//99
f 81//100 84//100 79//100
f 86//101 88//101 232//101 227//101
f 87//98 89//98 88//98 86//98
f 220//102 225//102 85//102 82//102
f 82//103 81//103 111//103 220//103
f 219//104 231//104 91//104 89//104
f 90//105 92//105 237//105 230//105
f 89//98 91//98 90//98 88//98
f 85//98 89//98 87//98
f 225//106 219//106 89//106 85//106
f 88//107 90//107 230//107 232//107
f 91//98 92//98 90//98
f 231//108 237//108 92//108 91//108
f 80//109 83//109 17//109
f 222//110 125//110 17//110 83//110
f 95//111 94//111 96//111 97//111
f 101//112 100//112 94//112 95//112
f 94//113 100//113 118//113 242//113
f 243//114 97//114 98//114 249//114
f 241//115 95//115 97//115 243//115
f 97//116 96//116 98//116
f 96//117 99//117 98//117
f 240//118 101//118 95//118 241//118
f 228//54 223//54 222//54 227//54
f 221//119 218//119 224//119
f 246//120 251//120 250//120 144//120
f 250//121 251//121 248//121 249//121
f 197//122 121//122 122//122 200//122
f 244//123 246//123 144//123 242//123
f 172//124 177//124 173//124
f 174//125 178//125 175//125
f 174//126 179//126 180//126 178//126
f 179//127 184//127 182//127 180//127
f 173//128 176//128 179//128 174//128
f 177//129 172//129 175//129 178//129
f 177//130 181//130 176//130 173//130
f 178//131 180//131 181//131 177//131
f 183//132 187//132 189//132 185//132
f 176//133 185//133 184//133 179//133
f 180//134 182//134 183//134 181//134
f 181//135 183//135 185//135 176//135
f 189//136 187//136 186//136 188//136
f 182//137 186//137 187//137 183//137
f 184//138 188//138 186//138 182//138
f 185//139 189//139 188//139 184//139
f 192//140 201//140 200//140 191//140
f 117//141 198//141 199//141 193//141
f 193//142 199//142 196//142 190//142
f 201//143 206//143 205//143 200//143
f 196//144 203//144 206//144 201//144
f 199//145 198//145 195//145 196//145
f 190//146 201//146 192//146
f 205//147 210//147 209//147 204//147
f 206//148 211//148 210//148 205//148
f 200//149 205//149 204//149 197//149
f 195//150 202//150 203//150 196//150
f 196//151 201//151 190//151
f 194//88 208//88 213//88 211//88
f 212//89 215//89 214//89 207//89
f 211//152 213//152 212//152 210//152
f 203//153 211//153 206//153
f 202//154 194//154 211//154 203//154
f 210//155 212//155 207//155 209//155
f 213//156 215//156 212//156
f 208//95 214//95 215//95 213//95
f 191//157 200//157 122//157
f 216//158 217//158 223//158 224//158
f 224//159 223//159 228//159 229//159
f 221//160 224//160 229//160 226//160
f 218//161 216//161 224//161
f 228//101 227//101 232//101 233//101
f 229//159 228//159 233//159 234//159
f 220//162 221//162 226//162 225//162
f 221//163 220//163 111//163 218//163
f 219//104 234//104 236//104 231//104
f 235//105 230//105 237//105 238//105
f 234//159 233//159 235//159 236//159
f 226//159 229//159 234//159
f 225//106 226//106 234//106 219//106
f 233//107 232//107 230//107 235//107
f 236//159 235//159 238//159
f 231//108 236//108 238//108 237//108
f 217//164 124//164 223//164
f 222//165 223//165 124//165 125//165
f 245//166 247//166 246//166 244//166
f 253//167 245//167 244//167 252//167
f 244//168 242//168 118//168 252//168
f 243//169 249//169 248//169 247//169
f 241//170 243//170 247//170 245//170
f 247//171 248//171 246//171
f 246//172 248//172 251//172
f 240//173 241//173 245//173 253//173
usemtl Body
f 29//174 28//174 1//174
f 6//175 4//175 65//175 63//175
f 12//176 2//176 27//176
f 4//177 6//177 8//177 5//177
f 12//178 6//178 63//178 66//178
f 5//179 8//179 7//179 3//179
f 9//180 10//180 16//180 15//180
f 65//181 4//181 9//181 64//181
f 4//182 5//182 10//182 9//182
f 5//183 3//183 11//183 10//183
f 2//184 12//184 66//184 117//184 106//184
f 6//185 12//185 14//185 8//185
f 93//186 45//186 13//186
f 10//187 11//187 17//187 16//187
f 131//188 19//188 24//188 138//188
f 139//189 25//189 19//189 131//189
f 19//190 22//190 24//190
f 22//191 19//191 25//191
f 21//192 133//192 130//192 20//192
f 132//193 23//193 18//193 126//193
f 15//194 16//194 22//194 23//194
f 16//195 17//195 21//195 22//195
f 22//196 21//196 20//196 24//196
f 138//197 24//197 20//197 130//197
f 126//198 18//198 25//198 139//198
f 23//199 22//199 25//199 18//199
f 14//200 26//200 28//200 29//200 13//200
f 14//201 12//201 27//201 26//201
f 14//202 13//202 45//202 48//202 47//202
f 3//203 79//203 80//203 11//203
f 81//204 79//204 3//204 7//204
f 121//205 15//205 23//205 132//205
f 64//206 9//206 15//206
f 17//207 125//207 133//207 21//207
f 11//208 80//208 17//208
f 240//209 111//209 81//209 7//209 93//209 101//209
f 8//210 14//210 47//210 46//210 45//210 93//210 7//210
f 13//211 100//211 101//211 93//211
f 107//212 118//212 100//212 13//212 29//212 1//212
f 145//213 102//213 143//213
f 109//214 190//214 192//214 105//214
f 116//215 142//215 103//215
f 105//216 108//216 112//216 109//216
f 116//217 193//217 190//217 109//217
f 108//218 104//218 110//218 112//218
f 113//219 122//219 123//219 114//219
f 192//220 191//220 113//220 105//220
f 105//221 113//221 114//221 108//221
f 108//222 114//222 115//222 104//222
f 103//223 106//223 117//223 193//223 116//223
f 109//224 112//224 120//224 116//224
f 239//225 119//225 172//225
f 114//226 123//226 124//226 115//226
f 131//227 138//227 137//227 128//227
f 139//228 131//228 128//228 140//228
f 128//229 137//229 135//229
f 135//230 140//230 128//230
f 134//231 129//231 130//231 133//231
f 132//232 126//232 127//232 136//232
f 122//233 136//233 135//233 123//233
f 123//234 135//234 134//234 124//234
f 135//235 137//235 129//235 134//235
f 138//236 130//236 129//236 137//236
f 126//237 139//237 140//237 127//237
f 136//238 127//238 140//238 135//238
f 120//239 119//239 145//239 143//239 141//239
f 120//240 141//240 142//240 116//240
f 120//241 174//241 175//241 172//241 119//241
f 104//242 115//242 217//242 216//242
f 218//243 110//243 104//243 216//243
f 121//244 132//244 136//244 122//244
f 191//245 122//245 113//245
f 124//246 134//246 133//246 125//246
f 115//247 124//247 217//247
f 240//248 253//248 239//248 110//248 218//248 111//248
f 112//249 110//249 239//249 172//249 173//249 174//249 120//249
f 119//250 239//250 253//250 252//250
f 107//251 102//251 145//251 119//251 252//251 118//251

View File

@ -0,0 +1,107 @@
fileFormatVersion: 2
guid: a4390fbf52f35f74182d41864970ab38
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 2
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 1
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations: []
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 0
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human: []
skeleton: []
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {instanceID: 0}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 2
humanoidOversampling: 1
avatarSetup: 0
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,32 @@
# Blender MTL File: 'Fish3.blend'
# Material Count: 3
newmtl Body
Ns 96.078431
Ka 1.000000 1.000000 1.000000
Kd 0.640000 0.108974 0.014853
Ks 0.500000 0.500000 0.500000
Ke 0.000000 0.000000 0.000000
Ni 1.000000
d 1.000000
illum 2
newmtl Outline
Ns 96.078431
Ka 1.000000 1.000000 1.000000
Kd 0.037569 0.037569 0.037569
Ks 0.500000 0.500000 0.500000
Ke 0.000000 0.000000 0.000000
Ni 1.000000
d 1.000000
illum 2
newmtl Stripes
Ns 96.078431
Ka 1.000000 1.000000 1.000000
Kd 0.640000 0.606397 0.511863
Ks 0.500000 0.500000 0.500000
Ke 0.000000 0.000000 0.000000
Ni 1.000000
d 1.000000
illum 2

View File

@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: 8f365ee3948dc29428f4f58ed44d3f86
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,107 @@
fileFormatVersion: 2
guid: 79596025bd08e99449ca8d75c7e741f0
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 2
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 1
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations: []
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 0
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human: []
skeleton: []
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {instanceID: 0}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 2
humanoidOversampling: 1
avatarSetup: 0
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,22 @@
# Blender MTL File: 'Manta ray.blend'
# Material Count: 2
newmtl Bottom
Ns 96.078431
Ka 1.000000 1.000000 1.000000
Kd 0.640000 0.640000 0.640000
Ks 0.500000 0.500000 0.500000
Ke 0.000000 0.000000 0.000000
Ni 1.000000
d 1.000000
illum 2
newmtl Top
Ns 96.078431
Ka 1.000000 1.000000 1.000000
Kd 0.064984 0.123192 0.267459
Ks 0.500000 0.500000 0.500000
Ke 0.000000 0.000000 0.000000
Ni 1.000000
d 1.000000
illum 2

View File

@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: 5b1b46c31a19acb4eb547e6dd6bafd9a
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,107 @@
fileFormatVersion: 2
guid: 8345c6c65c8b861449c490c0fa0e3b76
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 2
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 1
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations: []
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 0
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human: []
skeleton: []
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {instanceID: 0}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 2
humanoidOversampling: 1
avatarSetup: 0
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,22 @@
# Blender MTL File: 'Shark.blend'
# Material Count: 2
newmtl Bottom
Ns 96.078431
Ka 1.000000 1.000000 1.000000
Kd 0.548766 0.548766 0.548766
Ks 0.500000 0.500000 0.500000
Ke 0.000000 0.000000 0.000000
Ni 1.000000
d 1.000000
illum 2
newmtl Top
Ns 96.078431
Ka 1.000000 1.000000 1.000000
Kd 0.083919 0.171220 0.267460
Ks 0.500000 0.500000 0.500000
Ke 0.000000 0.000000 0.000000
Ni 1.000000
d 1.000000
illum 2

View File

@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: 3c800ac2645be134684538c4799501e6
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,971 @@
# Blender v2.79 (sub 0) OBJ File: 'Shark.blend'
# www.blender.org
mtllib Shark.mtl
o Shark_Cylinder
v 1.161341 -0.613085 1.805325
v 1.355604 -0.439579 -1.028140
v 1.429403 0.324256 1.805739
v 1.619449 0.338780 -0.984319
v 1.157092 1.453784 1.809510
v 1.347761 1.060259 -1.030703
v 1.540850 -0.086674 -3.657514
v 1.549678 0.209325 -3.652562
v 1.530868 0.539503 -3.662251
v 1.362313 -0.331265 -2.402929
v 1.491981 0.274317 -2.378183
v 1.359821 0.776506 -2.404514
v 1.731278 0.036504 -5.338743
v 1.403454 -0.139077 -2.395050
v 1.709890 0.408234 -5.350785
v 2.333176 0.036870 -6.419459
v 1.425284 -0.032308 -3.072356
v 2.322449 0.408665 -6.425424
v 2.018275 1.296216 -5.849321
v 2.445380 1.330421 -6.657874
v 2.338176 2.073711 -6.460701
v 2.611768 1.895764 -6.985504
v 2.673342 2.590297 -7.093329
v 2.838994 2.573441 -7.406596
v 1.203763 -0.410194 4.042179
v 1.366381 0.330500 4.041625
v 1.202418 1.288257 4.041761
v 2.055885 -0.701315 -5.912387
v 2.367383 -0.616480 -6.468160
v 2.332372 -1.157548 -6.410810
v 2.517473 -0.964128 -6.752656
v 2.603697 -1.430032 -6.897367
v 2.720724 -1.376273 -7.110828
v 0.767260 0.080754 5.526381
v 1.107743 1.129173 5.591802
v 0.925267 0.432955 5.557511
v 0.670786 0.901413 6.918539
v 0.355816 0.884632 7.572038
v 0.667596 0.357650 6.946268
v 0.837813 0.237011 6.306722
v 0.555259 1.422500 -1.162522
v 0.209523 1.752786 1.802593
v 0.103772 2.026057 1.340062
v 0.255515 1.842675 -0.473008
v 0.114991 2.517333 0.855893
v 0.212327 2.124336 -0.323140
v 0.129487 3.192832 0.469519
v 0.186782 2.533668 -0.298314
v 0.153626 3.640798 -0.162789
v 0.166608 3.632461 -0.277033
v 1.463121 0.240921 -3.035581
v 1.399727 -0.205233 -3.083047
v 1.393210 0.654067 -3.078941
v 1.133296 0.681565 -3.811832
v 0.896529 0.881271 -3.199170
v 0.889353 1.054672 -3.372914
v 1.003408 1.006085 -3.705187
v 0.967036 1.224997 -3.602655
v 0.996063 1.155889 -3.687167
v 1.267557 -0.237847 1.809293
v 1.119279 -0.578480 1.208347
v 1.185874 -0.542894 2.862169
v 1.747165 -0.816153 1.312155
v 1.754423 -0.843468 1.817311
v 1.766781 -0.796498 2.669700
v 1.752794 -0.683083 1.815742
v 1.764075 -0.688164 2.572783
v 1.745684 -0.712434 1.304483
v 1.236934 -0.288096 2.741167
v 1.200498 -0.327262 1.196760
v 2.340041 -1.168205 1.607417
v 2.427473 -1.070395 1.577085
v 2.310391 -1.148776 1.304001
v 2.390507 -1.201247 2.124869
v 2.473573 -1.100593 2.049197
v 2.398088 -1.051158 1.275685
v 2.817109 -1.631464 1.114522
v 2.904542 -1.533653 1.084190
v 2.568105 -1.398463 1.057972
v 2.678261 -1.482296 1.769573
v 2.761327 -1.381643 1.693901
v 2.655802 -1.300844 1.029656
v 2.681795 -1.317354 1.314326
v 2.645808 -1.465121 1.291506
v 1.593955 -0.228952 -2.986267
v 1.624929 -0.346584 -2.661629
v 1.621547 -0.190402 -2.656925
v 1.592839 -0.088463 -2.983464
v 1.783267 -0.215245 -2.995990
v 1.805613 -0.298134 -2.828533
v 1.805106 -0.199706 -2.828182
v 1.782893 -0.126697 -2.995811
v 1.948484 -0.174133 -3.022133
v 1.948499 -0.266723 -3.026920
v 1.809652 -0.198877 -2.834208
v 1.334932 0.343736 4.149661
v 1.172254 -0.362008 4.144665
v 1.195681 1.295147 4.155999
v 1.315229 0.356454 4.214036
v 1.153451 -0.340947 4.207802
v 1.191662 1.289645 4.222026
v 1.267353 0.359137 4.379926
v 1.105622 -0.288994 4.369981
v 1.181359 1.272820 4.390671
v 1.247515 0.383618 4.447219
v 1.086000 -0.266224 4.436782
v 1.177090 1.269246 4.461333
v 1.188243 0.391132 4.652089
v 1.027374 -0.201920 4.637300
v 1.164335 1.252060 4.671043
v 1.169082 0.421254 4.716345
v 1.008421 -0.179797 4.701751
v 1.160211 1.250241 4.739718
v 0.874957 -0.075352 4.662783
v 0.891544 -0.091446 4.605419
v 1.007796 1.171677 4.695830
v 1.011405 1.180558 4.637465
v 1.032328 0.433940 4.619342
v 1.015559 0.438890 4.677128
v 0.830441 -0.149205 4.367845
v 0.847334 -0.164374 4.309135
v 0.908860 1.170659 4.386338
v 0.912535 1.180606 4.327084
v 0.986568 0.399336 4.317515
v 0.969489 0.401304 4.376641
v 0.951751 -0.202560 4.150430
v 0.967077 -0.216446 4.097291
v 0.983362 1.146970 4.160326
v 0.986690 1.155808 4.106644
v 1.101473 0.371559 4.101429
v 1.085890 0.372812 4.155032
v 0.268904 1.863930 -0.633352
v -0.000385 -1.070475 1.814274
v 0.371505 -0.909540 -1.192632
v -1.151832 -0.638242 1.821365
v -0.604038 -0.445689 -1.359028
v -1.431236 0.322799 1.799854
v -0.875307 0.331038 -1.403779
v -1.167095 1.452642 1.794483
v -0.616068 1.054236 -1.357163
v -0.001167 1.818586 1.802392
v 0.333930 1.524173 -1.196362
v 0.479003 -0.092521 -4.059981
v 1.021000 -0.335439 -3.855252
v 0.465755 0.203331 -4.067000
v 0.477937 0.533740 -4.058715
v 1.001974 0.728357 -3.861769
v 0.619974 -0.690146 -2.548871
v -0.122491 -0.336422 -2.694144
v -0.255124 0.268270 -2.718973
v -0.125187 0.771382 -2.692467
v 0.613453 1.108815 -2.550155
v 1.554347 0.035427 -5.439596
v 1.643071 -0.018241 -5.389043
v -0.164591 -0.144517 -2.702097
v 1.572191 0.407396 -5.429275
v 1.640947 0.427455 -5.390076
v 2.177567 0.035923 -6.508158
v 2.255630 -0.017809 -6.463683
v 0.097811 -0.037782 -3.410594
v 2.184750 0.407827 -6.503914
v 2.253506 0.427886 -6.464715
v 1.919415 1.295617 -5.904114
v 1.820368 1.295019 -5.958996
v 2.246409 1.329224 -6.765204
v 2.345458 1.329822 -6.711750
v 2.238966 2.073112 -6.514523
v 2.139390 2.072514 -6.568521
v 2.412472 1.894567 -7.092207
v 2.511930 1.895165 -7.038947
v 2.573988 2.589698 -7.146964
v 2.474358 2.589099 -7.200732
v 2.639884 2.572243 -7.513739
v 2.739108 2.572841 -7.460327
v 0.000000 -0.873686 4.041761
v -1.210183 -0.411236 4.043622
v -1.370194 0.331790 4.042178
v -1.202418 1.288257 4.041761
v 1.972605 -0.701822 -5.959858
v 1.889324 -0.702329 -6.007329
v 2.200563 -0.617493 -6.562591
v 2.282294 -0.616989 -6.516205
v 2.249026 -1.158054 -6.457584
v 2.165244 -1.158562 -6.504575
v 2.350127 -0.965142 -6.845928
v 2.433587 -0.964635 -6.799396
v 2.520148 -1.430538 -6.944079
v 2.436443 -1.431045 -6.990867
v 2.553402 -1.377287 -7.204187
v 2.636688 -1.376780 -7.157691
v 0.000000 1.608400 4.041761
v 0.000000 -0.476348 5.261475
v -0.767260 0.080695 5.526398
v -0.000000 1.484925 5.610204
v -1.107743 1.129081 5.591780
v -0.925267 0.432860 5.557522
v -0.000000 1.255731 6.914379
v -0.670786 0.901413 6.918539
v -0.000000 1.062159 7.767702
v -0.355816 0.884632 7.572038
v -0.000000 0.142296 7.117073
v -0.667596 0.357650 6.946268
v -0.837813 0.236952 6.306741
v -0.000000 -0.259194 6.343533
v -0.000000 0.849944 7.863788
v 0.124295 1.421270 -1.229172
v -0.210999 1.752779 1.802168
v -0.118029 2.025973 1.335500
v -0.007010 2.026015 1.337799
v 0.136093 1.842472 -0.484073
v 0.018617 1.842270 -0.494979
v -0.106546 2.517200 0.848679
v 0.004185 2.517266 0.852286
v 0.092779 2.124180 -0.331627
v -0.025044 2.124025 -0.339973
v -0.091961 3.192680 0.461278
v 0.018683 3.192756 0.465393
v 0.067968 2.533553 -0.304585
v -0.050976 2.533437 -0.310867
v -0.067807 3.640643 -0.171210
v 0.042825 3.640721 -0.167006
v 0.047592 3.632377 -0.281587
v -0.071454 3.632293 -0.286144
v 0.772536 -0.507105 -3.237849
v 0.065861 0.234563 -3.445264
v 0.123307 -0.210405 -3.400085
v 0.123512 0.648840 -3.401863
v 0.763599 0.942432 -3.240889
v 0.871850 0.680131 -3.911327
v 0.626893 0.880042 -3.279530
v 0.928360 1.005712 -3.730226
v 0.813816 1.054306 -3.397296
v 0.737672 1.053945 -3.421320
v 0.853146 1.005339 -3.755197
v 0.920659 1.155516 -3.712236
v 0.892128 1.224625 -3.627493
v 0.817102 1.224254 -3.652290
v 0.846217 1.155144 -3.736960
v -1.268621 -0.238427 1.806082
v -1.109738 -0.593714 1.161330
v -1.195048 -0.529206 2.867613
v -1.711910 -0.821600 1.310859
v -1.739216 -0.849174 1.815705
v -1.788786 -0.796833 2.666510
v -1.738196 -0.687103 1.813933
v -1.781968 -0.689533 2.569696
v -1.711692 -0.718283 1.298352
v -1.245021 -0.282738 2.746661
v -1.193982 -0.336508 1.143171
v -2.313440 -1.167218 1.578442
v -2.399461 -1.069549 1.543910
v -2.269580 -1.148116 1.276731
v -2.388141 -1.199701 2.092990
v -2.467672 -1.099238 2.013371
v -2.355960 -1.050637 1.244201
v -2.766279 -1.631637 1.064243
v -2.852300 -1.533968 1.029711
v -2.515157 -1.398406 1.019171
v -2.658551 -1.481520 1.724910
v -2.738082 -1.381057 1.645290
v -2.601537 -1.300927 0.986641
v -2.640865 -1.317127 1.269795
v -2.603677 -1.464878 1.248877
v -0.097157 -0.235671 -3.394263
v -0.271316 -0.353788 -3.089288
v -0.271778 -0.197720 -3.095201
v -0.096640 -0.095244 -3.397193
v -0.259410 -0.223423 -3.494359
v -0.356799 -0.306733 -3.350839
v -0.356992 -0.208317 -3.351622
v -0.259626 -0.134881 -3.494719
v -0.394620 -0.183505 -3.593030
v -0.391828 -0.276081 -3.596906
v -0.358173 -0.207518 -3.359591
v -1.337966 0.332537 4.150786
v -1.177861 -0.382345 4.150884
v 0.000000 1.611519 4.156446
v -1.195681 1.270149 4.150405
v 0.000000 -0.834360 4.124821
v -1.315229 0.356884 4.214012
v 0.000000 1.604932 4.222229
v -1.157012 -0.341105 4.208401
v -1.191662 1.289798 4.222060
v 0.000000 -0.819175 4.177609
v -1.267353 0.359539 4.379902
v 0.000000 1.588489 4.391068
v -1.106639 -0.288839 4.370054
v -1.181359 1.272945 4.390699
v 0.000000 -0.779904 4.312685
v -1.247515 0.383942 4.447199
v 0.000000 1.581971 4.461173
v -1.086000 -0.265496 4.436588
v -1.177090 1.269343 4.461355
v 0.000000 -0.763400 4.368527
v -1.188243 0.391387 4.652071
v 0.000000 1.563331 4.671102
v -1.027374 -0.201462 4.637178
v -1.164335 1.252088 4.671049
v 0.000000 -0.713217 4.534844
v -1.169082 0.421327 4.716341
v 0.000000 1.557609 4.739149
v -1.008421 -0.179428 4.701652
v -1.160211 1.250226 4.739715
v 0.000000 -0.696632 4.588401
v -0.874957 -0.075000 4.662702
v -0.891544 -0.091068 4.605332
v -1.007796 1.171703 4.695835
v -1.011405 1.180593 4.637472
v -1.032328 0.434130 4.619331
v -1.015559 0.439037 4.677120
v -0.830441 -0.148552 4.367700
v -0.847334 -0.163695 4.308985
v -0.908860 1.170825 4.386370
v -0.912535 1.180777 4.327116
v -0.986568 0.399730 4.317496
v -0.969489 0.401683 4.376622
v -0.954594 -0.202467 4.151194
v -0.970038 -0.216351 4.098094
v -0.983362 1.147174 4.160363
v -0.986690 1.156015 4.106681
v -1.102211 0.372720 4.101612
v -1.086233 0.373799 4.155110
v 0.148725 1.863729 -0.644377
v 0.031967 1.863529 -0.655116
vn 0.4886 0.4002 0.7753
vn 0.9581 0.2826 0.0458
vn 0.3598 0.9294 -0.0826
vn 0.2776 0.9576 0.0777
vn 0.9775 0.1286 0.1669
vn 0.4076 0.9064 -0.1106
vn 0.4317 0.8838 -0.1804
vn 0.9481 0.3082 -0.0783
vn 0.3424 0.9388 -0.0391
vn 0.8701 0.0495 0.4903
vn 0.4407 -0.2765 -0.8540
vn 0.8854 0.0044 0.4648
vn 0.8755 -0.0135 0.4831
vn -0.3598 0.5534 0.7512
vn 0.8851 -0.0062 0.4653
vn 0.3994 -0.5447 -0.7374
vn -0.3629 0.6634 0.6544
vn 0.0179 0.9989 -0.0443
vn 0.3889 -0.5769 -0.7183
vn -0.2823 0.8109 0.5127
vn 0.8757 -0.0055 0.4828
vn -0.1944 -0.6679 0.7184
vn 0.8730 0.0070 0.4876
vn 0.8760 0.0124 0.4821
vn 0.3562 0.6787 -0.6422
vn -0.3042 -0.7805 0.5461
vn 0.1097 -0.9764 -0.1858
vn 0.3412 0.7068 -0.6197
vn -0.2106 -0.8983 0.3857
vn 0.6310 0.7661 -0.1226
vn 0.4670 0.0938 -0.8793
vn 0.9788 0.2046 0.0112
vn 0.4952 0.0003 -0.8688
vn 0.2796 0.9531 0.1157
vn 0.9795 -0.1177 0.1638
vn 0.3634 0.9058 0.2177
vn 0.4807 0.8491 0.2190
vn 0.5771 0.3368 0.7439
vn 0.9005 0.0169 0.4345
vn 0.4448 -0.6133 0.6527
vn 0.9657 -0.2554 0.0459
vn 0.9555 -0.0300 0.2934
vn 0.8679 0.4954 0.0371
vn 0.0137 -0.9914 -0.1303
vn 0.1771 0.8823 0.4361
vn 0.3095 0.8822 -0.3549
vn 0.9976 0.0310 0.0625
vn -0.0192 0.7025 0.7114
vn 0.9951 0.0711 0.0691
vn 0.9978 0.0222 0.0627
vn 0.0616 0.0669 -0.9959
vn -0.0306 0.4970 0.8672
vn 0.0021 0.9974 -0.0725
vn 0.0454 0.0210 -0.9987
vn -0.0223 0.8162 0.5773
vn 0.4319 0.8923 -0.1315
vn 0.9766 0.2139 -0.0217
vn 0.9198 0.2890 0.2655
vn 0.9463 0.0058 0.3232
vn 0.3926 0.4501 -0.8020
vn 0.0128 0.7558 0.6547
vn 0.1892 0.7911 -0.5817
vn -0.1822 0.8187 0.5446
vn 0.3128 0.1288 -0.9410
vn -0.5003 -0.8654 -0.0272
vn 0.6985 0.2765 0.6601
vn 0.1337 -0.0836 -0.9875
vn -0.3719 -0.9261 0.0640
vn 0.6436 0.7646 0.0324
vn -0.3547 -0.9343 -0.0366
vn -0.5344 0.2454 -0.8088
vn -0.6856 -0.7277 0.0204
vn 0.4747 0.8796 -0.0323
vn -0.5016 -0.8645 0.0318
vn -0.1029 -0.1321 -0.9859
vn 0.5009 0.8655 0.0015
vn -0.0303 -0.2623 -0.9645
vn 0.7969 -0.5231 0.3023
vn 0.6856 0.7277 -0.0204
vn 0.7333 -0.0995 0.6726
vn 0.9931 0.0600 0.1007
vn 0.9760 0.1545 0.1537
vn 0.2564 0.9660 -0.0347
vn 0.2546 0.0412 -0.9662
vn 0.2546 0.9623 0.0960
vn -0.2064 -0.0367 0.9778
vn 0.9785 0.1093 0.1748
vn 0.2556 0.9613 0.1026
vn 0.2420 -0.0451 -0.9692
vn 0.2567 0.9634 0.0769
vn -0.2117 0.0378 0.9766
vn 0.9838 0.0499 0.1721
vn 0.2565 0.9624 0.0900
vn 0.2567 0.9646 0.0609
vn 0.2462 -0.0414 -0.9683
vn 0.9848 0.0148 0.1733
vn 0.9150 -0.2561 0.3118
vn -0.2015 0.0292 0.9790
vn 0.6320 0.7728 -0.0581
vn -0.2074 -0.0283 0.9779
vn 0.2567 0.0288 -0.9661
vn 0.9806 0.0830 0.1775
vn 0.9242 -0.2355 0.3007
vn 0.4495 0.8828 -0.1361
vn -0.2204 -0.0325 0.9749
vn 0.2527 0.0339 -0.9670
vn 0.3511 -0.9333 -0.0757
vn 0.9742 0.1346 0.1812
vn 0.9291 -0.2167 0.2998
vn 0.5703 -0.8190 -0.0631
vn 0.5832 0.8091 -0.0720
vn -0.1982 0.0386 0.9794
vn 0.2441 -0.0485 -0.9685
vn 0.9903 0.1007 0.0960
vn 0.0506 0.7707 -0.6352
vn 0.4503 -0.8916 -0.0477
vn -0.4994 0.4092 0.7637
vn -0.9453 0.2710 -0.1813
vn -0.3503 0.9230 -0.1592
vn -0.2776 0.9575 0.0779
vn -0.8497 0.1154 -0.5145
vn -0.2734 0.8973 -0.3465
vn -0.3585 0.8735 -0.3294
vn -0.8656 0.2987 -0.4018
vn -0.2288 0.9339 -0.2746
vn -0.8657 0.0389 -0.4991
vn 0.4906 -0.2721 -0.8278
vn -0.8853 -0.0044 -0.4649
vn -0.8732 -0.0618 -0.4833
vn -0.4585 0.5517 0.6967
vn -0.8851 0.0061 -0.4654
vn 0.3998 -0.5443 -0.7375
vn -0.3630 0.6628 0.6549
vn 0.3890 -0.5771 -0.7181
vn -0.2823 0.8108 0.5128
vn -0.8757 0.0054 -0.4829
vn -0.5130 -0.6698 0.5368
vn -0.8667 0.0000 -0.4988
vn -0.8760 -0.0123 -0.4822
vn 0.3572 0.6780 -0.6424
vn -0.3043 -0.7802 0.5466
vn 0.1098 -0.9764 -0.1859
vn 0.3414 0.7069 -0.6195
vn -0.2106 -0.8982 0.3858
vn -0.6508 0.7467 -0.1377
vn 0.5154 0.0932 -0.8519
vn -0.9792 0.2027 0.0126
vn -0.2796 0.9531 0.1157
vn -0.9795 -0.1177 0.1638
vn -0.3634 0.9058 0.2177
vn -0.4807 0.8491 0.2190
vn -0.5771 0.3368 0.7439
vn -0.9005 0.0169 0.4345
vn -0.4448 -0.6133 0.6527
vn -0.9657 -0.2554 0.0460
vn -0.9555 -0.0300 0.2934
vn -0.9949 0.0198 -0.0987
vn 0.0138 -0.9914 -0.1304
vn -0.1841 0.8804 0.4371
vn -0.2050 0.8534 -0.4792
vn -0.9985 -0.0264 -0.0482
vn -0.0193 0.7035 0.7104
vn -0.9960 -0.0669 -0.0592
vn -0.9994 -0.0109 -0.0338
vn 0.0614 0.0721 -0.9955
vn -0.0306 0.4975 0.8669
vn 0.0455 0.0225 -0.9987
vn -0.3472 0.8943 -0.2824
vn -0.9000 0.2130 -0.3803
vn -0.9060 0.1782 -0.3840
vn -0.9454 -0.0025 -0.3259
vn 0.2097 0.4472 -0.8695
vn -0.3792 0.7618 0.5253
vn 0.1887 0.7914 -0.5815
vn -0.1796 0.8197 0.5440
vn 0.3119 0.1290 -0.9413
vn 0.4960 -0.8683 -0.0065
vn -0.7274 0.2781 0.6273
vn -0.1948 -0.1281 -0.9724
vn 0.3592 -0.9283 0.0965
vn -0.6489 0.7608 0.0132
vn 0.3418 -0.9390 -0.0378
vn 0.5715 0.2451 -0.7831
vn 0.6847 -0.7269 0.0535
vn -0.4693 0.8814 -0.0536
vn 0.4934 -0.8679 0.0575
vn 0.1552 -0.1523 -0.9761
vn -0.4965 0.8678 -0.0226
vn 0.0759 -0.2635 -0.9617
vn -0.8096 -0.5237 0.2651
vn -0.6847 0.7269 -0.0535
vn -0.7640 -0.0996 0.6375
vn -0.7789 0.0499 -0.6252
vn -0.9695 0.1588 0.1866
vn -0.2654 0.9614 0.0725
vn -0.2546 0.0413 -0.9662
vn -0.2640 0.9609 -0.0836
vn 0.1992 -0.0325 0.9794
vn -0.9785 0.1093 0.1748
vn -0.2555 0.9613 0.1026
vn -0.2420 -0.0449 -0.9692
vn -0.2566 0.9634 0.0771
vn 0.2118 0.0376 0.9766
vn -0.9838 0.0499 0.1721
vn -0.2564 0.9624 0.0901
vn -0.2567 0.9646 0.0612
vn -0.2462 -0.0413 -0.9683
vn -0.9848 0.0148 0.1733
vn -0.9150 -0.2563 0.3117
vn 0.2015 0.0291 0.9791
vn -0.6318 0.7730 -0.0575
vn 0.2073 -0.0284 0.9779
vn -0.2567 0.0288 -0.9661
vn -0.9806 0.0830 0.1775
vn -0.9242 -0.2356 0.3006
vn -0.4495 0.8828 -0.1365
vn 0.2204 -0.0326 0.9749
vn -0.2526 0.0340 -0.9670
vn -0.3510 -0.9333 -0.0759
vn -0.9734 0.1353 0.1851
vn -0.9289 -0.2122 0.3036
vn -0.5021 -0.8586 0.1035
vn -0.6171 0.7662 -0.1794
vn 0.2047 0.0433 0.9779
vn -0.2434 -0.0481 -0.9687
vn -0.9903 -0.1007 -0.0959
vn 0.0503 0.7731 -0.6323
vn -0.4502 -0.8916 -0.0481
vn 0.4097 -0.9121 -0.0124
vn 0.4491 -0.8907 -0.0701
vn 0.9663 -0.1555 0.2053
vn 0.9584 -0.2807 -0.0516
vn 0.4415 -0.8948 -0.0661
vn 0.4494 -0.8933 -0.0088
vn 0.9934 -0.0315 0.1102
vn 0.9779 -0.2089 -0.0117
vn 0.8963 -0.3146 0.3124
vn 0.3525 -0.9324 0.0802
vn 0.4333 -0.8355 0.3380
vn 0.5279 -0.8364 0.1477
vn 0.9124 -0.4093 -0.0005
vn 0.4389 -0.8243 0.3575
vn 0.7241 -0.1031 0.6819
vn 0.4545 -0.8803 -0.1357
vn 0.9778 -0.2092 0.0053
vn 0.9639 -0.2651 0.0248
vn 0.9442 -0.3190 0.0819
vn 0.9298 -0.3656 0.0417
vn 0.9808 -0.0930 0.1716
vn 0.9836 -0.1798 -0.0151
vn 0.6806 -0.0042 0.7326
vn -0.1646 -0.9583 -0.2335
vn 0.3414 0.9207 0.1891
vn 0.4571 0.0026 -0.8894
vn 0.8087 -0.0140 0.5880
vn -0.3393 -0.8603 -0.3806
vn -0.0573 0.0126 -0.9983
vn 0.2634 0.9174 0.2982
vn -0.1627 0.0267 -0.9863
vn 0.3087 0.8864 0.3448
vn -0.0234 -0.9267 -0.3751
vn 0.3243 -0.8331 0.4480
vn 0.9189 -0.2077 0.3354
vn 0.3509 -0.8760 0.3308
vn 0.3620 -0.8732 0.3262
vn 0.9244 -0.2259 0.3073
vn 0.3709 -0.8655 0.3365
vn 0.3846 -0.8619 0.3305
vn 0.9186 -0.2446 0.3105
vn 0.3942 -0.8526 0.3430
vn -0.3699 -0.9228 -0.1079
vn -0.2979 -0.8909 -0.3429
vn -0.8575 -0.1565 -0.4901
vn -0.8806 -0.2874 -0.3768
vn -0.3877 -0.8965 -0.2146
vn -0.2982 -0.9022 -0.3116
vn -0.7855 -0.0498 -0.6169
vn -0.9130 -0.2147 -0.3469
vn -0.8963 -0.3148 0.3123
vn -0.3514 -0.9324 0.0843
vn -0.4335 -0.8355 0.3378
vn -0.5278 -0.8364 0.1477
vn -0.9124 -0.4093 -0.0005
vn -0.4389 -0.8243 0.3575
vn -0.9433 -0.1028 0.3156
vn -0.3497 -0.8886 -0.2968
vn -0.9783 -0.2069 0.0058
vn -0.9650 -0.2612 0.0228
vn -0.9221 -0.3294 -0.2030
vn -0.9686 -0.1957 -0.1534
vn -0.8504 -0.1055 -0.5154
vn -0.9060 -0.1904 -0.3781
vn -0.9496 0.0058 0.3134
vn 0.2471 -0.9603 -0.1293
vn -0.3761 0.9261 0.0289
vn -0.0371 -0.0458 -0.9983
vn -0.9892 -0.0175 0.1454
vn 0.4780 -0.8607 -0.1753
vn 0.5200 -0.0130 -0.8540
vn -0.3758 0.9171 0.1331
vn 0.5942 0.0255 -0.8039
vn -0.4351 0.8862 0.1591
vn 0.2062 -0.9332 -0.2943
vn -0.3288 -0.8699 0.3676
vn -0.9299 -0.2039 0.3061
vn -0.3148 -0.8196 0.4787
vn -0.3606 -0.8723 0.3303
vn -0.9230 -0.2222 0.3141
vn -0.3697 -0.8633 0.3435
vn -0.3852 -0.8619 0.3298
vn -0.9186 -0.2448 0.3103
vn -0.3947 -0.8526 0.3424
usemtl Top
s off
f 69//1 62//1 65//1 67//1
f 3//2 4//2 6//2 5//2
f 5//3 6//3 41//3 42//3
f 5//4 42//4 141//4 191//4 27//4
f 53//5 51//5 8//5 9//5
f 55//6 53//6 9//6 54//6
f 142//7 41//7 6//7 12//7 152//7
f 6//8 4//8 11//8 12//8
f 147//9 54//9 9//9 15//9 157//9
f 15//10 13//10 16//10 18//10
f 18//11 162//11 166//11 20//11
f 19//12 20//12 22//12 21//12
f 15//13 18//13 20//13 19//13
f 157//14 15//14 19//14 163//14
f 21//15 22//15 24//15 23//15
f 20//16 166//16 170//16 22//16
f 163//17 19//17 21//17 167//17
f 171//18 23//18 24//18 174//18
f 22//19 170//19 174//19 24//19
f 167//20 21//20 23//20 171//20
f 28//21 30//21 31//21 29//21
f 154//22 179//22 28//22 13//22
f 13//23 28//23 29//23 16//23
f 30//24 32//24 33//24 31//24
f 29//25 31//25 186//25 182//25
f 179//26 183//26 30//26 28//26
f 187//27 190//27 33//27 32//27
f 31//28 33//28 190//28 186//28
f 183//29 187//29 32//29 30//29
f 70//30 60//30 66//30 68//30
f 16//31 29//31 182//31 159//31
f 3//32 5//32 27//32 26//32
f 16//33 159//33 162//33 18//33
f 113//34 301//34 194//34 35//34
f 111//35 113//35 35//35 36//35
f 35//36 194//36 197//36 37//36
f 37//37 197//37 199//37 38//37
f 38//38 199//38 205//38
f 38//39 39//39 37//39
f 39//40 38//40 205//40 201//40
f 36//41 35//41 40//41
f 37//42 39//42 40//42 35//42
f 42//43 41//43 44//43 43//43
f 44//44 210//44 323//44 132//44
f 141//45 42//45 43//45 209//45
f 41//46 142//46 210//46 44//46
f 45//47 46//47 48//47 47//47
f 209//48 43//48 45//48 213//48
f 43//49 44//49 46//49 45//49
f 47//50 48//50 50//50 49//50
f 46//51 214//51 218//51 48//51
f 213//52 45//52 47//52 217//52
f 49//53 50//53 222//53 221//53
f 48//54 218//54 222//54 50//54
f 217//55 47//55 49//55 221//55
f 152//56 12//56 53//56 55//56 228//56
f 12//57 11//57 51//57 53//57
f 55//58 54//58 57//58 56//58
f 56//59 57//59 59//59 58//59
f 54//60 147//60 231//60 57//60
f 228//61 55//61 56//61 232//61
f 236//62 58//62 59//62 235//62
f 232//63 56//63 58//63 236//63
f 57//64 231//64 235//64 59//64
f 64//65 63//65 73//65 71//65
f 67//66 65//66 74//66 75//66
f 61//67 70//67 68//67 63//67
f 62//68 1//68 64//68 65//68
f 60//69 69//69 67//69 66//69
f 1//70 61//70 63//70 64//70
f 73//71 76//71 82//71 79//71
f 71//72 73//72 79//72 84//72
f 68//73 66//73 72//73 76//73
f 65//74 64//74 71//74 74//74
f 63//75 68//75 76//75 73//75
f 66//76 67//76 75//76 72//76
f 77//77 79//77 82//77 78//77
f 77//78 78//78 81//78 80//78
f 72//79 75//79 81//79 83//79
f 74//72 71//72 84//72 80//72
f 76//79 72//79 83//79 82//79
f 75//80 74//80 80//80 81//80
f 82//79 83//79 78//79
f 83//79 81//79 78//79
f 84//72 79//72 77//72
f 80//72 84//72 77//72
f 9//81 8//81 13//81 15//81
f 26//82 27//82 98//82 96//82
f 27//83 191//83 277//83 98//83
f 101//84 99//84 131//84 128//84
f 98//85 277//85 281//85 101//85
f 96//86 98//86 129//86 130//86
f 99//87 101//87 104//87 102//87
f 101//88 281//88 286//88 104//88
f 105//89 106//89 120//89 125//89
f 104//90 286//90 291//90 107//90
f 103//91 102//91 124//91 121//91
f 105//92 107//92 110//92 108//92
f 107//93 291//93 296//93 110//93
f 110//94 296//94 301//94 113//94
f 111//95 112//95 114//95 119//95
f 118//96 117//96 116//96 119//96
f 115//97 118//97 119//97 114//97
f 109//98 108//98 118//98 115//98
f 112//99 109//99 115//99 114//99
f 108//100 110//100 117//100 118//100
f 113//101 111//101 119//101 116//101
f 124//102 123//102 122//102 125//102
f 121//103 124//103 125//103 120//103
f 106//104 103//104 121//104 120//104
f 102//105 104//105 123//105 124//105
f 107//106 105//106 125//106 122//106
f 104//107 107//107 122//107 123//107
f 130//108 129//108 128//108 131//108
f 127//109 130//109 131//109 126//109
f 98//110 101//110 128//110 129//110
f 100//111 97//111 127//111 126//111
f 97//112 96//112 130//112 127//112
f 99//113 100//113 126//113 131//113
f 46//114 44//114 132//114
f 214//115 46//115 132//115 323//115
f 110//116 113//116 116//116 117//116
f 248//117 246//117 244//117 241//117
f 137//118 139//118 140//118 138//118
f 139//119 207//119 206//119 140//119
f 139//120 178//120 191//120 141//120 207//120
f 227//121 146//121 145//121 225//121
f 230//122 229//122 146//122 227//122
f 142//123 152//123 151//123 140//123 206//123
f 140//124 151//124 150//124 138//124
f 147//125 157//125 156//125 146//125 229//125
f 156//126 161//126 158//126 153//126
f 161//127 165//127 166//127 162//127
f 164//128 168//128 169//128 165//128
f 156//129 164//129 165//129 161//129
f 157//130 163//130 164//130 156//130
f 168//131 172//131 173//131 169//131
f 165//132 169//132 170//132 166//132
f 163//133 167//133 168//133 164//133
f 171//18 174//18 173//18 172//18
f 169//134 173//134 174//134 170//134
f 167//135 171//135 172//135 168//135
f 180//136 181//136 185//136 184//136
f 154//137 153//137 180//137 179//137
f 153//138 158//138 181//138 180//138
f 184//139 185//139 189//139 188//139
f 181//140 182//140 186//140 185//140
f 179//141 180//141 184//141 183//141
f 187//142 188//142 189//142 190//142
f 185//143 186//143 190//143 189//143
f 183//144 184//144 188//144 187//144
f 249//145 247//145 245//145 239//145
f 158//146 159//146 182//146 181//146
f 137//147 177//147 178//147 139//147
f 158//33 161//33 162//33 159//33
f 303//148 195//148 194//148 301//148
f 300//149 196//149 195//149 303//149
f 195//150 198//150 197//150 194//150
f 198//151 200//151 199//151 197//151
f 200//152 205//152 199//152
f 200//153 198//153 202//153
f 202//154 201//154 205//154 200//154
f 196//155 203//155 195//155
f 198//156 195//156 203//156 202//156
f 207//157 208//157 211//157 206//157
f 211//158 324//158 323//158 210//158
f 141//159 209//159 208//159 207//159
f 206//160 211//160 210//160 142//160
f 212//161 216//161 219//161 215//161
f 209//162 213//162 212//162 208//162
f 208//163 212//163 215//163 211//163
f 216//164 220//164 223//164 219//164
f 215//165 219//165 218//165 214//165
f 213//166 217//166 216//166 212//166
f 220//53 221//53 222//53 223//53
f 219//167 223//167 222//167 218//167
f 217//55 221//55 220//55 216//55
f 152//168 228//168 230//168 227//168 151//168
f 151//169 227//169 225//169 150//169
f 230//170 233//170 234//170 229//170
f 233//171 237//171 238//171 234//171
f 229//172 234//172 231//172 147//172
f 228//173 232//173 233//173 230//173
f 236//174 235//174 238//174 237//174
f 232//175 236//175 237//175 233//175
f 234//176 238//176 235//176 231//176
f 243//177 250//177 252//177 242//177
f 246//178 254//178 253//178 244//178
f 240//179 242//179 247//179 249//179
f 241//180 244//180 243//180 135//180
f 239//181 245//181 246//181 248//181
f 135//182 243//182 242//182 240//182
f 252//183 258//183 261//183 255//183
f 250//184 263//184 258//184 252//184
f 247//185 255//185 251//185 245//185
f 244//186 253//186 250//186 243//186
f 242//187 252//187 255//187 247//187
f 245//188 251//188 254//188 246//188
f 256//189 257//189 261//189 258//189
f 256//190 259//190 260//190 257//190
f 251//191 262//191 260//191 254//191
f 253//184 259//184 263//184 250//184
f 255//191 261//191 262//191 251//191
f 254//192 260//192 259//192 253//192
f 261//191 257//191 262//191
f 262//191 257//191 260//191
f 263//184 256//184 258//184
f 259//184 256//184 263//184
f 146//193 156//193 153//193 145//193
f 177//194 275//194 278//194 178//194
f 178//195 278//195 277//195 191//195
f 283//196 319//196 322//196 280//196
f 278//197 283//197 281//197 277//197
f 275//198 321//198 320//198 278//198
f 280//199 285//199 288//199 283//199
f 283//200 288//200 286//200 281//200
f 290//201 316//201 311//201 292//201
f 288//202 293//202 291//202 286//202
f 287//203 312//203 315//203 285//203
f 290//204 295//204 298//204 293//204
f 293//205 298//205 296//205 291//205
f 298//206 303//206 301//206 296//206
f 300//207 310//207 305//207 302//207
f 309//208 310//208 307//208 308//208
f 306//209 305//209 310//209 309//209
f 297//210 306//210 309//210 295//210
f 302//211 305//211 306//211 297//211
f 295//212 309//212 308//212 298//212
f 303//213 307//213 310//213 300//213
f 315//214 316//214 313//214 314//214
f 312//215 311//215 316//215 315//215
f 292//216 311//216 312//216 287//216
f 285//217 315//217 314//217 288//217
f 293//218 313//218 316//218 290//218
f 288//219 314//219 313//219 293//219
f 321//220 322//220 319//220 320//220
f 318//221 317//221 322//221 321//221
f 278//222 320//222 319//222 283//222
f 282//223 317//223 318//223 276//223
f 276//224 318//224 321//224 275//224
f 280//225 322//225 317//225 282//225
f 215//226 324//226 211//226
f 214//227 323//227 324//227 215//227
f 298//228 308//228 307//228 303//228
usemtl Bottom
f 133//229 134//229 2//229 61//229 1//229
f 52//230 224//230 144//230 7//230
f 17//231 52//231 7//231
f 4//232 2//232 14//232 11//232
f 2//233 134//233 148//233 10//233
f 7//234 144//234 154//234 13//234
f 8//235 7//235 13//235
f 2//236 10//236 14//236
f 112//237 111//237 36//237 34//237
f 133//238 1//238 62//238 25//238 175//238
f 304//239 112//239 34//239 192//239
f 40//240 204//240 192//240 34//240
f 40//241 34//241 36//241
f 39//242 201//242 204//242 40//242
f 14//243 10//243 86//243 87//243
f 10//244 148//244 224//244 52//244
f 69//245 26//245 25//245 62//245
f 60//246 3//246 26//246 69//246
f 61//247 2//247 4//247 70//247
f 70//248 4//248 3//248 60//248
f 51//249 17//249 7//249 8//249
f 11//250 14//250 17//250 51//250
f 87//251 86//251 90//251 91//251
f 10//252 52//252 85//252 86//252
f 17//253 14//253 87//253 88//253
f 52//254 17//254 88//254 85//254
f 91//255 90//255 94//255 93//255 95//255
f 90//256 89//256 94//256
f 85//257 88//257 92//257 89//257
f 88//258 87//258 91//258 95//258 92//258
f 93//259 94//259 89//259 92//259
f 92//260 95//260 93//260
f 86//261 85//261 89//261 90//261
f 175//262 25//262 97//262 279//262
f 25//263 26//263 96//263 97//263
f 279//264 97//264 100//264 284//264
f 284//265 100//265 103//265 289//265
f 100//266 99//266 102//266 103//266
f 289//267 103//267 106//267 294//267
f 294//268 106//268 109//268 299//268
f 106//269 105//269 108//269 109//269
f 299//270 109//270 112//270 304//270
f 133//271 135//271 240//271 136//271 134//271
f 226//272 143//272 144//272 224//272
f 160//273 143//273 226//273
f 138//274 150//274 155//274 136//274
f 136//275 149//275 148//275 134//275
f 143//276 153//276 154//276 144//276
f 145//277 153//277 143//277
f 136//278 155//278 149//278
f 302//279 193//279 196//279 300//279
f 133//280 175//280 176//280 241//280 135//280
f 304//281 192//281 193//281 302//281
f 203//282 193//282 192//282 204//282
f 203//283 196//283 193//283
f 202//284 203//284 204//284 201//284
f 155//285 266//285 265//285 149//285
f 149//286 226//286 224//286 148//286
f 248//287 241//287 176//287 177//287
f 239//288 248//288 177//288 137//288
f 240//289 249//289 138//289 136//289
f 249//290 239//290 137//290 138//290
f 225//291 145//291 143//291 160//291
f 150//292 225//292 160//292 155//292
f 266//293 270//293 269//293 265//293
f 149//294 265//294 264//294 226//294
f 160//295 267//295 266//295 155//295
f 226//296 264//296 267//296 160//296
f 270//297 274//297 272//297 273//297 269//297
f 269//298 273//298 268//298
f 264//299 268//299 271//299 267//299
f 267//300 271//300 274//300 270//300 266//300
f 272//301 271//301 268//301 273//301
f 271//302 272//302 274//302
f 265//303 269//303 268//303 264//303
f 175//304 279//304 276//304 176//304
f 176//305 276//305 275//305 177//305
f 279//306 284//306 282//306 276//306
f 284//307 289//307 287//307 282//307
f 282//308 287//308 285//308 280//308
f 289//309 294//309 292//309 287//309
f 294//310 299//310 297//310 292//310
f 292//311 297//311 295//311 290//311
f 299//312 304//312 302//312 297//312

View File

@ -0,0 +1,107 @@
fileFormatVersion: 2
guid: e5e42fa078213b544a47c3f972dbb642
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 2
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 1
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations: []
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 0
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human: []
skeleton: []
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {instanceID: 0}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 2
humanoidOversampling: 1
avatarSetup: 0
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,22 @@
# Blender MTL File: 'Whale.blend'
# Material Count: 2
newmtl Bottom
Ns 96.078431
Ka 1.000000 1.000000 1.000000
Kd 0.465170 0.287777 0.065950
Ks 0.500000 0.500000 0.500000
Ke 0.000000 0.000000 0.000000
Ni 1.000000
d 1.000000
illum 2
newmtl Top
Ns 96.078431
Ka 1.000000 1.000000 1.000000
Kd 0.149557 0.152571 0.307500
Ks 0.500000 0.500000 0.500000
Ke 0.000000 0.000000 0.000000
Ni 1.000000
d 1.000000
illum 2

View File

@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: 6ffe87f6c37acc04a802bcd7b8850628
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,703 @@
# Blender v2.79 (sub 0) OBJ File: 'Whale.blend'
# www.blender.org
mtllib Whale.mtl
o Whale_Cylinder
v 2.121333 -2.433491 -0.356034
v 1.882822 -2.693270 -3.954207
v 3.000000 -0.272835 -0.390127
v 2.766321 -0.963099 -4.504272
v 2.121320 2.604155 -0.432627
v 1.935661 1.459275 -6.526351
v 1.249958 -2.590231 -10.505192
v 2.142243 -1.260719 -10.587243
v 1.449801 0.371187 -10.688019
v 0.791422 -2.253386 -13.461520
v 1.462011 -1.443065 -13.510782
v 0.811602 -0.750101 -13.552910
v 0.390815 -2.117763 -15.264709
v 0.893239 -1.859414 -15.281695
v 0.549120 -1.347016 -15.315428
v 0.301136 -2.140852 -15.938501
v 0.749959 -1.908986 -15.967790
v 0.537814 -1.602399 -16.003262
v 1.948313 -1.755303 -17.112209
v 2.132702 -2.038249 -17.075142
v 1.948313 -2.395549 -17.028322
v 3.009008 -2.745520 -19.782778
v 1.181732 -2.653183 -19.027157
v 3.187345 -2.386639 -19.870388
v 3.009008 -2.102436 -19.864943
v 1.158367 -2.011187 -19.104822
v 1.226180 -2.318361 -19.080770
v 2.396363 -2.128524 -17.773668
v 2.660023 -2.218309 -18.472237
v 2.923684 -2.303511 -19.171215
v 2.743834 -2.020810 -19.176582
v 2.478660 -1.935669 -18.488455
v 2.213487 -1.845747 -17.800350
v 2.743834 -2.661263 -19.093658
v 2.478660 -2.576091 -18.404514
v 2.213487 -2.486013 -17.716356
v 0.846040 -1.722291 -16.886707
v 1.348434 -1.896691 -18.188683
v 1.173503 -1.966748 -18.732515
v 1.224581 -1.819210 -17.603489
v 1.169170 -2.458401 -17.505884
v 1.174719 -2.602383 -18.603409
v 0.782455 -2.365436 -16.797245
v 1.318891 -2.529859 -18.050585
v 1.692731 0.967817 -8.379583
v 0.187804 2.024471 -7.237898
v 2.887084 0.105824 3.556751
v 2.121320 2.283535 3.425434
v 2.454282 -1.264446 -7.854980
v 1.633031 1.919548 7.370433
v 0.395001 1.727951 -6.542023
v 0.432620 1.212537 -8.396422
v 1.561016 1.081256 10.088400
v 1.566390 -2.555299 -7.908883
v 2.394447 -1.285622 3.646776
v 1.837719 1.049800 7.377391
v 2.511169 0.294121 5.371920
v 2.287819 -0.743172 4.826885
v 2.176755 0.920961 5.859371
v 1.892328 -2.678756 0.713939
v 2.062134 -1.934109 4.002610
v 1.611203 -0.759882 7.324840
v 2.039914 0.329620 7.316029
v 2.421675 0.251015 5.507118
v 1.558679 -0.079527 9.756219
v 1.839731 0.313940 9.771738
v 1.433724 0.840102 10.185292
v 1.315672 0.320884 10.313732
v 2.314023 -1.626993 3.774795
v 1.800118 0.951207 7.311839
v 2.113029 0.832368 5.945748
v 2.215476 -0.712925 5.016581
v 0.301231 1.702344 -8.109882
v 0.140466 2.313538 -7.797944
v 0.185009 2.245886 -8.504006
v 2.084317 -2.413886 0.686698
v 3.506411 -4.111498 0.575197
v 4.388686 -3.283045 2.730338
v 4.576970 -2.977885 2.502234
v 3.685840 -3.848028 0.501769
v 4.570451 -5.789151 -0.776357
v 5.630216 -5.004351 0.805399
v 5.786367 -4.700159 0.551703
v 4.740958 -5.524941 -0.878765
v 4.907939 -6.704078 -1.990035
v 5.937879 -5.987682 -0.357586
v 6.080913 -5.661580 -0.589564
v 5.066606 -6.426220 -2.073775
v 5.911022 -6.764195 -1.327119
v 6.037314 -6.480525 -1.521531
v 2.292181 -2.086353 -19.750454
v 2.322903 -2.730045 -19.678411
v 2.305639 -2.378294 -19.701990
v -0.000000 -3.021858 -0.386364
v -0.000000 -3.128437 -3.924699
v -2.121285 -2.454856 -0.344983
v -1.882822 -2.696875 -3.953179
v -3.000022 -0.275522 -0.390024
v -2.766321 -0.965098 -4.504119
v -2.121320 2.604107 -0.432648
v -1.935661 1.458185 -6.526512
v 0.000000 2.995954 -0.402869
v -0.000000 1.796552 -6.546166
v -1.249958 -2.590226 -10.505215
v 0.000000 -2.918758 -10.485044
v -2.142243 -1.260708 -10.587254
v -1.449801 0.371201 -10.687988
v -0.000000 0.699852 -10.707991
v -0.791422 -2.253386 -13.461520
v 0.000000 -2.581952 -13.441545
v -1.462011 -1.443065 -13.510782
v -0.811602 -0.750101 -13.552910
v -0.000000 -0.421534 -13.572886
v -0.390815 -2.118067 -15.264795
v 0.000000 -2.362106 -15.248967
v -0.893239 -1.859660 -15.281671
v -0.549120 -1.347188 -15.315263
v -0.000000 -1.167839 -15.323771
v -0.301136 -2.140859 -15.938320
v 0.000000 -2.294560 -15.918908
v -0.749959 -1.909015 -15.967789
v -0.537814 -1.602473 -16.003635
v 0.000000 -1.510965 -15.996964
v 0.000000 -2.370382 -16.834944
v 0.000000 -2.370382 -16.834944
v -1.948313 -1.755475 -17.112238
v -2.132702 -2.038249 -17.075142
v -0.000000 -1.730116 -16.918938
v -0.000000 -1.730116 -16.918938
v -1.948313 -2.395741 -17.028244
v -3.009008 -2.754023 -19.781208
v 0.000000 -2.604628 -18.620520
v 0.000000 -2.297248 -18.660843
v -0.000000 -1.964362 -18.704514
v -1.181732 -2.655715 -19.026636
v -3.187345 -2.396333 -19.869518
v -3.009008 -2.112965 -19.864750
v -1.158367 -2.014146 -19.104824
v -1.226180 -2.321166 -19.080494
v -2.396363 -2.128524 -17.773668
v -2.660023 -2.218798 -18.472195
v -2.923684 -2.309073 -19.170721
v -2.743834 -2.026290 -19.176573
v -2.478660 -1.936019 -18.488462
v -2.213487 -1.845747 -17.800350
v -2.743834 -2.666500 -19.092590
v -2.478660 -2.576284 -18.404469
v -2.213487 -2.486012 -17.716356
v -0.000000 -1.782084 -17.315065
v -0.000000 -1.857471 -17.889719
v -0.000000 -1.916553 -18.340080
v -0.846040 -1.722720 -16.886805
v -1.348434 -1.896691 -18.188683
v -1.173503 -1.968038 -18.732533
v -1.224581 -1.819929 -17.603552
v 0.000000 -2.540678 -18.133049
v 0.000000 -2.478380 -17.658173
v 0.000000 -2.419921 -17.212564
v -1.169170 -2.458401 -17.505884
v -1.174719 -2.602383 -18.603409
v -0.782455 -2.365436 -16.797245
v -1.318891 -2.529859 -18.050585
v -1.692731 0.967895 -8.379607
v -0.187804 2.024444 -7.237900
v -2.887248 0.104828 3.556630
v -2.121320 2.283508 3.425319
v 0.000000 2.609870 3.402422
v -2.454282 -1.264377 -7.854979
v -0.000000 2.069262 -7.222485
v -0.000000 1.679429 -8.228171
v -1.633031 1.919610 7.370367
v 0.000000 2.246663 7.370563
v -0.000000 -2.919005 -7.883772
v -0.395001 1.727751 -6.542055
v -0.432620 1.212500 -8.396379
v -1.561016 1.081256 10.088400
v 0.000000 1.345671 10.370896
v -0.000000 1.296421 -8.402088
v -1.566390 -2.555252 -7.908874
v -2.394590 -1.287435 3.648996
v -1.837719 1.049890 7.377338
v -2.511169 0.294292 5.371904
v -2.287967 -0.742650 4.828198
v -2.176755 0.920976 5.859332
v 0.000077 -2.976164 0.207047
v -1.892085 -2.739035 0.756567
v -2.062216 -1.935697 4.007229
v 0.000000 -2.239802 4.022573
v 0.000000 -1.071377 7.324770
v -1.611203 -0.759811 7.324869
v -2.039914 0.329712 7.316011
v 0.000000 -0.386517 9.756820
v -2.421675 0.251040 5.507126
v -1.558679 -0.079527 9.756219
v -1.839731 0.313940 9.771738
v -1.433724 0.840102 10.185292
v 0.000000 0.890851 10.578270
v 0.000000 0.302417 10.608153
v -1.315672 0.320884 10.313732
v -2.314152 -1.629117 3.778554
v -1.800118 0.951295 7.311790
v -2.113029 0.832385 5.945714
v -2.215657 -0.712172 5.017837
v -0.301231 1.702329 -8.109863
v -0.000000 2.358689 -7.782506
v -0.140466 2.313535 -7.797940
v -0.185009 2.245883 -8.504004
v -0.000000 2.271766 -8.606915
v -2.084285 -2.437813 0.701690
v -3.505463 -4.114202 0.576051
v -4.388098 -3.285128 2.730338
v -4.576487 -2.980079 2.502234
v -3.685052 -3.849140 0.501119
v -4.570295 -5.791063 -0.776357
v -5.629009 -5.005455 0.805399
v -5.784999 -4.702098 0.551703
v -4.740556 -5.526647 -0.878765
v -4.908705 -6.705616 -1.990034
v -5.938045 -5.988141 -0.357585
v -6.080666 -5.661955 -0.589564
v -5.067099 -6.427602 -2.073774
v -5.911845 -6.764749 -1.327118
v -6.037859 -6.480956 -1.521530
v -2.292181 -2.096323 -19.750294
v -2.322903 -2.737929 -19.676935
v -2.305639 -2.385416 -19.701321
vn 0.2474 -0.9680 0.0414
vn 0.9106 -0.4132 -0.0049
vn 0.9575 0.2743 -0.0887
vn 0.1733 0.9668 -0.1878
vn 0.2386 -0.9711 -0.0080
vn 0.9711 0.2353 0.0394
vn 0.9339 0.3285 -0.1415
vn 0.2012 0.9457 -0.2552
vn 0.8231 -0.5602 -0.0938
vn 0.3329 0.8722 -0.3583
vn 0.8352 0.4643 -0.2948
vn 0.3014 -0.9444 -0.1310
vn 0.2646 0.8876 -0.3769
vn 0.7910 -0.5881 -0.1687
vn 0.6646 -0.7371 -0.1224
vn 0.7356 0.5854 -0.3409
vn 0.4287 -0.8932 -0.1355
vn 0.8168 0.5369 -0.2111
vn 0.4567 -0.8891 -0.0307
vn 0.2228 0.8917 -0.3940
vn 0.4953 -0.8665 -0.0617
vn 0.0023 0.9910 -0.1337
vn 0.0023 0.9933 -0.1153
vn 0.4572 -0.8863 0.0734
vn 0.1606 0.9603 -0.2283
vn 0.5772 0.4704 0.6675
vn 0.0000 -0.9915 0.1301
vn 0.8464 -0.3806 0.3724
vn 0.8184 0.5171 0.2505
vn 0.8623 -0.3457 0.3701
vn -0.3255 -0.1148 -0.9386
vn 0.4929 -0.4322 0.7552
vn 0.8573 -0.3575 0.3705
vn -0.3258 -0.1335 -0.9360
vn 0.8517 -0.3686 0.3726
vn -0.1747 -0.1310 -0.9759
vn -0.1720 -0.1141 -0.9785
vn 0.8081 0.5387 0.2384
vn -0.0059 -0.9683 0.2499
vn 0.8030 0.5478 0.2349
vn 0.8127 0.5286 0.2449
vn 0.0017 0.9913 -0.1314
vn 0.0001 0.9915 -0.1303
vn -0.0003 0.9922 -0.1250
vn -0.0009 0.9923 -0.1242
vn -0.0025 0.9911 -0.1334
vn -0.0004 0.9914 -0.1307
vn -0.0040 0.9907 -0.1358
vn -0.0001 0.9917 -0.1288
vn 0.0001 -0.9922 0.1249
vn 0.0001 -0.9915 0.1299
vn 0.0001 -0.9915 0.1303
vn 0.0282 -0.9631 0.2677
vn -0.0016 -0.9930 0.1180
vn 0.0008 -0.9920 0.1260
vn 0.9508 0.3097 0.0115
vn 0.1663 0.9819 0.0905
vn 0.1847 0.4802 -0.8575
vn 0.1989 0.9369 0.2875
vn 0.2246 -0.9731 -0.0517
vn 0.9578 0.2508 -0.1404
vn 0.1700 0.9803 0.1006
vn 0.1768 0.9473 -0.2671
vn 0.8565 -0.5124 -0.0622
vn 0.2256 -0.9705 -0.0854
vn 0.2410 0.3514 0.9047
vn 0.8989 -0.4273 0.0974
vn 0.8222 0.0012 0.5693
vn 0.9323 -0.3582 0.0500
vn 0.9472 0.2804 0.1555
vn 0.9687 0.2287 0.0962
vn 0.9252 0.3421 0.1643
vn 0.8657 -0.4426 0.2337
vn 0.9457 -0.2370 0.2226
vn 0.8320 -0.3852 0.3992
vn 0.9544 -0.2984 0.0137
vn 0.9223 -0.3141 0.2252
vn 0.8340 -0.4107 0.3685
vn 0.1853 0.9173 0.3525
vn 0.9280 0.3676 -0.0615
vn 0.2356 0.9676 -0.0909
vn 0.2759 0.8587 0.4319
vn 0.3559 -0.5005 -0.7892
vn 0.9711 0.2357 0.0387
vn 0.4500 0.8152 -0.3646
vn 0.8110 -0.5837 0.0398
vn 0.3230 0.7634 -0.5594
vn 0.5611 0.1956 0.8043
vn -0.1636 -0.0724 -0.9839
vn -0.4638 -0.8232 0.3275
vn -0.8151 0.3320 -0.4747
vn 0.8317 -0.0319 0.5543
vn -0.6516 0.1871 -0.7351
vn -0.3775 -0.7625 0.5254
vn 0.9403 -0.2771 0.1977
vn -0.2827 -0.7854 0.5506
vn 0.2051 0.7911 -0.5763
vn 0.9173 -0.1519 0.3680
vn 0.4093 -0.5633 -0.7178
vn 0.3898 0.6826 -0.6181
vn -0.4214 -0.7021 0.5740
vn -0.0016 0.9930 -0.1185
vn -0.4993 -0.0773 -0.8630
vn 0.0011 -0.9929 0.1190
vn -0.4973 -0.1704 -0.8507
vn -0.2417 -0.9696 0.0392
vn -0.9114 -0.4116 -0.0061
vn -0.9576 0.2742 -0.0886
vn -0.1735 0.9667 -0.1879
vn -0.2386 -0.9711 -0.0080
vn -0.9711 0.2353 0.0394
vn -0.9339 0.3285 -0.1415
vn -0.2012 0.9457 -0.2552
vn -0.8231 -0.5602 -0.0938
vn -0.3330 0.8721 -0.3584
vn -0.8352 0.4643 -0.2948
vn -0.3014 -0.9444 -0.1310
vn -0.2646 0.8876 -0.3769
vn -0.7910 -0.5881 -0.1687
vn -0.6647 -0.7371 -0.1223
vn -0.7355 0.5854 -0.3410
vn -0.4286 -0.8933 -0.1354
vn -0.8169 0.5369 -0.2109
vn -0.4567 -0.8891 -0.0311
vn -0.2229 0.8918 -0.3938
vn -0.4950 -0.8667 -0.0619
vn -0.0020 0.9909 -0.1342
vn -0.0024 0.9924 -0.1231
vn -0.4571 -0.8864 0.0734
vn -0.1606 0.9603 -0.2283
vn -0.5770 0.4709 0.6674
vn -0.8465 -0.3805 0.3724
vn -0.8186 0.5184 0.2471
vn -0.8617 -0.3451 0.3719
vn 0.3254 -0.1152 -0.9385
vn -0.4930 -0.4318 0.7553
vn -0.8565 -0.3566 0.3731
vn 0.3259 -0.1340 -0.9358
vn -0.8516 -0.3686 0.3728
vn 0.1748 -0.1339 -0.9755
vn 0.1720 -0.1162 -0.9782
vn -0.8082 0.5386 0.2381
vn 0.0059 -0.9683 0.2498
vn -0.8029 0.5479 0.2349
vn -0.8135 0.5290 0.2414
vn -0.0012 0.9913 -0.1318
vn -0.0000 0.9915 -0.1301
vn -0.0001 0.9920 -0.1265
vn 0.0020 0.9910 -0.1335
vn 0.0035 0.9907 -0.1361
vn -0.0000 -0.9918 0.1277
vn -0.0280 -0.9632 0.2675
vn 0.0028 -0.9924 0.1233
vn -0.0000 -0.9915 0.1300
vn -0.9508 0.3095 0.0114
vn -0.1664 0.9819 0.0905
vn -0.1848 0.4802 -0.8575
vn -0.1989 0.9369 0.2875
vn -0.2236 -0.9733 -0.0521
vn -0.9578 0.2509 -0.1402
vn -0.1700 0.9803 0.1006
vn -0.1770 0.9474 -0.2668
vn -0.8565 -0.5123 -0.0626
vn -0.2106 -0.9716 -0.1082
vn -0.2410 0.3514 0.9047
vn -0.8989 -0.4273 0.0974
vn -0.8222 0.0013 0.5692
vn -0.9330 -0.3563 0.0506
vn -0.9472 0.2804 0.1555
vn -0.9687 0.2288 0.0962
vn -0.9252 0.3420 0.1642
vn -0.8657 -0.4426 0.2337
vn -0.9459 -0.2358 0.2228
vn -0.8321 -0.3848 0.3993
vn -0.9556 -0.2942 0.0142
vn -0.9223 -0.3137 0.2256
vn -0.8340 -0.4098 0.3695
vn -0.1856 0.9172 0.3526
vn -0.9280 0.3675 -0.0615
vn -0.2356 0.9676 -0.0909
vn -0.2759 0.8587 0.4319
vn -0.3560 -0.5005 -0.7891
vn -0.9711 0.2357 0.0387
vn -0.4436 0.8172 -0.3680
vn -0.8456 -0.5325 0.0386
vn -0.3235 0.7633 -0.5592
vn -0.5622 0.1954 0.8036
vn 0.1973 -0.0941 -0.9758
vn 0.4479 -0.8280 0.3373
vn 0.8155 0.3312 -0.4747
vn -0.8318 -0.0320 0.5541
vn 0.6529 0.1855 -0.7344
vn 0.3769 -0.7628 0.5255
vn -0.9406 -0.2761 0.1976
vn 0.2818 -0.7858 0.5505
vn -0.2042 0.7915 -0.5760
vn -0.9174 -0.1511 0.3682
vn -0.4098 -0.5629 -0.7178
vn -0.3892 0.6830 -0.6181
vn 0.4208 -0.7025 0.5740
vn -0.0019 0.9924 -0.1230
vn 0.4991 -0.0785 -0.8630
vn 0.0002 -0.9922 0.1250
vn 0.4977 -0.1724 -0.8500
vn 0.1237 -0.9720 0.1997
vn 0.9175 0.3551 0.1793
vn 0.1577 -0.9276 0.3388
vn 0.2423 0.1119 0.9637
vn 0.8969 -0.4297 0.1048
vn 0.8822 0.4590 0.1047
vn 0.1846 -0.9457 0.2675
vn 0.7189 0.0085 0.6950
vn 0.1508 -0.7693 0.6208
vn 0.6299 -0.4742 0.6151
vn 0.9185 0.3529 0.1785
vn 0.9143 -0.3315 0.2326
vn 0.9290 -0.3052 0.2093
vn -0.1048 -0.9722 0.2093
vn -0.9175 0.3552 0.1792
vn -0.1569 -0.9276 0.3392
vn -0.2423 0.1119 0.9637
vn -0.8969 -0.4297 0.1048
vn -0.8822 0.4590 0.1047
vn -0.1846 -0.9457 0.2675
vn -0.7189 0.0085 0.6950
vn -0.1508 -0.7693 0.6208
vn -0.6299 -0.4742 0.6151
vn -0.9185 0.3530 0.1785
vn -0.9145 -0.3310 0.2328
vn -0.9290 -0.3050 0.2093
usemtl Top
s off
f 94//1 95//1 2//1 1//1
f 1//2 2//2 4//2 3//2
f 3//3 4//3 6//3 5//3
f 5//4 6//4 51//4 103//4 102//4
f 54//5 173//5 105//5 7//5
f 46//6 73//6 74//6
f 45//7 49//7 8//7 9//7
f 178//8 52//8 45//8 9//8 108//8
f 49//9 54//9 7//9 8//9
f 113//10 12//10 15//10 118//10
f 9//11 8//11 11//11 12//11
f 7//12 105//12 110//12 10//12
f 108//13 9//13 12//13 113//13
f 8//14 7//14 10//14 11//14
f 11//15 10//15 13//15 14//15
f 12//16 11//16 14//16 15//16
f 10//17 110//17 115//17 13//17
f 15//18 14//18 17//18 18//18
f 14//19 13//19 16//19 17//19
f 118//20 15//20 18//20 123//20
f 13//21 115//21 120//21 16//21
f 18//22 19//22 37//22
f 39//23 31//23 25//23 91//23
f 16//24 120//24 125//24 124//24
f 123//25 18//25 129//25 128//25
f 18//26 17//26 20//26 19//26
f 158//27 41//27 43//27 124//27 125//27
f 20//28 21//28 36//28 28//28
f 31//29 30//29 24//29 25//29
f 30//30 34//30 22//30 24//30
f 23//31 132//31 133//31 27//31
f 17//32 16//32 21//32 20//32
f 29//33 35//33 34//33 30//33
f 27//34 133//34 134//34 26//34
f 28//35 36//35 35//35 29//35
f 24//36 93//36 91//36 25//36
f 22//37 92//37 93//37 24//37
f 33//38 28//38 29//38 32//38
f 16//39 124//39 43//39
f 19//40 20//40 28//40 33//40
f 32//41 29//41 30//41 31//41
f 37//42 19//42 33//42 40//42
f 40//43 33//43 32//43 38//43
f 38//44 32//44 31//44 39//44
f 151//45 39//45 26//45 134//45
f 129//46 37//46 40//46 149//46 128//46
f 149//47 40//47 38//47 150//47
f 129//48 18//48 37//48
f 150//49 38//49 39//49 151//49
f 132//50 23//50 42//50 156//50
f 156//27 42//27 44//27 157//27
f 157//27 44//27 41//27 158//27
f 44//51 35//51 36//51 41//51
f 41//52 36//52 21//52 43//52
f 21//53 16//53 43//53
f 92//54 22//54 34//54 42//54
f 42//55 34//55 35//55 44//55
f 3//56 5//56 48//56 47//56
f 5//57 102//57 167//57 48//57
f 52//58 178//58 170//58 73//58
f 50//59 172//59 177//59 53//59
f 2//60 95//60 173//60 54//60
f 6//61 4//61 49//61 45//61
f 48//62 167//62 172//62 50//62
f 51//63 6//63 45//63 52//63
f 4//64 2//64 54//64 49//64
f 94//65 1//65 60//65 185//65
f 53//66 177//66 197//66 67//66
f 56//67 53//67 67//67 70//67
f 57//68 59//68 71//68 64//68
f 1//69 3//69 47//69 55//69
f 48//70 50//70 56//70 59//70
f 56//71 50//71 53//71
f 47//72 48//72 59//72 57//72
f 59//73 56//73 70//73 71//73
f 55//74 58//74 72//74 69//74
f 58//75 57//75 64//75 72//75
f 1//76 55//76 69//76 76//76
f 55//77 47//77 57//77 58//77
f 61//78 69//78 72//78
f 103//79 51//79 46//79 169//79
f 51//80 52//80 73//80 46//80
f 205//81 74//81 75//81 208//81
f 169//82 46//82 74//82 205//82
f 73//83 170//83 208//83 75//83
f 73//84 75//84 74//84
f 76//85 69//85 79//85 80//85
f 60//86 1//86 76//86
f 80//87 79//87 83//87 84//87
f 69//88 61//88 78//88 79//88
f 60//89 76//89 80//89 77//89
f 61//90 60//90 77//90 78//90
f 81//91 84//91 88//91 85//91
f 79//92 78//92 82//92 83//92
f 77//93 80//93 84//93 81//93
f 78//94 77//94 81//94 82//94
f 86//95 89//95 90//95 87//95
f 82//96 81//96 85//96 86//96
f 84//97 83//97 87//97 88//97
f 83//98 82//98 86//98 87//98
f 89//99 85//99 88//99 90//99
f 88//100 87//100 90//100
f 86//101 85//101 89//101
f 26//102 39//102 91//102
f 92//103 23//103 27//103 93//103
f 23//104 92//104 42//104
f 93//105 27//105 26//105 91//105
f 94//106 96//106 97//106 95//106
f 96//107 98//107 99//107 97//107
f 98//108 100//108 101//108 99//108
f 100//109 102//109 103//109 174//109 101//109
f 179//110 104//110 105//110 173//110
f 164//111 206//111 204//111
f 163//112 107//112 106//112 168//112
f 178//113 108//113 107//113 163//113 175//113
f 168//114 106//114 104//114 179//114
f 113//115 118//115 117//115 112//115
f 107//116 112//116 111//116 106//116
f 104//117 109//117 110//117 105//117
f 108//118 113//118 112//118 107//118
f 106//119 111//119 109//119 104//119
f 111//120 116//120 114//120 109//120
f 112//121 117//121 116//121 111//121
f 109//122 114//122 115//122 110//122
f 117//123 122//123 121//123 116//123
f 116//124 121//124 119//124 114//124
f 118//125 123//125 122//125 117//125
f 114//126 119//126 120//126 115//126
f 122//127 152//127 126//127
f 154//128 224//128 137//128 143//128
f 119//129 124//129 125//129 120//129
f 123//130 128//130 129//130 122//130
f 122//131 126//131 127//131 121//131
f 158//27 125//27 124//27 161//27 159//27
f 127//132 140//132 148//132 130//132
f 143//133 137//133 136//133 142//133
f 142//134 136//134 131//134 146//134
f 135//135 139//135 133//135 132//135
f 121//136 127//136 130//136 119//136
f 141//137 142//137 146//137 147//137
f 139//138 138//138 134//138 133//138
f 140//139 141//139 147//139 148//139
f 136//140 137//140 224//140 226//140
f 131//141 136//141 226//141 225//141
f 145//142 144//142 141//142 140//142
f 119//143 161//143 124//143
f 126//144 145//144 140//144 127//144
f 144//145 143//145 142//145 141//145
f 152//146 155//146 145//146 126//146
f 155//147 153//147 144//147 145//147
f 153//147 154//147 143//147 144//147
f 151//148 134//148 138//148 154//148
f 129//149 128//149 149//149 155//149 152//149
f 149//147 150//147 153//147 155//147
f 129//150 152//150 122//150
f 150//147 151//147 154//147 153//147
f 132//151 156//151 160//151 135//151
f 156//27 157//27 162//27 160//27
f 157//27 158//27 159//27 162//27
f 162//27 159//27 148//27 147//27
f 159//27 161//27 130//27 148//27
f 130//152 161//152 119//152
f 225//153 160//153 146//153 131//153
f 160//154 162//154 147//154 146//154
f 98//155 165//155 166//155 100//155
f 100//156 166//156 167//156 102//156
f 175//157 204//157 170//157 178//157
f 171//158 176//158 177//158 172//158
f 97//159 179//159 173//159 95//159
f 101//160 163//160 168//160 99//160
f 166//161 171//161 172//161 167//161
f 174//162 175//162 163//162 101//162
f 99//163 168//163 179//163 97//163
f 94//164 185//164 186//164 96//164
f 176//165 196//165 197//165 177//165
f 181//166 201//166 196//166 176//166
f 182//167 193//167 202//167 184//167
f 96//168 180//168 165//168 98//168
f 166//169 184//169 181//169 171//169
f 181//170 176//170 171//170
f 165//171 182//171 184//171 166//171
f 184//172 202//172 201//172 181//172
f 180//173 200//173 203//173 183//173
f 183//174 203//174 193//174 182//174
f 96//175 209//175 200//175 180//175
f 180//176 183//176 182//176 165//176
f 187//177 203//177 200//177
f 103//178 169//178 164//178 174//178
f 174//179 164//179 204//179 175//179
f 205//180 208//180 207//180 206//180
f 169//181 205//181 206//181 164//181
f 204//182 207//182 208//182 170//182
f 204//183 206//183 207//183
f 209//184 213//184 212//184 200//184
f 186//185 209//185 96//185
f 213//186 217//186 216//186 212//186
f 200//187 212//187 211//187 187//187
f 186//188 210//188 213//188 209//188
f 187//189 211//189 210//189 186//189
f 214//190 218//190 221//190 217//190
f 212//191 216//191 215//191 211//191
f 210//192 214//192 217//192 213//192
f 211//193 215//193 214//193 210//193
f 219//194 220//194 223//194 222//194
f 215//195 219//195 218//195 214//195
f 217//196 221//196 220//196 216//196
f 216//197 220//197 219//197 215//197
f 222//198 223//198 221//198 218//198
f 221//199 223//199 220//199
f 219//200 222//200 218//200
f 138//201 224//201 154//201
f 225//202 226//202 139//202 135//202
f 135//203 160//203 225//203
f 226//204 224//204 138//204 139//204
usemtl Bottom
f 185//205 60//205 61//205 188//205
f 71//206 70//206 63//206
f 188//207 61//207 62//207 189//207
f 198//208 68//208 67//208 197//208
f 62//209 63//209 66//209 65//209
f 63//210 70//210 67//210 66//210
f 189//211 62//211 65//211 192//211
f 66//212 67//212 68//212
f 192//213 65//213 68//213 198//213
f 65//214 66//214 68//214
f 64//215 71//215 63//215
f 62//216 61//216 72//216 63//216
f 63//217 72//217 64//217
f 185//218 188//218 187//218 186//218
f 202//219 191//219 201//219
f 188//220 189//220 190//220 187//220
f 198//221 197//221 196//221 199//221
f 190//222 194//222 195//222 191//222
f 191//223 195//223 196//223 201//223
f 189//224 192//224 194//224 190//224
f 195//225 199//225 196//225
f 192//226 198//226 199//226 194//226
f 194//227 199//227 195//227
f 193//228 191//228 202//228
f 190//229 191//229 203//229 187//229
f 191//230 193//230 203//230

View File

@ -0,0 +1,107 @@
fileFormatVersion: 2
guid: a80666c0ed0015a41a8aed9ff802c5fb
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 2
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 1
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations: []
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 0
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human: []
skeleton: []
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {instanceID: 0}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 2
humanoidOversampling: 1
avatarSetup: 0
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 41c63846fc596954cbc10d3683d949b8
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 4db2a2264eb268041b2712b11ad225e6
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 3b362087169b5fd4a84d4b7e7432a2e8
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -0,0 +1,117 @@
fileFormatVersion: 2
guid: 086eecc042c7fd249ab18fda688e1473
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 13
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
flipGreenChannel: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMipmapLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 0
wrapV: 0
wrapW: 0
nPOTScale: 1
lightmap: 0
compressionQuality: 50
spriteMode: 0
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 0
spriteTessellationDetail: -1
textureType: 0
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
swizzle: 50462976
cookieLightType: 0
platformSettings:
- serializedVersion: 4
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
customData:
physicsShape: []
bones: []
spriteID:
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
spriteCustomMetadata:
entries: []
nameFileIdTable: {}
mipmapLimitGroupName:
pSDRemoveMatte: 0
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -0,0 +1,117 @@
fileFormatVersion: 2
guid: d97b17f0ad4e6df40aa7396684d35380
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 13
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
flipGreenChannel: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMipmapLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 0
wrapV: 0
wrapW: 0
nPOTScale: 1
lightmap: 0
compressionQuality: 50
spriteMode: 0
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 0
spriteTessellationDetail: -1
textureType: 0
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
swizzle: 50462976
cookieLightType: 0
platformSettings:
- serializedVersion: 4
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
customData:
physicsShape: []
bones: []
spriteID:
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
spriteCustomMetadata:
entries: []
nameFileIdTable: {}
mipmapLimitGroupName:
pSDRemoveMatte: 0
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -0,0 +1,117 @@
fileFormatVersion: 2
guid: 1abe07b50e535fe4793deba34bf55736
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 13
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
flipGreenChannel: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMipmapLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 0
wrapV: 0
wrapW: 0
nPOTScale: 1
lightmap: 0
compressionQuality: 50
spriteMode: 0
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 0
spriteTessellationDetail: -1
textureType: 0
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
swizzle: 50462976
cookieLightType: 0
platformSettings:
- serializedVersion: 4
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
customData:
physicsShape: []
bones: []
spriteID:
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
spriteCustomMetadata:
entries: []
nameFileIdTable: {}
mipmapLimitGroupName:
pSDRemoveMatte: 0
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

View File

@ -0,0 +1,117 @@
fileFormatVersion: 2
guid: 0e336f9e191dbd6488f75b1276d05694
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 13
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
flipGreenChannel: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMipmapLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 0
wrapV: 0
wrapW: 0
nPOTScale: 1
lightmap: 0
compressionQuality: 50
spriteMode: 0
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 0
spriteTessellationDetail: -1
textureType: 0
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
swizzle: 50462976
cookieLightType: 0
platformSettings:
- serializedVersion: 4
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
customData:
physicsShape: []
bones: []
spriteID:
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
spriteCustomMetadata:
entries: []
nameFileIdTable: {}
mipmapLimitGroupName:
pSDRemoveMatte: 0
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

View File

@ -0,0 +1,117 @@
fileFormatVersion: 2
guid: 3b494261990b1124aa949943b83d3a11
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 13
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
flipGreenChannel: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMipmapLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 0
wrapV: 0
wrapW: 0
nPOTScale: 1
lightmap: 0
compressionQuality: 50
spriteMode: 0
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 0
spriteTessellationDetail: -1
textureType: 0
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
swizzle: 50462976
cookieLightType: 0
platformSettings:
- serializedVersion: 4
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
customData:
physicsShape: []
bones: []
spriteID:
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
spriteCustomMetadata:
entries: []
nameFileIdTable: {}
mipmapLimitGroupName:
pSDRemoveMatte: 0
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -0,0 +1,117 @@
fileFormatVersion: 2
guid: 38538c331b1a20e4c931b3fec02982ab
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 13
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
flipGreenChannel: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMipmapLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 0
wrapV: 0
wrapW: 0
nPOTScale: 1
lightmap: 0
compressionQuality: 50
spriteMode: 0
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 0
spriteTessellationDetail: -1
textureType: 0
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
swizzle: 50462976
cookieLightType: 0
platformSettings:
- serializedVersion: 4
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
customData:
physicsShape: []
bones: []
spriteID:
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
spriteCustomMetadata:
entries: []
nameFileIdTable: {}
mipmapLimitGroupName:
pSDRemoveMatte: 0
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -0,0 +1,117 @@
fileFormatVersion: 2
guid: 6bdf1f37744dc4940b0085d0b7898453
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 13
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
flipGreenChannel: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMipmapLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 0
wrapV: 0
wrapW: 0
nPOTScale: 1
lightmap: 0
compressionQuality: 50
spriteMode: 0
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 0
spriteTessellationDetail: -1
textureType: 0
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
swizzle: 50462976
cookieLightType: 0
platformSettings:
- serializedVersion: 4
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
customData:
physicsShape: []
bones: []
spriteID:
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
spriteCustomMetadata:
entries: []
nameFileIdTable: {}
mipmapLimitGroupName:
pSDRemoveMatte: 0
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,22 @@
KayKit : Medieval Builder Pack (1.0)
Created/distributed by Kay Lousberg (www.kaylousberg.com)
Creation date: 30/07/2021 15:00
------------------------------
License: (Creative Commons Zero, CC0)
http://creativecommons.org/publicdomain/zero/1.0/
This content is free to use in personal, educational and commercial projects.
Support me by using a brand resource provided in this pack or by crediting Kay Lousberg, www.kaylousberg.com (this is not mandatory)
------------------------------
Patreon: http://patreon.com/kaylousberg
Follow on Twitter for updates:
http://twitter.com/KayLousberg

View File

@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: 120fc37a569403d40b31ffff0acd504d
TextScriptImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 380a0433a3472f245920df5e9f635816
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 024e5f4e8eec2eb4099a784619bb08c0
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: c3374fc1dfff7174bb6de83d4f6e1e04
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,107 @@
fileFormatVersion: 2
guid: 1900a29c037771e43adb72432dc156a2
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 2
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 1
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations: []
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 0
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human: []
skeleton: []
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {instanceID: 0}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 2
humanoidOversampling: 1
avatarSetup: 0
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,107 @@
fileFormatVersion: 2
guid: 4668b73d91118dd478160334ac31d2a9
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 2
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 1
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations: []
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 0
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human: []
skeleton: []
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {instanceID: 0}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 2
humanoidOversampling: 1
avatarSetup: 0
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,107 @@
fileFormatVersion: 2
guid: b6918a02fa5f60f4095000a1c82ffd86
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 2
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 1
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations: []
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 0
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human: []
skeleton: []
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {instanceID: 0}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 2
humanoidOversampling: 1
avatarSetup: 0
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,107 @@
fileFormatVersion: 2
guid: e574ff44659bc3649ae65d6f14b54715
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 2
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 1
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations: []
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 0
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human: []
skeleton: []
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {instanceID: 0}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 2
humanoidOversampling: 1
avatarSetup: 0
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,107 @@
fileFormatVersion: 2
guid: 78720de8e810f5a4798480c902d6f07b
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 2
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 1
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations: []
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 0
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human: []
skeleton: []
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {instanceID: 0}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 2
humanoidOversampling: 1
avatarSetup: 0
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,107 @@
fileFormatVersion: 2
guid: eda1dd1568c05a74380dce1d77828701
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 2
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 1
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations: []
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 0
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human: []
skeleton: []
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {instanceID: 0}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 2
humanoidOversampling: 1
avatarSetup: 0
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,107 @@
fileFormatVersion: 2
guid: 13ff6b092428780489e3cbc547df2585
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 2
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 1
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations: []
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 0
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human: []
skeleton: []
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {instanceID: 0}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 2
humanoidOversampling: 1
avatarSetup: 0
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,107 @@
fileFormatVersion: 2
guid: 05c6b4d08f90da8489cb2436dc41b3d5
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 2
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 1
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations: []
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 0
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human: []
skeleton: []
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {instanceID: 0}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 2
humanoidOversampling: 1
avatarSetup: 0
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,107 @@
fileFormatVersion: 2
guid: 12ab4d0d9d8a4b144bb6778c5ad10b4c
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 2
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 1
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations: []
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 0
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human: []
skeleton: []
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {instanceID: 0}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 2
humanoidOversampling: 1
avatarSetup: 0
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,107 @@
fileFormatVersion: 2
guid: 159d7234ee55cc5449b75d2ae97dee13
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 2
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 1
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations: []
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 0
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human: []
skeleton: []
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {instanceID: 0}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 2
humanoidOversampling: 1
avatarSetup: 0
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,107 @@
fileFormatVersion: 2
guid: 1feb8a7c4d7fd13419b51cd3316cef81
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 2
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 1
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations: []
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 0
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human: []
skeleton: []
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {instanceID: 0}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 2
humanoidOversampling: 1
avatarSetup: 0
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,107 @@
fileFormatVersion: 2
guid: 41a6f93d4eae8294f85984049ae423fc
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 2
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 1
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations: []
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 0
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human: []
skeleton: []
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {instanceID: 0}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 2
humanoidOversampling: 1
avatarSetup: 0
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,107 @@
fileFormatVersion: 2
guid: 4b883fc5a73df094eb92029193df2d18
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 2
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 1
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations: []
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 0
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human: []
skeleton: []
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {instanceID: 0}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 2
humanoidOversampling: 1
avatarSetup: 0
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:

File diff suppressed because one or more lines are too long

Some files were not shown because too many files have changed in this diff Show More