2026-07-06 공룡에셋 추가

This commit is contained in:
2026-07-06 12:28:36 +09:00
parent 65242dbd6d
commit f8a6bba6ed
1068 changed files with 234829 additions and 57 deletions

View File

@@ -0,0 +1,223 @@
using UnityEngine;
public class Quet : Creature
{
public Transform Root,Neck0,Neck1,Neck2,Neck3,Neck4,Neck5,Neck6,Right_Wing0,Left_Wing0,Right_Wing1,Left_Wing1,Right_Hand,Left_Hand,
Left_Hips, Right_Hips, Left_Leg, Right_Leg, Left_Foot, Right_Foot;
public AudioClip Waterflush,Wind,Hit_jaw,Hit_head,Hit_tail,Medstep,Medsplash,Swallow,Idlecarn,Sniff2,Bigstep,Largesplash,Quet1,Quet2,Quet3;
//*************************************************************************************************************************************************
//Play sound
void OnCollisionStay(Collision col)
{
int rndPainsnd=Random.Range(0, 3); AudioClip painSnd=null;
switch (rndPainsnd) { case 0: painSnd=Quet1; break; case 1: painSnd=Quet2; break; case 2: painSnd=Quet3; break; }
ManageCollision(col, source, painSnd, Hit_jaw, Hit_head, Hit_tail);
}
void PlaySound(string name, int time)
{
if(time==currframe && lastframe!=currframe)
{
switch (name)
{
case "Step": source[1].pitch=Random.Range(0.75f, 1.25f);
if(isInWater) source[1].PlayOneShot(Waterflush, Random.Range(0.25f, 0.5f));
else if(isOnWater) source[1].PlayOneShot(Medsplash, Random.Range(0.25f, 0.5f));
else if(isOnGround) source[1].PlayOneShot(Medstep, Random.Range(0.25f, 0.5f));
lastframe=currframe; break;
case "Bite": source[1].pitch=Random.Range(1.5f, 1.75f); source[1].PlayOneShot(Bigstep, 0.25f);
lastframe=currframe; break;
case "Sniff": source[1].pitch=Random.Range(1.5f, 1.75f);
if(isInWater) source[1].PlayOneShot(Waterflush, Random.Range(0.25f, 0.5f));
else source[1].PlayOneShot(Sniff2, Random.Range(0.1f, 0.2f));
lastframe=currframe; break;
case "Die": source[1].pitch=Random.Range(1.0f, 1.25f); source[1].PlayOneShot(isOnWater|isInWater?Largesplash:Bigstep, 1.0f);
lastframe=currframe; isDead=true; break;
case "Food": source[0].pitch=Random.Range(1.0f, 1.25f); source[0].PlayOneShot(Swallow, 0.1f);
lastframe=currframe; break;
case "Repose": source[0].pitch=Random.Range(1.0f, 1.25f); source[0].PlayOneShot(Idlecarn, 0.25f);
lastframe=currframe; break;
case "Atk": int rnd1=Random.Range(0, 4); source[0].pitch=Random.Range(1.0f, 1.25f);
if(rnd1==0) source[0].PlayOneShot(Quet1, 1.0f);
else if(rnd1==1) source[0].PlayOneShot(Quet3, 1.0f);
lastframe=currframe; break;
case "Growl": source[0].pitch=Random.Range(1.0f, 1.25f); source[0].PlayOneShot(Quet2, 1.0f);
lastframe=currframe; break;
}
}
}
//*************************************************************************************************************************************************
// Add forces to the Rigidbody
void FixedUpdate ()
{
StatusUpdate(); if(!isActive | animSpeed==0.0f) { body.Sleep(); return; }
Vector3 dir=-Root.right; anm.SetBool("OnGround", isOnGround);
onReset=false; onAttack=false; isOnLevitation=false; isConstrained=false; onJump=false;
if(useAI && health!=0) { AICore(1, 2, 3, 0, 4, 5, 6); }// CPU
else if(health!=0) { GetUserInputs(1, 2, 3, 0, 4, 5, 6); }// Human
else { anm.SetBool("Attack", false); anm.SetInteger ("Move", 0); anm.SetInteger ("Idle", -1); }//Dead
//Set Y position
if(isInWater && health>0) { body.linearDamping=1; body.angularDamping=4; ApplyYPos(); anm.SetInteger ("Move", 1); }
else if(isOnGround)
{
roll=Mathf.Lerp(roll, 0.0f, 0.1f); pitch=Mathf.Lerp(pitch, 0.0f, 0.1f);
body.linearDamping=4; body.angularDamping=4; ApplyYPos();
}
else
{
if(health>0) { body.linearDamping=1; body.angularDamping=1; } //in air
else if(isInWater) { body.linearDamping=4; body.angularDamping=4; ApplyYPos(); }
else { body.linearDamping=1; body.angularDamping=1; ApplyGravity(); }
}
//Stopped
if(OnAnm.IsName("Quet|IdleA") | OnAnm.IsName("Quet|Die1") | OnAnm.IsName("Quet|Die2") | OnAnm.IsName("Quet|Fall"))
{
Move(Vector3.zero);
if(OnAnm.IsName("Quet|Die1")) { onReset=true; if(!isDead) { PlaySound("Growl", 1); PlaySound("Die", 11); } }
else if(OnAnm.IsName("Quet|Die2"))
{ onReset=true; if(!isDead) PlaySound("Die", 0); }
else if(OnAnm.IsName("Quet|Fall"))
{
onReset=true; isOnLevitation=true;
if(isInWater) anm.SetBool("OnGround", true);
if(OnAnm.normalizedTime<0.1f) source[0].PlayOneShot(Quet2, 0.5f);
}
}
//Forward
else if(OnAnm.IsName("Quet|Walk"))
{
Move(transform.forward, 20);
PlaySound("Step", 5); PlaySound("Step", 12);
}
//Running
else if(OnAnm.IsName("Quet|Run") | OnAnm.IsName("Quet|FlightToRun") | OnAnm.IsName("Quet|RunToFlight"))
{
isOnLevitation=true; Move(transform.forward, 100);
PlaySound("Step", 5); PlaySound("Step", 6); PlaySound("Sniff", 7); PlaySound("Sniff", 8);
}
//Backward
else if(OnAnm.IsName("Quet|Walk-"))
{
Move(-transform.forward, 10);
PlaySound("Step", 5); PlaySound("Step", 12);
}
//Strafe/Turn right
else if(OnAnm.IsName("Quet|Strafe+"))
{
Move(transform.right, 16);
PlaySound("Step", 5); PlaySound("Step", 12);
}
//Strafe/Turn left
else if(OnAnm.IsName("Quet|Strafe-"))
{
Move(-transform.right, 16);
PlaySound("Step", 5); PlaySound("Step", 12);
}
//Takeoff
else if(OnAnm.IsName("Quet|Takeoff"))
{
if(OnAnm.normalizedTime > 0.5) { isOnLevitation=true; onJump=true; Move(Vector3.up, 50); }
PlaySound("Sniff", 7); PlaySound("Sniff", 8);
}
//Fly
else if(OnAnm.IsName("Quet|Flight") | OnAnm.IsName("Quet|FlightGrowl") |
OnAnm.IsName("Quet|Glide") | OnAnm.IsName("Quet|GlideGrowl"))
{
isOnLevitation=true;
roll=Mathf.Lerp(roll, -spineX*10.0f, ang_T); pitch=Mathf.Lerp(pitch, Mathf.Clamp(anm.GetFloat("Pitch"),-0.75f, 1.0f)*90f, ang_T);
Move(-Root.right, (200+Mathf.Abs(anm.GetFloat("Pitch")*100f)));
if(OnAnm.IsName("Quet|Flight")) { PlaySound("Sniff", 5); PlaySound("Sniff", 6); }
else if(OnAnm.IsName("Quet|FlightGrowl")) { PlaySound("Atk", 2); PlaySound("Sniff", 5); }
else if(OnAnm.IsName("Quet|GlideGrowl")) PlaySound("Growl", 2);
}
//Fly - Stationary
else if(OnAnm.IsName("Quet|Statio") | OnAnm.IsName("Quet|StatioGrowl") | OnAnm.IsName("Quet|IdleD") | OnAnm.IsName("Quet|FlyAtk"))
{
isOnLevitation=true;
roll=Mathf.Lerp(roll, 0.0f, ang_T); pitch=Mathf.Lerp(pitch, 0.0f, ang_T);
Move(Vector3.up, 100*-anm.GetFloat("Pitch")); //fly up/down
if(isOnGround&&OnAnm.IsName("Quet|FlyAtk")) Move(Vector3.up, 50);//takeoff
if(anm.GetInteger("Move")>0 && anm.GetInteger("Move")<4) Move(transform.forward, 100); //fly forward
else if(anm.GetInteger("Move")== -1) Move(-transform.forward, 100); //fly backward
else if(anm.GetInteger("Move")== -10) Move(transform.right, 100); //fly right
else if(anm.GetInteger("Move") == 10) Move(-transform.right, 100); //fly left
if(OnAnm.IsName("Quet|StatioGrowl")) PlaySound("Atk", 3);
else if(OnAnm.IsName("Quet|IdleD")) { PlaySound("Atk", 2); PlaySound("Step", 10); }
else if(OnAnm.IsName("Quet|FlyAtk")) { onAttack=true; PlaySound("Atk", 3); PlaySound("Bite", 7); }
else { PlaySound("Sniff", 5); PlaySound("Sniff", 6); }
}
//Various
else if(OnAnm.IsName("Quet|Landing")) { isOnLevitation=true; PlaySound("Step", 2); PlaySound("Step", 3); }
else if(OnAnm.IsName("Quet|IdleB")) { PlaySound("Atk", 2); PlaySound("Bite", 5); PlaySound("Bite", 8); PlaySound("Bite", 10); }
else if(OnAnm.IsName("Quet|IdleC")) { onReset=true; isConstrained=true; }
else if(OnAnm.IsName("Quet|EatA")) { onReset=true; isConstrained=true; PlaySound("Food", 1); }
else if(OnAnm.IsName("Quet|EatB")) { onReset=true; isConstrained=true; PlaySound("Step", 0); }
else if(OnAnm.IsName("Quet|EatC")) onReset=true;
else if(OnAnm.IsName("Quet|ToSleep")){ onReset=true; isConstrained=true; }
else if(OnAnm.IsName("Quet|Sleep")) { onReset=true; isConstrained=true; PlaySound("Repose", 1); }
else if(OnAnm.IsName("Quet|Die-")) { isConstrained=true; PlaySound("Atk", 2); isDead=false; }
//Play wind sound based on speed
if(isOnLevitation)
{
if(!source[2].isPlaying) source[2].PlayOneShot(Wind);
source[2].volume=body.linearVelocity.magnitude/(40*size);
source[2].pitch=body.linearVelocity.magnitude/(40*size);
}
else if(source[2].isPlaying) source[2].Pause();
RotateBone(IkType.Flying, 32f);
}
//*************************************************************************************************************************************************
// Bone rotation
void LateUpdate()
{
if(!isActive) return; headPos=Head.GetChild(0).GetChild(0).position;
Root.rotation*= Quaternion.Euler(roll, pitch, 0);
Right_Wing0.rotation*= Quaternion.Euler(roll/2, 0, Mathf.Clamp(-pitch, -35, 0));
Left_Wing0.rotation*= Quaternion.Euler(roll/2, 0, Mathf.Clamp(pitch, 0, 35));
Right_Wing0.GetChild(0).rotation*= Quaternion.Euler(0, Mathf.Clamp(-roll, -15, 10), Mathf.Clamp(pitch, 0, 90)+Mathf.Abs(roll)/2);
Left_Wing0.GetChild(0).rotation*= Quaternion.Euler(0, Mathf.Clamp(roll, -15, 10), Mathf.Clamp(-pitch, -90, 0)-Mathf.Abs(roll)/2);
Right_Hand.rotation*= Quaternion.Euler(0, 0, Mathf.Clamp(-pitch, -90, 0)-Mathf.Abs(roll));
Left_Hand.rotation*= Quaternion.Euler(0, 0, Mathf.Clamp(pitch, 0, 90)+Mathf.Abs(roll));
float headZ =headY*headX/yaw_Max;
Neck0.rotation*= Quaternion.Euler(-headZ, -headY, headX);
Neck1.rotation*= Quaternion.Euler(-headZ, -headY, headX);
Neck2.rotation*= Quaternion.Euler(-headZ, -headY, headX);
Neck3.rotation*= Quaternion.Euler(-headZ, -headY, headX);
Neck4.rotation*= Quaternion.Euler(-headZ, -headY, headX);
Neck5.rotation*= Quaternion.Euler(-headZ, -headY, headX);
Neck6.rotation*= Quaternion.Euler(-headZ, -headY, headX);
Head.rotation*= Quaternion.Euler(-headZ, -headY, headX);
if(!isDead) Head.GetChild(0).transform.rotation*=Quaternion.Euler(0, lastHit, 0);
//Check for ground layer
GetGroundPos(IkType.Flying, Right_Hips, Right_Leg, Right_Foot, Left_Hips, Left_Leg, Left_Foot, Right_Wing0, Right_Wing1, Right_Hand, Left_Wing0, Left_Wing1, Left_Hand);
anm.SetBool("OnGround", isOnGround);
}
}

View File

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

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 96ac2b7033866954b8c40f73b36042bc
timeCreated: 1486886752
licenseType: Store
NativeFormatImporter:
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,126 @@
%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: quet
m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3}
m_Parent: {fileID: 0}
m_ModifiedSerializedProperties: 0
m_ValidKeywords:
- _ALPHATEST_ON
- _ENVIRONMENTREFLECTIONS_OFF
- _NORMALMAP
m_InvalidKeywords: []
m_LightmapFlags: 4
m_EnableInstancingVariants: 1
m_DoubleSidedGI: 0
m_CustomRenderQueue: 2450
stringTagMap:
RenderType: TransparentCutout
disabledShaderPasses: []
m_LockedProperties:
m_SavedProperties:
serializedVersion: 3
m_TexEnvs:
- _BaseMap:
m_Texture: {fileID: 2800000, guid: 18115e7cf86b3674e84156775ea8d3c5, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _BumpMap:
m_Texture: {fileID: 2800000, guid: 88c72b456b714f040b64780d71949528, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _DetailAlbedoMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _DetailMask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _DetailNormalMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _EmissionMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _MainTex:
m_Texture: {fileID: 2800000, guid: 18115e7cf86b3674e84156775ea8d3c5, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _MetallicGlossMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _NormalMap:
m_Texture: {fileID: 2800000, guid: 88c72b456b714f040b64780d71949528, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _OcclusionMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _ParallaxMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
m_Ints: []
m_Floats:
- _Alpha: 0
- _AlphaClip: 1
- _AlphaToMask: 1
- _BaseLight: 1.5
- _Blend: 0
- _BumpScale: 1
- _Cull: 2
- _Cutoff: 0.75
- _DetailNormalMapScale: 1
- _DstBlend: 0
- _DstBlendAlpha: 0
- _EnvironmentReflections: 0
- _GlossMapScale: 0.451
- _Glossiness: 0.5
- _GlossyReflections: 0
- _Metallic: 0
- _Mode: 1
- _Occlusion: 0.15
- _OcclusionStrength: 1
- _Parallax: 0.02
- _QueueOffset: 0
- _Smoothness: 0.5
- _SmoothnessTextureChannel: 0
- _SpecularHighlights: 1
- _SrcBlend: 1
- _SrcBlendAlpha: 1
- _Surface: 0
- _UVSec: 0
- _Vertex: 0
- _WorkflowMode: 1
- _ZTest: 4
- _ZWrite: 1
m_Colors:
- _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}
m_BuildTextureStacks: []
m_AllowLocking: 1
--- !u!114 &4026559251109589209
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: Unity.RenderPipelines.Universal.Editor::UnityEditor.Rendering.Universal.AssetVersion
version: 10

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 426cd0b1bee394742aa600930ba322a7
timeCreated: 1467092955
licenseType: Store
NativeFormatImporter:
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,127 @@
fileFormatVersion: 2
guid: 18115e7cf86b3674e84156775ea8d3c5
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 10
mipmaps:
mipMapMode: 0
enableMipMap: 1
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: -1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: -1
mipBias: -100
wrapU: -1
wrapV: -1
wrapW: -1
nPOTScale: 1
lightmap: 0
compressionQuality: 50
spriteMode: 0
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 0
textureShape: 1
singleChannelComponent: 0
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
platformSettings:
- serializedVersion: 3
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: WebGL
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 1
- serializedVersion: 3
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 1
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID:
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
spritePackingTag:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,127 @@
fileFormatVersion: 2
guid: ddbca16533d9306409a8b129a280f252
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 10
mipmaps:
mipMapMode: 0
enableMipMap: 1
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: -1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: -1
mipBias: -100
wrapU: -1
wrapV: -1
wrapW: -1
nPOTScale: 1
lightmap: 0
compressionQuality: 50
spriteMode: 0
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 0
textureShape: 1
singleChannelComponent: 0
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
platformSettings:
- serializedVersion: 3
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: WebGL
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 1
- serializedVersion: 3
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 1
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID:
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
spritePackingTag:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,127 @@
fileFormatVersion: 2
guid: c350882815a2c5941a1ac6b93028aa8b
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 10
mipmaps:
mipMapMode: 0
enableMipMap: 1
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: -1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: -1
mipBias: -100
wrapU: -1
wrapV: -1
wrapW: -1
nPOTScale: 1
lightmap: 0
compressionQuality: 50
spriteMode: 0
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 0
textureShape: 1
singleChannelComponent: 0
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
platformSettings:
- serializedVersion: 3
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: WebGL
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 1
- serializedVersion: 3
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 1
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID:
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
spritePackingTag:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,92 @@
fileFormatVersion: 2
guid: 88c72b456b714f040b64780d71949528
timeCreated: 1496402179
licenseType: Store
TextureImporter:
fileIDToRecycleName: {}
serializedVersion: 4
mipmaps:
mipMapMode: 0
enableMipMap: 1
sRGBTexture: 0
linearTexture: 1
fadeOut: 0
borderMipMap: 0
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 1
heightScale: 0.25
normalMapFilter: 0
isReadable: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: -1
maxTextureSize: 2048
textureSettings:
filterMode: 1
aniso: -1
mipBias: -1
wrapMode: -1
nPOTScale: 1
lightmap: 0
compressionQuality: 50
spriteMode: 0
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spritePixelsToUnits: 100
alphaUsage: 1
alphaIsTransparency: 0
spriteTessellationDetail: -1
textureType: 1
textureShape: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
platformSettings:
- buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
- buildTarget: Standalone
maxTextureSize: 2048
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
- buildTarget: WebGL
maxTextureSize: 2048
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
- buildTarget: Android
maxTextureSize: 2048
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
spritePackingTag:
userData:
assetBundleName:
assetBundleVariant: