Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
tetra-tower
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Oenos
tetra-tower
Commits
cf29de20
You need to sign in or sign up before continuing.
Commit
cf29de20
authored
Feb 25, 2019
by
18류지석
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
디버프시 색 바뀌는것 복구, 인벤토리 임시 이미지 삭제.
parent
b2fe3798
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
18 additions
and
1335 deletions
+18
-1335
Enemy.cs
Assets/Scripts/Characters/Enemy/Enemy.cs
+16
-2
EnemyAir.cs
Assets/Scripts/Characters/Enemy/EnemyAir.cs
+1
-0
EnemyGround.cs
Assets/Scripts/Characters/Enemy/EnemyGround.cs
+1
-0
tmp1.png
Assets/Sprites/Inventory/tmp1.png
+0
-0
tmp1.png.meta
Assets/Sprites/Inventory/tmp1.png.meta
+0
-790
tmp2.png
Assets/Sprites/Inventory/tmp2.png
+0
-0
tmp2.png.meta
Assets/Sprites/Inventory/tmp2.png.meta
+0
-223
tmp3.png
Assets/Sprites/Inventory/tmp3.png
+0
-0
tmp3.png.meta
Assets/Sprites/Inventory/tmp3.png.meta
+0
-139
tmp4.png
Assets/Sprites/Inventory/tmp4.png
+0
-0
tmp4.png.meta
Assets/Sprites/Inventory/tmp4.png.meta
+0
-181
No files found.
Assets/Scripts/Characters/Enemy/Enemy.cs
View file @
cf29de20
...
@@ -93,6 +93,8 @@ public abstract class Enemy : MonoBehaviour {
...
@@ -93,6 +93,8 @@ public abstract class Enemy : MonoBehaviour {
{
{
Invisible
=
true
;
Invisible
=
true
;
animator
.
SetTrigger
(
"DeadTrigger"
);
animator
.
SetTrigger
(
"DeadTrigger"
);
StopCoroutine
(
"OnFire"
);
GetComponent
<
SpriteRenderer
>().
color
=
Color
.
white
;
return
;
return
;
}
}
...
@@ -130,6 +132,8 @@ public abstract class Enemy : MonoBehaviour {
...
@@ -130,6 +132,8 @@ public abstract class Enemy : MonoBehaviour {
{
{
Invisible
=
true
;
Invisible
=
true
;
animator
.
SetTrigger
(
"DeadTrigger"
);
animator
.
SetTrigger
(
"DeadTrigger"
);
StopCoroutine
(
"OnFire"
);
GetComponent
<
SpriteRenderer
>().
color
=
Color
.
white
;
return
;
return
;
}
}
...
@@ -198,17 +202,26 @@ public abstract class Enemy : MonoBehaviour {
...
@@ -198,17 +202,26 @@ public abstract class Enemy : MonoBehaviour {
{
{
fireDuration
=
duration
;
fireDuration
=
duration
;
float
dotGap
=
1.0f
;
float
dotGap
=
1.0f
;
while
(
true
)
while
(
true
)
{
{
yield
return
new
WaitForSeconds
(
dotGap
);
yield
return
new
WaitForSeconds
(
dotGap
);
for
(
float
timer
=
0
;
timer
<
dotGap
;
timer
+=
Time
.
deltaTime
)
{
GetComponent
<
SpriteRenderer
>().
color
=
new
Color
(
1f
,
0.5f
+
0.5f
*
timer
/
dotGap
,
0.5f
+
0.5f
*
timer
/
dotGap
);
yield
return
null
;
}
fireDuration
-=
dotGap
;
fireDuration
-=
dotGap
;
if
(
fireDuration
<
0.0f
)
{
if
(
fireDuration
<
0.0f
)
{
fireDuration
=
0.0f
;
fireDuration
=
0.0f
;
break
;
break
;
}
}
GetDamaged
(
lifeStoneManager
.
lifeStoneRowNum
*
0.3f
);
GetDamaged
(
lifeStoneManager
.
lifeStoneRowNum
*
0.3f
);
EffectManager
.
Instance
.
StartNumber
(
0
,
gameObject
.
transform
.
parent
.
position
,
lifeStoneManager
.
lifeStoneRowNum
*
0.3f
);
}
}
debuffState
[(
int
)
EnemyDebuffCase
.
Fire
]
=
DebuffState
.
Off
;
debuffState
[(
int
)
EnemyDebuffCase
.
Fire
]
=
DebuffState
.
Off
;
GetComponent
<
SpriteRenderer
>().
color
=
Color
.
white
;
}
}
IEnumerator
ImmuneTimer
(
EnemyDebuffCase
Case
,
float
duration
)
IEnumerator
ImmuneTimer
(
EnemyDebuffCase
Case
,
float
duration
)
...
@@ -224,6 +237,7 @@ public abstract class Enemy : MonoBehaviour {
...
@@ -224,6 +237,7 @@ public abstract class Enemy : MonoBehaviour {
switch
(
Case
)
switch
(
Case
)
{
{
case
EnemyDebuffCase
.
Ice
:
case
EnemyDebuffCase
.
Ice
:
GetComponent
<
SpriteRenderer
>().
color
=
Color
.
white
;
StopCoroutine
(
"OnIce"
);
StopCoroutine
(
"OnIce"
);
KnockbackLock
=
false
;
KnockbackLock
=
false
;
animator
.
speed
=
1.0f
;
animator
.
speed
=
1.0f
;
...
...
Assets/Scripts/Characters/Enemy/EnemyAir.cs
View file @
cf29de20
...
@@ -59,6 +59,7 @@ public class EnemyAir : Enemy {
...
@@ -59,6 +59,7 @@ public class EnemyAir : Enemy {
protected
override
IEnumerator
OnIce
(
float
duration
)
protected
override
IEnumerator
OnIce
(
float
duration
)
{
{
GetComponent
<
SpriteRenderer
>().
color
=
new
Color
(
0.5f
,
0.5f
,
1f
);
ChangeVelocityXY
(
Vector2
.
zero
,
new
bool
[]
{
});
ChangeVelocityXY
(
Vector2
.
zero
,
new
bool
[]
{
});
KnockbackLock
=
true
;
KnockbackLock
=
true
;
animator
.
SetTrigger
(
"StunnedTrigger"
);
animator
.
SetTrigger
(
"StunnedTrigger"
);
...
...
Assets/Scripts/Characters/Enemy/EnemyGround.cs
View file @
cf29de20
...
@@ -123,6 +123,7 @@ public class EnemyGround : Enemy {
...
@@ -123,6 +123,7 @@ public class EnemyGround : Enemy {
protected
override
IEnumerator
OnIce
(
float
duration
)
protected
override
IEnumerator
OnIce
(
float
duration
)
{
{
GetComponent
<
SpriteRenderer
>().
color
=
new
Color
(
0.5f
,
0.5f
,
1f
);
ChangeVelocityX
(
0.0f
,
new
bool
[]
{
});
ChangeVelocityX
(
0.0f
,
new
bool
[]
{
});
KnockbackLock
=
true
;
KnockbackLock
=
true
;
animator
.
SetTrigger
(
"StunnedTrigger"
);
animator
.
SetTrigger
(
"StunnedTrigger"
);
...
...
Assets/Sprites/Inventory/tmp1.png
deleted
100644 → 0
View file @
b2fe3798
64.8 KB
Assets/Sprites/Inventory/tmp1.png.meta
deleted
100644 → 0
View file @
b2fe3798
fileFormatVersion: 2
guid: 838b723a0221f5e48a7f4d3997f18520
TextureImporter:
fileIDToRecycleName:
21300000: tmp1_0
21300002: tmp1_1
21300004: tmp1_2
21300006: tmp1_3
21300008: tmp1_4
21300010: tmp1_5
21300012: tmp1_6
21300014: tmp1_7
21300016: tmp1_8
21300018: tmp1_9
21300020: tmp1_10
21300022: tmp1_11
21300024: tmp1_12
21300026: tmp1_13
21300028: tmp1_14
21300030: tmp1_15
21300032: tmp1_16
21300034: tmp1_17
21300036: tmp1_18
21300038: tmp1_19
21300040: tmp1_20
21300042: tmp1_21
21300044: tmp1_22
21300046: tmp1_23
21300048: tmp1_24
21300050: tmp1_25
21300052: tmp1_26
21300054: tmp1_27
21300056: tmp1_28
21300058: tmp1_29
21300060: tmp1_30
21300062: tmp1_31
21300064: tmp1_32
externalObjects: {}
serializedVersion: 6
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 0
aniso: -1
mipBias: -100
wrapU: 1
wrapV: 1
wrapW: 1
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 2
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: 8
textureShape: 1
singleChannelComponent: 0
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
platformSettings:
- serializedVersion: 2
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 0
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
- serializedVersion: 2
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 0
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
spriteSheet:
serializedVersion: 2
sprites:
- serializedVersion: 2
name: tmp1_0
rect:
serializedVersion: 2
x: 0
y: 726
width: 176
height: 175
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 13fa34b73399c7f47939044ed1ecab23
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: tmp1_1
rect:
serializedVersion: 2
x: 213
y: 726
width: 175
height: 175
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 35f94906a57c42643abdaa2320642f11
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: tmp1_2
rect:
serializedVersion: 2
x: 435
y: 726
width: 175
height: 175
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 3ca2fb0cd621f2b41b2a3a16651cbf66
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: tmp1_3
rect:
serializedVersion: 2
x: 668
y: 726
width: 176
height: 175
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: c7e3a327e25728f47ada8029dd96a4fa
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: tmp1_4
rect:
serializedVersion: 2
x: 902
y: 726
width: 176
height: 175
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: d3fb7c863bd73c04bb0ae6edf37e59ce
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: tmp1_5
rect:
serializedVersion: 2
x: 1180
y: 714
width: 298
height: 170
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: e1f6902f88137fb4f9cebd7933e869e8
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: tmp1_6
rect:
serializedVersion: 2
x: 1523
y: 714
width: 297
height: 170
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 8facfa23983df07438130e13cb97f3d7
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: tmp1_7
rect:
serializedVersion: 2
x: 33
y: 498
width: 110
height: 109
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 3a1b9b3bf18d8d4418b3938b1f76723e
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: tmp1_8
rect:
serializedVersion: 2
x: 246
y: 498
width: 109
height: 109
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 35d058fe9a60a744684ab8d1ca235962
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: tmp1_9
rect:
serializedVersion: 2
x: 468
y: 498
width: 109
height: 109
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 07d6851dc7dcdac46a81fd5e03ac1b5a
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: tmp1_10
rect:
serializedVersion: 2
x: 702
y: 498
width: 109
height: 109
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 4680347636ab3554e90a28cd82a39133
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: tmp1_11
rect:
serializedVersion: 2
x: 935
y: 498
width: 110
height: 109
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 11368de5c9db4e947b9f3e1fc2f25291
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: tmp1_12
rect:
serializedVersion: 2
x: 1169
y: 485
width: 298
height: 171
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: a873ae69020b03043b7a369e55c86e45
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: tmp1_13
rect:
serializedVersion: 2
x: 1512
y: 485
width: 297
height: 171
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 2e9de9cf755d2d14582082670ee329f7
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: tmp1_14
rect:
serializedVersion: 2
x: 33
y: 323
width: 110
height: 109
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 003800980b2f9fc4e802e38ad618986a
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: tmp1_15
rect:
serializedVersion: 2
x: 246
y: 323
width: 109
height: 109
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: eab4f8fee71e2ba49957d1a465617e06
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: tmp1_16
rect:
serializedVersion: 2
x: 468
y: 323
width: 109
height: 109
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 44c713cc5458a23438a203b8128deac5
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: tmp1_17
rect:
serializedVersion: 2
x: 702
y: 323
width: 109
height: 109
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: b56d90193d2ef3a4c92e07835a51f7de
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: tmp1_18
rect:
serializedVersion: 2
x: 935
y: 323
width: 110
height: 109
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 2a7d11d042a717f4284fb55a773c1938
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: tmp1_19
rect:
serializedVersion: 2
x: 1169
y: 239
width: 298
height: 170
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 7429b34c67eaa76449b311c5e830b81d
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: tmp1_20
rect:
serializedVersion: 2
x: 1512
y: 239
width: 297
height: 170
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: a74a4f9e17714e14eae9a3769494ce2d
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: tmp1_21
rect:
serializedVersion: 2
x: 33
y: 162
width: 110
height: 109
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: f7b427ee763b9834280f674ba9c49a42
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: tmp1_22
rect:
serializedVersion: 2
x: 246
y: 162
width: 109
height: 109
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: e7fa7e648d5327144882a273f1b61d1f
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: tmp1_23
rect:
serializedVersion: 2
x: 468
y: 162
width: 109
height: 109
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: ceead0bfb10863249b64472c313b1229
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: tmp1_24
rect:
serializedVersion: 2
x: 702
y: 162
width: 109
height: 109
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 488133d74ae3e1d48935f8e685e3dfd5
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: tmp1_25
rect:
serializedVersion: 2
x: 935
y: 162
width: 110
height: 109
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: c32e60cd72b27364fba386696333557a
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: tmp1_26
rect:
serializedVersion: 2
x: 1169
y: 24
width: 298
height: 170
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 9085e8a91c37f4f44a8c451cb1461989
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: tmp1_27
rect:
serializedVersion: 2
x: 1512
y: 24
width: 297
height: 170
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 96881ef23ddc56348bef0a4abce64aef
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: tmp1_28
rect:
serializedVersion: 2
x: 33
y: 0
width: 110
height: 110
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 79db7ddc910ac9f4299cd7ffe6d95763
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: tmp1_29
rect:
serializedVersion: 2
x: 246
y: 0
width: 109
height: 110
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: c16472d6c8b00ff49bbcaca0b2d9c8a3
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: tmp1_30
rect:
serializedVersion: 2
x: 468
y: 0
width: 109
height: 110
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 13d63f2ec5c615a479237be0e7a4c0f5
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: tmp1_31
rect:
serializedVersion: 2
x: 702
y: 0
width: 109
height: 110
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: cc360f685cb095d488bb2f1e2972fcb6
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: tmp1_32
rect:
serializedVersion: 2
x: 935
y: 0
width: 110
height: 110
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 279bbf1bfef615040bb9bbc0e0be06b9
vertices: []
indices:
edges: []
weights: []
outline: []
physicsShape: []
bones: []
spriteID: 9e430c5cfa9bb7245a9134d21ea55436
vertices: []
indices:
edges: []
weights: []
spritePackingTag:
userData:
assetBundleName:
assetBundleVariant:
Assets/Sprites/Inventory/tmp2.png
deleted
100644 → 0
View file @
b2fe3798
7.62 KB
Assets/Sprites/Inventory/tmp2.png.meta
deleted
100644 → 0
View file @
b2fe3798
fileFormatVersion: 2
guid: 01116b23700d9114dbc3620954b10d7f
TextureImporter:
fileIDToRecycleName:
21300000: tmp2_0
21300002: tmp2_1
21300004: tmp2_2
21300006: tmp2_3
21300008: tmp2_4
21300010: tmp2_5
externalObjects: {}
serializedVersion: 6
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 0
aniso: -1
mipBias: -100
wrapU: 1
wrapV: 1
wrapW: 1
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 2
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: 8
textureShape: 1
singleChannelComponent: 0
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
platformSettings:
- serializedVersion: 2
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 0
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
- serializedVersion: 2
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 0
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
spriteSheet:
serializedVersion: 2
sprites:
- serializedVersion: 2
name: tmp2_0
rect:
serializedVersion: 2
x: 0
y: 634
width: 601
height: 202
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 74916e2b287ad3c4da04ed8f951c2bd6
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: tmp2_1
rect:
serializedVersion: 2
x: 616
y: 634
width: 601
height: 202
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 735e9385bc93e7540887ffd9274ec36e
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: tmp2_2
rect:
serializedVersion: 2
x: 0
y: 382
width: 601
height: 202
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 3631f82898531c744a8934ae9468d6b1
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: tmp2_3
rect:
serializedVersion: 2
x: 616
y: 382
width: 601
height: 202
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: b976d325469726a46b727db523bf65bb
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: tmp2_4
rect:
serializedVersion: 2
x: 0
y: 150
width: 601
height: 202
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: f0673421a265f0b49abfee5965efd8d0
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: tmp2_5
rect:
serializedVersion: 2
x: 617
y: 0
width: 625
height: 351
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 6b160764c798f854197e60cf502162ed
vertices: []
indices:
edges: []
weights: []
outline: []
physicsShape: []
bones: []
spriteID: cc14ee455ddc4c347aeb4188e373dc74
vertices: []
indices:
edges: []
weights: []
spritePackingTag:
userData:
assetBundleName:
assetBundleVariant:
Assets/Sprites/Inventory/tmp3.png
deleted
100644 → 0
View file @
b2fe3798
1.74 KB
Assets/Sprites/Inventory/tmp3.png.meta
deleted
100644 → 0
View file @
b2fe3798
fileFormatVersion: 2
guid: 726417bbac5d59e4ca46df0c81e62fa8
TextureImporter:
fileIDToRecycleName:
21300000: tmp3_0
21300002: tmp3_1
externalObjects: {}
serializedVersion: 6
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 0
aniso: -1
mipBias: -100
wrapU: 1
wrapV: 1
wrapW: 1
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 2
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: 8
textureShape: 1
singleChannelComponent: 0
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
platformSettings:
- serializedVersion: 2
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 0
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
- serializedVersion: 2
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 0
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
spriteSheet:
serializedVersion: 2
sprites:
- serializedVersion: 2
name: tmp3_0
rect:
serializedVersion: 2
x: 0
y: 127
width: 1050
height: 129
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 94830bfb5b28b8a49a805ae7ec8c71de
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: tmp3_1
rect:
serializedVersion: 2
x: 0
y: 0
width: 622
height: 78
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 01f048ccc100ad74aaadf7db7550895e
vertices: []
indices:
edges: []
weights: []
outline: []
physicsShape: []
bones: []
spriteID: 3dd24610f597c204ab004b747b5972e0
vertices: []
indices:
edges: []
weights: []
spritePackingTag:
userData:
assetBundleName:
assetBundleVariant:
Assets/Sprites/Inventory/tmp4.png
deleted
100644 → 0
View file @
b2fe3798
28.9 KB
Assets/Sprites/Inventory/tmp4.png.meta
deleted
100644 → 0
View file @
b2fe3798
fileFormatVersion: 2
guid: c448ed0a4ef1fc24a95611d602eca458
TextureImporter:
fileIDToRecycleName:
21300000: tmp4_0
21300002: tmp4_1
21300004: tmp4_2
21300006: tmp4_3
externalObjects: {}
serializedVersion: 6
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 0
aniso: -1
mipBias: -100
wrapU: 1
wrapV: 1
wrapW: 1
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 2
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: 8
textureShape: 1
singleChannelComponent: 0
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
platformSettings:
- serializedVersion: 2
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 0
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
- serializedVersion: 2
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 0
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
spriteSheet:
serializedVersion: 2
sprites:
- serializedVersion: 2
name: tmp4_0
rect:
serializedVersion: 2
x: 11
y: 690
width: 297
height: 170
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 3e0086043c2678544b0633c277147292
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: tmp4_1
rect:
serializedVersion: 2
x: 0
y: 461
width: 297
height: 171
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 246d20c1aa63dc64787908fae8fcce5f
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: tmp4_2
rect:
serializedVersion: 2
x: 0
y: 215
width: 297
height: 170
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 916b395af1ce47c4b98e277076c8109f
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: tmp4_3
rect:
serializedVersion: 2
x: 0
y: 0
width: 297
height: 170
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: d531b4f42e967e044b7509118568a7c2
vertices: []
indices:
edges: []
weights: []
outline: []
physicsShape: []
bones: []
spriteID: 207a8f096d05e3945b73a2d6dbe34e4c
vertices: []
indices:
edges: []
weights: []
spritePackingTag:
userData:
assetBundleName:
assetBundleVariant:
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment