no more spin
This commit is contained in:
parent
781a3773a1
commit
f67ff54403
|
@ -65,7 +65,7 @@ Material:
|
||||||
m_Scale: {x: 1, y: 1}
|
m_Scale: {x: 1, y: 1}
|
||||||
m_Offset: {x: 0, y: 0}
|
m_Offset: {x: 0, y: 0}
|
||||||
- _NoiseMap:
|
- _NoiseMap:
|
||||||
m_Texture: {fileID: 0}
|
m_Texture: {fileID: 2800000, guid: 32d99a4d1161f0f4ca4fca2997778b37, type: 3}
|
||||||
m_Scale: {x: 1, y: 1}
|
m_Scale: {x: 1, y: 1}
|
||||||
m_Offset: {x: 0, y: 0}
|
m_Offset: {x: 0, y: 0}
|
||||||
- _OcclusionMap:
|
- _OcclusionMap:
|
||||||
|
|
|
@ -506,7 +506,7 @@ PrefabInstance:
|
||||||
objectReference: {fileID: 0}
|
objectReference: {fileID: 0}
|
||||||
- target: {fileID: 3397488660842926093, guid: 1f82f952c53fc7449a0091cf29ba3def, type: 3}
|
- target: {fileID: 3397488660842926093, guid: 1f82f952c53fc7449a0091cf29ba3def, type: 3}
|
||||||
propertyPath: m_LocalScale.x
|
propertyPath: m_LocalScale.x
|
||||||
value: 1759.5208
|
value: 1492.1846
|
||||||
objectReference: {fileID: 0}
|
objectReference: {fileID: 0}
|
||||||
- target: {fileID: 3397488660842926093, guid: 1f82f952c53fc7449a0091cf29ba3def, type: 3}
|
- target: {fileID: 3397488660842926093, guid: 1f82f952c53fc7449a0091cf29ba3def, type: 3}
|
||||||
propertyPath: m_LocalScale.y
|
propertyPath: m_LocalScale.y
|
||||||
|
@ -898,7 +898,7 @@ Transform:
|
||||||
m_PrefabAsset: {fileID: 0}
|
m_PrefabAsset: {fileID: 0}
|
||||||
m_GameObject: {fileID: 1222495242}
|
m_GameObject: {fileID: 1222495242}
|
||||||
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||||
m_LocalPosition: {x: 0, y: -0.62, z: 0}
|
m_LocalPosition: {x: 0, y: 0, z: 0}
|
||||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||||
m_Children: []
|
m_Children: []
|
||||||
m_Father: {fileID: 1173812008}
|
m_Father: {fileID: 1173812008}
|
||||||
|
@ -947,7 +947,7 @@ MonoBehaviour:
|
||||||
m_Script: {fileID: 11500000, guid: 9463c7c973b354f1c882567f52337aed, type: 3}
|
m_Script: {fileID: 11500000, guid: 9463c7c973b354f1c882567f52337aed, type: 3}
|
||||||
m_Name:
|
m_Name:
|
||||||
m_EditorClassIdentifier:
|
m_EditorClassIdentifier:
|
||||||
numObjects: 3000
|
numObjects: 500
|
||||||
prefab: {fileID: 1738226812227614580, guid: e084e082567284f79a41423c4fe1adab, type: 3}
|
prefab: {fileID: 1738226812227614580, guid: e084e082567284f79a41423c4fe1adab, type: 3}
|
||||||
numToSpawnPerFrame: 10
|
numToSpawnPerFrame: 10
|
||||||
--- !u!1 &1581716069
|
--- !u!1 &1581716069
|
||||||
|
|
|
@ -5,21 +5,14 @@ using UnityEngine;
|
||||||
[CreateAssetMenu]
|
[CreateAssetMenu]
|
||||||
public class EnemyAppearBehaviour : BaseBulletBehaviour
|
public class EnemyAppearBehaviour : BaseBulletBehaviour
|
||||||
{
|
{
|
||||||
[SerializeField] private float zPos = 50f;
|
|
||||||
[SerializeField] private float moveInDuration = 0.5f;
|
|
||||||
[SerializeField] private float scaleUpDuration = 0.3f;
|
[SerializeField] private float scaleUpDuration = 0.3f;
|
||||||
[SerializeField] private float scaleUpDelay = 0.2f;
|
[SerializeField] private float scaleUpDelay = 0.2f;
|
||||||
[SerializeField] private float moveOutPos = -15f;
|
|
||||||
[SerializeField] private float moveOutDuration = 2f;
|
|
||||||
|
|
||||||
public override void DoBehaviour(Transform bullet, float size, Vector3 pos)
|
public override void DoBehaviour(Transform bullet, float size, Vector3 pos)
|
||||||
{
|
{
|
||||||
bullet.localScale = Vector3.zero;
|
bullet.localScale = Vector3.zero;
|
||||||
bullet.localPosition = new Vector3(pos.x, pos.y, zPos);
|
bullet.localPosition = pos;
|
||||||
DOTween.Sequence()
|
DOTween.Sequence()
|
||||||
//.Append(bullet.DOMove(pos, moveInDuration).SetEase(Ease.OutQuint))
|
|
||||||
.Insert(scaleUpDelay, bullet.DORotate(new Vector3(0,0,45), moveInDuration/2f))
|
|
||||||
.Insert(scaleUpDelay + moveInDuration/2f, bullet.DORotate(Vector3.zero, moveInDuration/2f))
|
|
||||||
.Insert(scaleUpDelay, bullet.DOScale(Vector3.one * size, scaleUpDuration).SetEase(Ease.OutQuint));
|
.Insert(scaleUpDelay, bullet.DOScale(Vector3.one * size, scaleUpDuration).SetEase(Ease.OutQuint));
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -104,12 +104,13 @@ MonoBehaviour:
|
||||||
collidesWith:
|
collidesWith:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
m_Bits: 128
|
m_Bits: 128
|
||||||
accuracy: 5
|
accuracy: 2
|
||||||
zone:
|
zone:
|
||||||
numToSpawn: 1
|
numToSpawn: 1
|
||||||
offset: {x: 0, y: 0}
|
offset: {x: 0, y: 0, z: 0}
|
||||||
spawnType: 2
|
spawnType: 0
|
||||||
spawnDir: 0
|
spawnDir: 0
|
||||||
|
spawnPlane: 1
|
||||||
width: 0
|
width: 0
|
||||||
height: 0
|
height: 0
|
||||||
surfaceOnly: 1
|
surfaceOnly: 1
|
||||||
|
|
Loading…
Reference in New Issue