diff --git a/Assets/AssetsFORELLE/Prefabs/AudioController.prefab b/Assets/AssetsFORELLE/Prefabs/AudioController.prefab index 56a46d5..64a444a 100644 --- a/Assets/AssetsFORELLE/Prefabs/AudioController.prefab +++ b/Assets/AssetsFORELLE/Prefabs/AudioController.prefab @@ -12,6 +12,7 @@ GameObject: - component: {fileID: 5008637316406135653} - component: {fileID: 5008637316406135659} - component: {fileID: 5008637316406135658} + - component: {fileID: 8370241272374560545} m_Layer: 0 m_Name: AudioController m_TagString: Untagged @@ -178,3 +179,11 @@ AudioLowPassFilter: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 +--- !u!81 &8370241272374560545 +AudioListener: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5008637316406135655} + m_Enabled: 1 diff --git a/Assets/AssetsFORELLE/Prefabs/Frank.prefab b/Assets/AssetsFORELLE/Prefabs/Frank.prefab index b541f1d..d03ea3c 100644 --- a/Assets/AssetsFORELLE/Prefabs/Frank.prefab +++ b/Assets/AssetsFORELLE/Prefabs/Frank.prefab @@ -16,13 +16,10 @@ GameObject: - component: {fileID: 2410396854066836737} - component: {fileID: 8881035903807538774} - component: {fileID: 2410396854066836736} - - component: {fileID: 7766790369216727835} - component: {fileID: 2410396854066836739} - - component: {fileID: 7917930601971724287} - component: {fileID: 8316039429838813759} - component: {fileID: 5185316313602682252} - component: {fileID: 7290952889933214358} - - component: {fileID: 121913343521417838} m_Layer: 0 m_Name: Frank m_TagString: Player @@ -200,21 +197,6 @@ CapsuleCollider2D: m_Offset: {x: -0.15, y: 0} m_Size: {x: 1.64, y: 2.91} m_Direction: 1 ---- !u!114 &7766790369216727835 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2410396854066836738} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: e4ea2b46765b2a94c81f15618d3ea519, type: 3} - m_Name: - m_EditorClassIdentifier: - _LevelManager1: {fileID: 0} - isFalling: 0 - counter: 0 --- !u!114 &2410396854066836739 MonoBehaviour: m_ObjectHideFlags: 0 @@ -227,18 +209,6 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: 4760965f3d035f84db6a6741d746428c, type: 3} m_Name: m_EditorClassIdentifier: ---- !u!114 &7917930601971724287 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2410396854066836738} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 5c8672c5b58eae84da6091aa48615de7, type: 3} - m_Name: - m_EditorClassIdentifier: --- !u!114 &8316039429838813759 MonoBehaviour: m_ObjectHideFlags: 0 @@ -277,18 +247,5 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: e4ea2b46765b2a94c81f15618d3ea519, type: 3} m_Name: m_EditorClassIdentifier: - _LevelManager1: {fileID: 2410396854066836738} isFalling: 0 counter: 0 ---- !u!114 &121913343521417838 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2410396854066836738} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: a821d8b41cb035c44a9a7c0b05ede9c4, type: 3} - m_Name: - m_EditorClassIdentifier: diff --git a/Assets/AssetsFORELLE/Script/BossLevel.meta b/Assets/AssetsFORELLE/Script/BossLevel.meta new file mode 100644 index 0000000..d906382 --- /dev/null +++ b/Assets/AssetsFORELLE/Script/BossLevel.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d757af3b742a9a1498eef5e57f7ccef2 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/AssetsFORELLE/Script/BossLevel/Amboss.cs b/Assets/AssetsFORELLE/Script/BossLevel/Amboss.cs new file mode 100644 index 0000000..bf44d8b --- /dev/null +++ b/Assets/AssetsFORELLE/Script/BossLevel/Amboss.cs @@ -0,0 +1,33 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +public class Amboss : MonoBehaviour +{ + private GameObject anvil; + public bool one; + public bool two; + public bool three; + public bool four; + + + + // Start is called before the first frame update + void Start() + { + anvil = GameObject.Find("ambos"); + } + + // Update is called once per frame + void FixedUpdate() + { + + if(one&&two&&three&&four) + { + anvil.GetComponent().constraints = RigidbodyConstraints2D.None; + } + + } + + +} diff --git a/Assets/AssetsFORELLE/Script/BossLevel/Amboss.cs.meta b/Assets/AssetsFORELLE/Script/BossLevel/Amboss.cs.meta new file mode 100644 index 0000000..f7892a9 --- /dev/null +++ b/Assets/AssetsFORELLE/Script/BossLevel/Amboss.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 2295a2c765238bc4cb91c35b0ec7d6a5 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/AssetsFORELLE/Script/BossLevel/Bang.cs b/Assets/AssetsFORELLE/Script/BossLevel/Bang.cs new file mode 100644 index 0000000..ada399f --- /dev/null +++ b/Assets/AssetsFORELLE/Script/BossLevel/Bang.cs @@ -0,0 +1,44 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +public class Bang : MonoBehaviour +{ + + + + // Start is called before the first frame update + void Start() + { + } + + // Update is called once per frame + void Update() + { + + } + + public IEnumerator Banger(GameObject projectilePrefab,Transform t ,Transform dim, Vector2 shotSpeed, float colliderDisabledSeconds, float shotAliveSeconds) + { + + + // create projectile + GameObject projectile = Instantiate(projectilePrefab, + t.position, + t.rotation); + projectile.transform.SetParent(dim); + + // add force to projectile + projectile.GetComponent().velocity = shotSpeed; + + // wait until enabling collider + yield return new WaitForSeconds(colliderDisabledSeconds); + projectile.GetComponent().enabled = true; + + // wait given time before destroying + yield return new WaitForSeconds(shotAliveSeconds); + + Destroy(projectile); + + } +} diff --git a/Assets/AssetsFORELLE/Script/BossLevel/Bang.cs.meta b/Assets/AssetsFORELLE/Script/BossLevel/Bang.cs.meta new file mode 100644 index 0000000..7717698 --- /dev/null +++ b/Assets/AssetsFORELLE/Script/BossLevel/Bang.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 9a05e7449f649e843b5439906379b81c +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/AssetsFORELLE/Script/BossLevel.cs b/Assets/AssetsFORELLE/Script/BossLevel/BossLevel.cs similarity index 88% rename from Assets/AssetsFORELLE/Script/BossLevel.cs rename to Assets/AssetsFORELLE/Script/BossLevel/BossLevel.cs index d531bdc..e29ad67 100644 --- a/Assets/AssetsFORELLE/Script/BossLevel.cs +++ b/Assets/AssetsFORELLE/Script/BossLevel/BossLevel.cs @@ -6,6 +6,7 @@ public class BossLevel : MonoBehaviour { [SerializeField] private GameObject thepoint; [SerializeField] private Transform[] respawnPoints; + [SerializeField] private EdgeCollider2D[] Platforms; // Start is called before the first frame update diff --git a/Assets/AssetsFORELLE/Script/BossLevel.cs.meta b/Assets/AssetsFORELLE/Script/BossLevel/BossLevel.cs.meta similarity index 100% rename from Assets/AssetsFORELLE/Script/BossLevel.cs.meta rename to Assets/AssetsFORELLE/Script/BossLevel/BossLevel.cs.meta diff --git a/Assets/AssetsFORELLE/Script/BossLevel/DynamicRespawn.cs b/Assets/AssetsFORELLE/Script/BossLevel/DynamicRespawn.cs new file mode 100644 index 0000000..853adfc --- /dev/null +++ b/Assets/AssetsFORELLE/Script/BossLevel/DynamicRespawn.cs @@ -0,0 +1,28 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +public class DynamicRespawn : MonoBehaviour +{ + [SerializeField] private Transform respawn; + // Start is called before the first frame update + void Start() + { + + } + + // Update is called once per frame + void Update() + { + + } + + void OnTriggerEnter2D(Collider2D col) + { + if(CompareTag("Player")) + { + respawn.transform.SetPositionAndRotation(gameObject.transform.position ,Quaternion.identity); + } + } + +} diff --git a/Assets/AssetsFORELLE/Script/BossLevel/DynamicRespawn.cs.meta b/Assets/AssetsFORELLE/Script/BossLevel/DynamicRespawn.cs.meta new file mode 100644 index 0000000..a002c80 --- /dev/null +++ b/Assets/AssetsFORELLE/Script/BossLevel/DynamicRespawn.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: d246e9ee618d841439a0c6ac305009a9 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/AssetsFORELLE/Script/BossLevel/KitchenGunBossMod.cs b/Assets/AssetsFORELLE/Script/BossLevel/KitchenGunBossMod.cs new file mode 100644 index 0000000..278a51d --- /dev/null +++ b/Assets/AssetsFORELLE/Script/BossLevel/KitchenGunBossMod.cs @@ -0,0 +1,52 @@ + using System.Collections; +using UnityEngine; +using UnityEngine.Serialization; + + +/* +WICHTIG +Für dieses Script muss ein Object namens "RespawnProjectile" vorhanden sein an dem man wieder spawnt +Collider Disabled Seconds muss so gesetzt werden das das Projectil aus der Quelle rauskommt ohne zerstört zu werden +*/ + +public class KitchenGunBossMod : MonoBehaviour +{ + + private Bang bullet; + private IEnumerator coroutine; + // The shot projectiles + public GameObject projectilePrefab; + // Time between shots, game needs to be restarted to take effect + public float shotIntervalSeconds = 1f; + // Time alive for the projectiles or until they hit something + public float shotAliveSeconds = 1f; + // Time until collider gets enabled + public float colliderDisabledSeconds = .2f; + // Speed of projectiles + public Vector2 shotSpeed = new Vector2(1f, 0f); + // Smallest step size for shot speed + private short shotSpeedStepSize = 50; + [SerializeField] private bool dim1; + private Transform dim; + + // Start is called before the first frame update + void Start() + { + if(dim1){dim=GameObject.Find("Dim1").transform;} else {dim=GameObject.Find("Dim2").transform;} + bullet = GameObject.Find("DimAll").GetComponent(); + InvokeRepeating("RecurringBang",0f,shotIntervalSeconds); + } + + // Update is called once per frame + void Update() + { + + } + + void RecurringBang() + { + coroutine = bullet.Banger(projectilePrefab, transform, dim, shotSpeed, colliderDisabledSeconds, shotAliveSeconds); + StartCoroutine(coroutine); + } + +} diff --git a/Assets/AssetsFORELLE/Script/BossLevel/KitchenGunBossMod.cs.meta b/Assets/AssetsFORELLE/Script/BossLevel/KitchenGunBossMod.cs.meta new file mode 100644 index 0000000..caf85b6 --- /dev/null +++ b/Assets/AssetsFORELLE/Script/BossLevel/KitchenGunBossMod.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 77d745175c8c7064ea90f3991f53f0e1 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/AssetsFORELLE/Script/BossLevel/PlayerPressurePlateBossMod.cs b/Assets/AssetsFORELLE/Script/BossLevel/PlayerPressurePlateBossMod.cs new file mode 100644 index 0000000..9e135d6 --- /dev/null +++ b/Assets/AssetsFORELLE/Script/BossLevel/PlayerPressurePlateBossMod.cs @@ -0,0 +1,58 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +public class PlayerPressurePlateBossMod: MonoBehaviour +{ + +public SpriteRenderer spriteRenderer; +public Sprite originalSprite; +public Sprite activatedSprite; +public GameObject[] doors; +private Amboss script; +[SerializeField] int num; +private Transform thepoint; + + + // Start is called before the first frame update + void Start() + { + script = GameObject.Find("DimAll").GetComponent(); + thepoint = GameObject.Find("RespawnProjectile").transform; + } + + // Update is called once per frame + void Update() + { + + } + +void OnTriggerEnter2D(Collider2D other) { + spriteRenderer.sprite = activatedSprite; + + foreach (var door in doors) + { + door.SetActive(false); + } + + thepoint.transform.SetPositionAndRotation(gameObject.transform.position + new Vector3(0,1,0),Quaternion.identity); + + switch (num) + { + case 1: script.one = true; + break; + case 2: script.two = true; + break; + case 3: script.three = true; + break; + case 4: script.four = true; + break; + default: break; + } + + Destroy(gameObject.GetComponent()); + +} + + +} diff --git a/Assets/AssetsFORELLE/Script/BossLevel/PlayerPressurePlateBossMod.cs.meta b/Assets/AssetsFORELLE/Script/BossLevel/PlayerPressurePlateBossMod.cs.meta new file mode 100644 index 0000000..588a2c9 --- /dev/null +++ b/Assets/AssetsFORELLE/Script/BossLevel/PlayerPressurePlateBossMod.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 9d3dc8c732803034082446db81dea51a +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/AssetsFORELLE/Script/respawnProjectile.cs b/Assets/AssetsFORELLE/Script/BossLevel/respawnProjectile.cs similarity index 100% rename from Assets/AssetsFORELLE/Script/respawnProjectile.cs rename to Assets/AssetsFORELLE/Script/BossLevel/respawnProjectile.cs diff --git a/Assets/AssetsFORELLE/Script/respawnProjectile.cs.meta b/Assets/AssetsFORELLE/Script/BossLevel/respawnProjectile.cs.meta similarity index 100% rename from Assets/AssetsFORELLE/Script/respawnProjectile.cs.meta rename to Assets/AssetsFORELLE/Script/BossLevel/respawnProjectile.cs.meta diff --git a/Assets/Scenes/ScenesInGame/15EndBoss.unity b/Assets/Scenes/ScenesInGame/15EndBoss.unity index 3cd5582..1b8dbc3 100644 --- a/Assets/Scenes/ScenesInGame/15EndBoss.unity +++ b/Assets/Scenes/ScenesInGame/15EndBoss.unity @@ -788,6 +788,36 @@ Tilemap: m_TileObjectToInstantiateIndex: 65535 dummyAlignment: 0 m_AllTileFlags: 1073741825 + - first: {x: 84, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 2 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 + - first: {x: 85, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 2 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 + - first: {x: 86, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 2 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 - first: {x: 33, y: -13, z: 0} second: serializedVersion: 2 @@ -1138,6 +1168,36 @@ Tilemap: m_TileObjectToInstantiateIndex: 65535 dummyAlignment: 0 m_AllTileFlags: 1073741825 + - first: {x: 84, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 2 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 + - first: {x: 85, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 2 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 + - first: {x: 86, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 2 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 - first: {x: 33, y: -12, z: 0} second: serializedVersion: 2 @@ -1468,6 +1528,36 @@ Tilemap: m_TileObjectToInstantiateIndex: 65535 dummyAlignment: 0 m_AllTileFlags: 1073741825 + - first: {x: 84, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 2 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 + - first: {x: 85, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 2 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 + - first: {x: 86, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 2 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 - first: {x: 33, y: -11, z: 0} second: serializedVersion: 2 @@ -1761,14 +1851,44 @@ Tilemap: - first: {x: 82, y: -11, z: 0} second: serializedVersion: 2 - m_TileIndex: 3 - m_TileSpriteIndex: 3 + m_TileIndex: 5 + m_TileSpriteIndex: 5 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 dummyAlignment: 0 m_AllTileFlags: 1073741825 - first: {x: 83, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 5 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 + - first: {x: 84, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 5 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 + - first: {x: 85, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 5 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 + - first: {x: 86, y: -11, z: 0} second: serializedVersion: 2 m_TileIndex: 3 @@ -1778,11 +1898,41 @@ Tilemap: m_TileObjectToInstantiateIndex: 65535 dummyAlignment: 0 m_AllTileFlags: 1073741825 + - first: {x: 33, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 1 + m_TileSpriteIndex: 1 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 + - first: {x: 34, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 1 + m_TileSpriteIndex: 1 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 + - first: {x: 32, y: -8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 1 + m_TileSpriteIndex: 1 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 - first: {x: 33, y: -8, z: 0} second: serializedVersion: 2 - m_TileIndex: 1 - m_TileSpriteIndex: 1 + m_TileIndex: 5 + m_TileSpriteIndex: 5 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -1791,24 +1941,14 @@ Tilemap: - first: {x: 34, y: -8, z: 0} second: serializedVersion: 2 - m_TileIndex: 1 - m_TileSpriteIndex: 1 + m_TileIndex: 5 + m_TileSpriteIndex: 5 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 dummyAlignment: 0 m_AllTileFlags: 1073741825 - - first: {x: 80, y: -8, z: 0} - second: - serializedVersion: 2 - m_TileIndex: 1 - m_TileSpriteIndex: 1 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_TileObjectToInstantiateIndex: 65535 - dummyAlignment: 0 - m_AllTileFlags: 1073741825 - - first: {x: 81, y: -8, z: 0} + - first: {x: 35, y: -8, z: 0} second: serializedVersion: 2 m_TileIndex: 1 @@ -1848,6 +1988,36 @@ Tilemap: m_TileObjectToInstantiateIndex: 65535 dummyAlignment: 0 m_AllTileFlags: 1073741825 + - first: {x: 62, y: -7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 1 + m_TileSpriteIndex: 1 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 + - first: {x: 63, y: -7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 1 + m_TileSpriteIndex: 1 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 + - first: {x: 64, y: -7, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 1 + m_TileSpriteIndex: 1 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 - first: {x: 68, y: -7, z: 0} second: serializedVersion: 2 @@ -1998,6 +2168,26 @@ Tilemap: m_TileObjectToInstantiateIndex: 65535 dummyAlignment: 0 m_AllTileFlags: 1073741825 + - first: {x: 33, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 1 + m_TileSpriteIndex: 1 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 + - first: {x: 34, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 1 + m_TileSpriteIndex: 1 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 - first: {x: 39, y: -1, z: 0} second: serializedVersion: 2 @@ -2058,7 +2248,7 @@ Tilemap: m_TileObjectToInstantiateIndex: 65535 dummyAlignment: 0 m_AllTileFlags: 1073741825 - - first: {x: 34, y: 0, z: 0} + - first: {x: 80, y: -1, z: 0} second: serializedVersion: 2 m_TileIndex: 1 @@ -2068,6 +2258,46 @@ Tilemap: m_TileObjectToInstantiateIndex: 65535 dummyAlignment: 0 m_AllTileFlags: 1073741825 + - first: {x: 81, y: -1, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 1 + m_TileSpriteIndex: 1 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 + - first: {x: 32, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 1 + m_TileSpriteIndex: 1 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 + - first: {x: 33, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 5 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 + - first: {x: 34, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 5 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 - first: {x: 35, y: 0, z: 0} second: serializedVersion: 2 @@ -2178,36 +2408,6 @@ Tilemap: m_TileObjectToInstantiateIndex: 65535 dummyAlignment: 0 m_AllTileFlags: 1073741825 - - first: {x: 62, y: 0, z: 0} - second: - serializedVersion: 2 - m_TileIndex: 1 - m_TileSpriteIndex: 1 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_TileObjectToInstantiateIndex: 65535 - dummyAlignment: 0 - m_AllTileFlags: 1073741825 - - first: {x: 63, y: 0, z: 0} - second: - serializedVersion: 2 - m_TileIndex: 1 - m_TileSpriteIndex: 1 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_TileObjectToInstantiateIndex: 65535 - dummyAlignment: 0 - m_AllTileFlags: 1073741825 - - first: {x: 64, y: 0, z: 0} - second: - serializedVersion: 2 - m_TileIndex: 1 - m_TileSpriteIndex: 1 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_TileObjectToInstantiateIndex: 65535 - dummyAlignment: 0 - m_AllTileFlags: 1073741825 - first: {x: 71, y: 0, z: 0} second: serializedVersion: 2 @@ -2289,6 +2489,26 @@ Tilemap: dummyAlignment: 0 m_AllTileFlags: 1073741825 - first: {x: 80, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 5 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 + - first: {x: 81, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 5 + m_TileSpriteIndex: 5 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 + - first: {x: 82, y: 0, z: 0} second: serializedVersion: 2 m_TileIndex: 1 @@ -2302,31 +2522,31 @@ Tilemap: m_TileAssetArray: - m_RefCount: 0 m_Data: {fileID: 0} - - m_RefCount: 36 + - m_RefCount: 40 m_Data: {fileID: 11400000, guid: 9218d70dcad5198429454900d824173e, type: 2} - - m_RefCount: 125 + - m_RefCount: 134 m_Data: {fileID: 11400000, guid: 046ff2536fc4bbf4f8b2f954cc403e75, type: 2} - - m_RefCount: 41 + - m_RefCount: 40 m_Data: {fileID: 11400000, guid: cf6d520c5e8c0594aa120f2b65431beb, type: 2} - m_RefCount: 0 m_Data: {fileID: 0} - - m_RefCount: 0 - m_Data: {fileID: 0} + - m_RefCount: 10 + m_Data: {fileID: 11400000, guid: 6bbda3cef862baa4c8a881b440aac1dd, type: 2} m_TileSpriteArray: - m_RefCount: 0 m_Data: {fileID: 0} - - m_RefCount: 36 + - m_RefCount: 40 m_Data: {fileID: -1890797862, guid: eff64c0333047784e9230d6b5fbbcf1b, type: 3} - - m_RefCount: 125 + - m_RefCount: 134 m_Data: {fileID: 1768640593, guid: eff64c0333047784e9230d6b5fbbcf1b, type: 3} - - m_RefCount: 41 + - m_RefCount: 40 m_Data: {fileID: 796255434, guid: eff64c0333047784e9230d6b5fbbcf1b, type: 3} - m_RefCount: 0 m_Data: {fileID: 0} - - m_RefCount: 0 - m_Data: {fileID: 0} + - m_RefCount: 10 + m_Data: {fileID: 124357281, guid: eff64c0333047784e9230d6b5fbbcf1b, type: 3} m_TileMatrixArray: - - m_RefCount: 202 + - m_RefCount: 224 m_Data: e00: 1 e01: 0 @@ -2345,7 +2565,7 @@ Tilemap: e32: 0 e33: 1 m_TileColorArray: - - m_RefCount: 202 + - m_RefCount: 224 m_Data: {r: 1, g: 1, b: 1, a: 1} m_TileObjectToInstantiateArray: [] m_AnimationFrameRate: 1 @@ -2486,6 +2706,7 @@ Transform: - {fileID: 64003044} - {fileID: 1080131091} - {fileID: 530616612} + - {fileID: 476963287} m_Father: {fileID: 0} m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -2514,7 +2735,7 @@ Transform: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 270909022} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0.91999817, y: 17.1027, z: 0.8272373} + m_LocalPosition: {x: -0.91999817, y: 19.61, z: 0.8272373} m_LocalScale: {x: 1, y: 1, z: 1} m_ConstrainProportionsScale: 0 m_Children: [] @@ -2734,7 +2955,7 @@ Transform: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 388725538} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -1.6299973, y: 17.1027, z: 0.8272373} + m_LocalPosition: {x: -1.6299973, y: 19.61, z: 0.8272373} m_LocalScale: {x: 1, y: 1, z: 1} m_ConstrainProportionsScale: 0 m_Children: [] @@ -2766,7 +2987,7 @@ Transform: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 409488378} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -0.22999954, y: 17.1027, z: 0.8272373} + m_LocalPosition: {x: -0.22999954, y: 19.61, z: 0.8272373} m_LocalScale: {x: 1, y: 1, z: 1} m_ConstrainProportionsScale: 0 m_Children: [] @@ -2856,6 +3077,8 @@ Transform: - {fileID: 1518536955} - {fileID: 1183512655} - {fileID: 1601345293} + - {fileID: 1012560158} + - {fileID: 1081071594} m_Father: {fileID: 0} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -2864,6 +3087,162 @@ Transform: m_CorrespondingSourceObject: {fileID: 2410396854066836746, guid: 22badd0525f460b4d988841429f6a07e, type: 3} m_PrefabInstance: {fileID: 1296605844} m_PrefabAsset: {fileID: 0} +--- !u!1 &476963286 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 476963287} + - component: {fileID: 476963288} + m_Layer: 0 + m_Name: blau + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &476963287 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 476963286} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.027759552, y: 3.611187, z: 0.8272373} + m_LocalScale: {x: 7.097649, y: 3.8127801, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 256736155} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &476963288 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 476963286} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: a97c105638bdf8b4a8650670310a4cd3, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: -41 + m_Sprite: {fileID: 21300000, guid: f6fbaa39328e1bc44a6c866d0cb02304, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 10, y: 7.5} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &488617218 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 488617219} + - component: {fileID: 488617221} + - component: {fileID: 488617220} + m_Layer: 0 + m_Name: Spawnzone + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &488617219 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 488617218} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: -1.46, y: 5.89, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1353915050} + m_RootOrder: 6 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &488617220 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 488617218} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d246e9ee618d841439a0c6ac305009a9, type: 3} + m_Name: + m_EditorClassIdentifier: + respawn: {fileID: 964875058} +--- !u!61 &488617221 +BoxCollider2D: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 488617218} + m_Enabled: 1 + m_Density: 1 + m_Material: {fileID: 0} + m_IsTrigger: 1 + m_UsedByEffector: 0 + m_UsedByComposite: 0 + m_Offset: {x: 0, y: 0} + m_SpriteTilingProperty: + border: {x: 0, y: 0, z: 0, w: 0} + pivot: {x: 0, y: 0} + oldSize: {x: 0, y: 0} + newSize: {x: 0, y: 0} + adaptiveTilingThreshold: 0 + drawMode: 0 + adaptiveTiling: 0 + m_AutoTiling: 0 + serializedVersion: 2 + m_Size: {x: 4.26, y: 1} + m_EdgeRadius: 0 --- !u!4 &490589731 stripped Transform: m_CorrespondingSourceObject: {fileID: 5008637316406135652, guid: aaa21b2eb457ac74b9e319793b401dc6, type: 3} @@ -2923,11 +3302,15 @@ PrefabInstance: - target: {fileID: 5008637316406135653, guid: aaa21b2eb457ac74b9e319793b401dc6, type: 3} propertyPath: m_audioClip value: - objectReference: {fileID: 8300000, guid: b3b08f507b10d8d4585f68ab9773e68d, type: 3} + objectReference: {fileID: 8300000, guid: 7438b87aa6d351943b4152592596a04a, type: 3} - target: {fileID: 5008637316406135655, guid: aaa21b2eb457ac74b9e319793b401dc6, type: 3} propertyPath: m_Name value: AudioController objectReference: {fileID: 0} + - target: {fileID: 5008637316406135658, guid: aaa21b2eb457ac74b9e319793b401dc6, type: 3} + propertyPath: lowpassLevelCustomCurve.m_Curve.Array.data[0].value + value: 0.11323329 + objectReference: {fileID: 0} m_RemovedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: aaa21b2eb457ac74b9e319793b401dc6, type: 3} --- !u!1 &530616611 @@ -3193,6 +3576,77 @@ Tilemap: e31: 0 e32: 0 e33: 1 +--- !u!1 &719471341 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 719471342} + - component: {fileID: 719471344} + - component: {fileID: 719471343} + m_Layer: 0 + m_Name: Deathzone + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &719471342 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 719471341} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: -0.14, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1353915050} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &719471343 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 719471341} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c0a49909080c12c489367e37b06e7169, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!61 &719471344 +BoxCollider2D: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 719471341} + m_Enabled: 1 + m_Density: 1 + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_UsedByEffector: 0 + m_UsedByComposite: 0 + m_Offset: {x: -1.64, y: -6.84} + m_SpriteTilingProperty: + border: {x: 0, y: 0, z: 0, w: 0} + pivot: {x: 0, y: 0} + oldSize: {x: 0, y: 0} + newSize: {x: 0, y: 0} + adaptiveTilingThreshold: 0 + drawMode: 0 + adaptiveTiling: 0 + m_AutoTiling: 0 + serializedVersion: 2 + m_Size: {x: 31.01, y: 1} + m_EdgeRadius: 0 --- !u!1 &880984856 GameObject: m_ObjectHideFlags: 0 @@ -3206,6 +3660,7 @@ GameObject: - component: {fileID: 880984860} - component: {fileID: 880984859} - component: {fileID: 880984858} + - component: {fileID: 880984862} m_Layer: 0 m_Name: Laser Lachs 1_0 (3) m_TagString: Untagged @@ -3221,7 +3676,7 @@ Transform: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 880984856} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 22.119999, y: -2.06, z: 0.82723737} + m_LocalPosition: {x: 26.05, y: -4.92, z: 0.82723737} m_LocalScale: {x: 1.63, y: 1.63, z: 1.63} m_ConstrainProportionsScale: 1 m_Children: [] @@ -3242,7 +3697,7 @@ MonoBehaviour: m_EditorClassIdentifier: projectilePrefab: {fileID: 3428666236834465257, guid: 43403bc203c88a14d8cac1157caa794d, type: 3} shotIntervalSeconds: 1.5 - shotAliveSeconds: 5 + shotAliveSeconds: 7 colliderDisabledSeconds: 0.5 shotSpeed: {x: -3, y: 1.5} dim1: 0 @@ -3345,6 +3800,18 @@ SpriteRenderer: m_WasSpriteAssigned: 1 m_MaskInteraction: 0 m_SpriteSortPoint: 0 +--- !u!114 &880984862 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 880984856} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c0a49909080c12c489367e37b06e7169, type: 3} + m_Name: + m_EditorClassIdentifier: --- !u!1001 &897509567 PrefabInstance: m_ObjectHideFlags: 0 @@ -3412,7 +3879,8 @@ PrefabInstance: propertyPath: activatedSprite value: objectReference: {fileID: 21300000, guid: 8f607eb1bf28eed45ba8000033c8508f, type: 3} - m_RemovedComponents: [] + m_RemovedComponents: + - {fileID: 1940356979551777550, guid: 2bffd5594aa1c224ba146958892fc23f, type: 3} m_SourcePrefab: {fileID: 100100000, guid: 2bffd5594aa1c224ba146958892fc23f, type: 3} --- !u!1 &923640567 GameObject: @@ -3427,6 +3895,7 @@ GameObject: - component: {fileID: 923640570} - component: {fileID: 923640569} - component: {fileID: 923640568} + - component: {fileID: 923640573} m_Layer: 0 m_Name: Laser Lachs 1_0 m_TagString: Untagged @@ -3559,13 +4028,25 @@ Transform: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 923640567} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 21.185642, y: 5.969587, z: 0.82723737} + m_LocalPosition: {x: 22.06, y: 5.969587, z: 0.82723737} m_LocalScale: {x: 1.63, y: 1.63, z: 1.63} m_ConstrainProportionsScale: 1 m_Children: [] m_Father: {fileID: 1601345293} m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &923640573 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 923640567} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c0a49909080c12c489367e37b06e7169, type: 3} + m_Name: + m_EditorClassIdentifier: --- !u!1 &945915739 stripped GameObject: m_CorrespondingSourceObject: {fileID: 2815367762385643467, guid: 560b69619ffa27c42ac31fb4d91b1c81, type: 3} @@ -3651,6 +4132,11 @@ Transform: m_Father: {fileID: 1353915050} m_RootOrder: 4 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &1012560158 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 2931262115788872107, guid: a72839b3ed4bd20458a1b530b3f3d5bc, type: 3} + m_PrefabInstance: {fileID: 1085940648} + m_PrefabAsset: {fileID: 0} --- !u!1 &1034689421 GameObject: m_ObjectHideFlags: 0 @@ -3728,7 +4214,7 @@ Transform: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1034689421} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -2.41436, y: 17.102488, z: 0.8272373} + m_LocalPosition: {x: -2.41436, y: 19.609789, z: 0.8272373} m_LocalScale: {x: 1, y: 1, z: 1} m_ConstrainProportionsScale: 0 m_Children: [] @@ -3770,6 +4256,241 @@ Transform: m_Father: {fileID: 256736155} m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1081071592 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1081071594} + - component: {fileID: 1081071593} + m_Layer: 0 + m_Name: Hintergrundgletscher_anders + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!212 &1081071593 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1081071592} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: a97c105638bdf8b4a8650670310a4cd3, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: -38 + m_Sprite: {fileID: 21300000, guid: 3cfa4d33a09a928448f4d9acdc915323, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 2 + m_Size: {x: 77.570724, y: 9.6} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!4 &1081071594 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1081071592} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -6.9899597, y: 1.547487, z: 0.8272373} + m_LocalScale: {x: 1, y: 1.5352777, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 433663535} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &1085940648 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 433663535} + m_Modifications: + - target: {fileID: 2931262115788872085, guid: a72839b3ed4bd20458a1b530b3f3d5bc, type: 3} + propertyPath: m_Name + value: boulder + objectReference: {fileID: 0} + - target: {fileID: 2931262115788872107, guid: a72839b3ed4bd20458a1b530b3f3d5bc, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 2931262115788872107, guid: a72839b3ed4bd20458a1b530b3f3d5bc, type: 3} + propertyPath: m_LocalPosition.x + value: 10.70808 + objectReference: {fileID: 0} + - target: {fileID: 2931262115788872107, guid: a72839b3ed4bd20458a1b530b3f3d5bc, type: 3} + propertyPath: m_LocalPosition.y + value: -0.9060707 + objectReference: {fileID: 0} + - target: {fileID: 2931262115788872107, guid: a72839b3ed4bd20458a1b530b3f3d5bc, type: 3} + propertyPath: m_LocalPosition.z + value: 0.93917775 + objectReference: {fileID: 0} + - target: {fileID: 2931262115788872107, guid: a72839b3ed4bd20458a1b530b3f3d5bc, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2931262115788872107, guid: a72839b3ed4bd20458a1b530b3f3d5bc, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 2931262115788872107, guid: a72839b3ed4bd20458a1b530b3f3d5bc, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 2931262115788872107, guid: a72839b3ed4bd20458a1b530b3f3d5bc, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 2931262115788872107, guid: a72839b3ed4bd20458a1b530b3f3d5bc, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2931262115788872107, guid: a72839b3ed4bd20458a1b530b3f3d5bc, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2931262115788872107, guid: a72839b3ed4bd20458a1b530b3f3d5bc, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: a72839b3ed4bd20458a1b530b3f3d5bc, type: 3} +--- !u!1 &1097386570 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 1940356979551777536, guid: 2bffd5594aa1c224ba146958892fc23f, type: 3} + m_PrefabInstance: {fileID: 1769778727} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1168158565 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1168158566} + - component: {fileID: 1168158567} + m_Layer: 0 + m_Name: Background_mountain_row + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1168158566 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1168158565} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.055259705, y: -3.310413, z: 0.8272373} + m_LocalScale: {x: 0.23999998, y: 0.24, z: 0.24} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 1353915050} + m_RootOrder: 7 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &1168158567 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1168158565} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: a97c105638bdf8b4a8650670310a4cd3, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: -5 + m_Sprite: {fileID: 21300000, guid: fd65e184d8d18ce40913b088752db2b2, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 2 + m_Size: {x: 296.2666, y: 33.5} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &1180647981 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 1940356979551777536, guid: 2bffd5594aa1c224ba146958892fc23f, type: 3} + m_PrefabInstance: {fileID: 1364784961} + m_PrefabAsset: {fileID: 0} --- !u!1 &1183512654 GameObject: m_ObjectHideFlags: 0 @@ -3815,16 +4536,24 @@ PrefabInstance: m_Modifications: - target: {fileID: 2410396854066836736, guid: 22badd0525f460b4d988841429f6a07e, type: 3} propertyPath: m_Size.x - value: 2.02 + value: 1.88 objectReference: {fileID: 0} - target: {fileID: 2410396854066836736, guid: 22badd0525f460b4d988841429f6a07e, type: 3} propertyPath: m_Size.y - value: 2.48 + value: 2.57 objectReference: {fileID: 0} - target: {fileID: 2410396854066836736, guid: 22badd0525f460b4d988841429f6a07e, type: 3} propertyPath: m_Offset.x value: -0.11 objectReference: {fileID: 0} + - target: {fileID: 2410396854066836736, guid: 22badd0525f460b4d988841429f6a07e, type: 3} + propertyPath: m_Offset.y + value: -0.16 + objectReference: {fileID: 0} + - target: {fileID: 2410396854066836736, guid: 22badd0525f460b4d988841429f6a07e, type: 3} + propertyPath: m_Direction + value: 0 + objectReference: {fileID: 0} - target: {fileID: 2410396854066836738, guid: 22badd0525f460b4d988841429f6a07e, type: 3} propertyPath: m_Name value: Frank @@ -3833,6 +4562,10 @@ PrefabInstance: propertyPath: mainCamera value: objectReference: {fileID: 0} + - target: {fileID: 2410396854066836742, guid: 22badd0525f460b4d988841429f6a07e, type: 3} + propertyPath: m_Mass + value: 0.5758417 + objectReference: {fileID: 0} - target: {fileID: 2410396854066836743, guid: 22badd0525f460b4d988841429f6a07e, type: 3} propertyPath: m_Size.x value: 1.81 @@ -3885,6 +4618,10 @@ PrefabInstance: propertyPath: m_Enabled value: 1 objectReference: {fileID: 0} + - target: {fileID: 8316039429838813759, guid: 22badd0525f460b4d988841429f6a07e, type: 3} + propertyPath: inFirstDim + value: 0 + objectReference: {fileID: 0} m_RemovedComponents: - {fileID: 7766790369216727835, guid: 22badd0525f460b4d988841429f6a07e, type: 3} m_SourcePrefab: {fileID: 100100000, guid: 22badd0525f460b4d988841429f6a07e, type: 3} @@ -3899,6 +4636,8 @@ GameObject: - component: {fileID: 1297446908} - component: {fileID: 1297446907} - component: {fileID: 1297446909} + - component: {fileID: 1297446911} + - component: {fileID: 1297446910} m_Layer: 0 m_Name: ambos m_TagString: Untagged @@ -3966,7 +4705,7 @@ Transform: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1297446906} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -1.6100006, y: 2.3099995, z: 0.8272373} + m_LocalPosition: {x: -1.6100006, y: 4.817301, z: 0.8272373} m_LocalScale: {x: 1.8854, y: 1.7589, z: 1} m_ConstrainProportionsScale: 0 m_Children: [] @@ -3982,7 +4721,7 @@ Rigidbody2D: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1297446906} m_BodyType: 0 - m_Simulated: 0 + m_Simulated: 1 m_UseFullKinematicContacts: 0 m_UseAutoMass: 0 m_Mass: 1 @@ -3993,7 +4732,49 @@ Rigidbody2D: m_Interpolate: 0 m_SleepingMode: 1 m_CollisionDetection: 0 - m_Constraints: 0 + m_Constraints: 7 +--- !u!114 &1297446910 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1297446906} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2295a2c765238bc4cb91c35b0ec7d6a5, type: 3} + m_Name: + m_EditorClassIdentifier: + one: 0 + two: 0 + three: 0 + four: 0 +--- !u!61 &1297446911 +BoxCollider2D: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1297446906} + m_Enabled: 1 + m_Density: 1 + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_UsedByEffector: 0 + m_UsedByComposite: 0 + m_Offset: {x: 0, y: -0.32} + m_SpriteTilingProperty: + border: {x: 0, y: 0, z: 0, w: 0} + pivot: {x: 0.5, y: 0.5} + oldSize: {x: 2, y: 2} + newSize: {x: 2, y: 2} + adaptiveTilingThreshold: 0.5 + drawMode: 0 + adaptiveTiling: 0 + m_AutoTiling: 0 + serializedVersion: 2 + m_Size: {x: 2, y: 1.2} + m_EdgeRadius: 0 --- !u!4 &1314826742 stripped Transform: m_CorrespondingSourceObject: {fileID: 1940356979551777538, guid: 2bffd5594aa1c224ba146958892fc23f, type: 3} @@ -4008,6 +4789,8 @@ GameObject: serializedVersion: 6 m_Component: - component: {fileID: 1353915050} + - component: {fileID: 1353915051} + - component: {fileID: 1353915052} m_Layer: 0 m_Name: DimAll m_TagString: Untagged @@ -4032,9 +4815,40 @@ Transform: - {fileID: 1768774018} - {fileID: 945915745} - {fileID: 964875058} + - {fileID: 719471342} + - {fileID: 488617219} + - {fileID: 1168158566} m_Father: {fileID: 0} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1353915051 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1353915049} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2295a2c765238bc4cb91c35b0ec7d6a5, type: 3} + m_Name: + m_EditorClassIdentifier: + one: 0 + two: 0 + three: 0 + four: 0 +--- !u!114 &1353915052 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1353915049} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9a05e7449f649e843b5439906379b81c, type: 3} + m_Name: + m_EditorClassIdentifier: --- !u!1001 &1355291641 PrefabInstance: m_ObjectHideFlags: 0 @@ -4048,7 +4862,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 2815367761964512235, guid: 560b69619ffa27c42ac31fb4d91b1c81, type: 3} propertyPath: m_LocalPosition.x - value: -8.86 + value: -6.57 objectReference: {fileID: 0} - target: {fileID: 2815367761964512235, guid: 560b69619ffa27c42ac31fb4d91b1c81, type: 3} propertyPath: m_LocalPosition.y @@ -4179,6 +4993,10 @@ PrefabInstance: propertyPath: m_Sprite value: objectReference: {fileID: 21300000, guid: 1eb6008cad69d4639ab352ac19041ef2, type: 3} + - target: {fileID: 1940356979551777550, guid: 2bffd5594aa1c224ba146958892fc23f, type: 3} + propertyPath: m_Enabled + value: 0 + objectReference: {fileID: 0} - target: {fileID: 1940356979551777550, guid: 2bffd5594aa1c224ba146958892fc23f, type: 3} propertyPath: originalSprite value: @@ -4187,13 +5005,38 @@ PrefabInstance: propertyPath: activatedSprite value: objectReference: {fileID: 21300000, guid: 8f607eb1bf28eed45ba8000033c8508f, type: 3} - m_RemovedComponents: [] + m_RemovedComponents: + - {fileID: 1940356979551777550, guid: 2bffd5594aa1c224ba146958892fc23f, type: 3} m_SourcePrefab: {fileID: 100100000, guid: 2bffd5594aa1c224ba146958892fc23f, type: 3} --- !u!4 &1479196033 stripped Transform: m_CorrespondingSourceObject: {fileID: 1940356979551777538, guid: 2bffd5594aa1c224ba146958892fc23f, type: 3} m_PrefabInstance: {fileID: 1364784961} m_PrefabAsset: {fileID: 0} +--- !u!212 &1479196037 stripped +SpriteRenderer: + m_CorrespondingSourceObject: {fileID: 1940356979551777539, guid: 2bffd5594aa1c224ba146958892fc23f, type: 3} + m_PrefabInstance: {fileID: 1364784961} + m_PrefabAsset: {fileID: 0} +--- !u!114 &1479196038 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1180647981} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9d3dc8c732803034082446db81dea51a, type: 3} + m_Name: + m_EditorClassIdentifier: + spriteRenderer: {fileID: 1479196037} + originalSprite: {fileID: 21300000, guid: 27fbbaf3fede55b49b5cdba0f3a00763, type: 3} + activatedSprite: {fileID: 21300000, guid: 8f607eb1bf28eed45ba8000033c8508f, type: 3} + doors: + - {fileID: 2007827125} + - {fileID: 1034689421} + num: 1 --- !u!1 &1518536954 GameObject: m_ObjectHideFlags: 0 @@ -4291,6 +5134,7 @@ GameObject: - component: {fileID: 1613648593} - component: {fileID: 1613648592} - component: {fileID: 1613648591} + - component: {fileID: 1613648595} m_Layer: 0 m_Name: Laser Lachs 1_0 (1) m_TagString: Untagged @@ -4306,7 +5150,7 @@ Transform: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1613648589} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -23.86436, y: 5.9895864, z: 0.82723737} + m_LocalPosition: {x: -24.65, y: 5.9895864, z: 0.82723737} m_LocalScale: {x: 1.63, y: 1.63, z: 1.63} m_ConstrainProportionsScale: 1 m_Children: [] @@ -4430,6 +5274,18 @@ SpriteRenderer: m_WasSpriteAssigned: 1 m_MaskInteraction: 0 m_SpriteSortPoint: 0 +--- !u!114 &1613648595 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1613648589} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c0a49909080c12c489367e37b06e7169, type: 3} + m_Name: + m_EditorClassIdentifier: --- !u!1 &1618085062 GameObject: m_ObjectHideFlags: 0 @@ -4443,6 +5299,7 @@ GameObject: - component: {fileID: 1618085066} - component: {fileID: 1618085065} - component: {fileID: 1618085064} + - component: {fileID: 1618085068} m_Layer: 0 m_Name: Laser Lachs 1_0 (4) m_TagString: Untagged @@ -4458,7 +5315,7 @@ Transform: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1618085062} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 22.119999, y: -4.94, z: 0.82723737} + m_LocalPosition: {x: 23.95, y: -4.94, z: 0.82723737} m_LocalScale: {x: 1.63, y: 1.63, z: 1.63} m_ConstrainProportionsScale: 1 m_Children: [] @@ -4478,7 +5335,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: projectilePrefab: {fileID: 3428666236834465257, guid: 43403bc203c88a14d8cac1157caa794d, type: 3} - shotIntervalSeconds: 1.5 + shotIntervalSeconds: 0.2 shotAliveSeconds: 4 colliderDisabledSeconds: 0.5 shotSpeed: {x: -3, y: 0} @@ -4582,6 +5439,23 @@ SpriteRenderer: m_WasSpriteAssigned: 1 m_MaskInteraction: 0 m_SpriteSortPoint: 0 +--- !u!114 &1618085068 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1618085062} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c0a49909080c12c489367e37b06e7169, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &1637657706 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 1940356979551777536, guid: 2bffd5594aa1c224ba146958892fc23f, type: 3} + m_PrefabInstance: {fileID: 1701892607} + m_PrefabAsset: {fileID: 0} --- !u!1001 &1701892607 PrefabInstance: m_ObjectHideFlags: 0 @@ -4649,7 +5523,8 @@ PrefabInstance: propertyPath: activatedSprite value: objectReference: {fileID: 21300000, guid: 8f607eb1bf28eed45ba8000033c8508f, type: 3} - m_RemovedComponents: [] + m_RemovedComponents: + - {fileID: 1940356979551777550, guid: 2bffd5594aa1c224ba146958892fc23f, type: 3} m_SourcePrefab: {fileID: 100100000, guid: 2bffd5594aa1c224ba146958892fc23f, type: 3} --- !u!1 &1738911014 GameObject: @@ -4721,7 +5596,7 @@ TilemapRenderer: m_RenderingLayerMask: 1 m_RendererPriority: 0 m_Materials: - - {fileID: 2100000, guid: 5b582ec754e32174c82c451a4558fb9b, type: 2} + - {fileID: 2100000, guid: fe97b780930ac9948b8b6e4f51a2992d, type: 2} m_StaticBatchInfo: firstSubMesh: 0 subMeshCount: 0 @@ -5269,6 +6144,36 @@ Tilemap: m_TileObjectToInstantiateIndex: 65535 dummyAlignment: 0 m_AllTileFlags: 1073741825 + - first: {x: 84, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 4 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 + - first: {x: 85, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 4 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 + - first: {x: 86, y: -14, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 4 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 - first: {x: 33, y: -13, z: 0} second: serializedVersion: 2 @@ -5389,6 +6294,86 @@ Tilemap: m_TileObjectToInstantiateIndex: 65535 dummyAlignment: 0 m_AllTileFlags: 1073741825 + - first: {x: 45, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 4 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 + - first: {x: 46, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 4 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 + - first: {x: 47, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 4 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 + - first: {x: 48, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 4 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 + - first: {x: 65, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 4 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 + - first: {x: 66, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 4 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 + - first: {x: 67, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 4 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 + - first: {x: 68, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 4 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 - first: {x: 69, y: -13, z: 0} second: serializedVersion: 2 @@ -5539,6 +6524,36 @@ Tilemap: m_TileObjectToInstantiateIndex: 65535 dummyAlignment: 0 m_AllTileFlags: 1073741825 + - first: {x: 84, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 4 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 + - first: {x: 85, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 4 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 + - first: {x: 86, y: -13, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 4 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 - first: {x: 33, y: -12, z: 0} second: serializedVersion: 2 @@ -5649,6 +6664,86 @@ Tilemap: m_TileObjectToInstantiateIndex: 65535 dummyAlignment: 0 m_AllTileFlags: 1073741825 + - first: {x: 44, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 4 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 + - first: {x: 45, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 4 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 + - first: {x: 46, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 4 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 + - first: {x: 47, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 4 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 + - first: {x: 66, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 4 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 + - first: {x: 67, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 4 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 + - first: {x: 68, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 4 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 + - first: {x: 69, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 4 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 - first: {x: 70, y: -12, z: 0} second: serializedVersion: 2 @@ -5789,6 +6884,36 @@ Tilemap: m_TileObjectToInstantiateIndex: 65535 dummyAlignment: 0 m_AllTileFlags: 1073741825 + - first: {x: 84, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 4 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 + - first: {x: 85, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 4 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 + - first: {x: 86, y: -12, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 4 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 - first: {x: 33, y: -11, z: 0} second: serializedVersion: 2 @@ -5879,11 +7004,91 @@ Tilemap: m_TileObjectToInstantiateIndex: 65535 dummyAlignment: 0 m_AllTileFlags: 1073741825 + - first: {x: 43, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 3 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 + - first: {x: 44, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 3 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 + - first: {x: 45, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 3 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 + - first: {x: 46, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 3 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 + - first: {x: 67, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 3 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 + - first: {x: 68, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 3 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 + - first: {x: 69, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 3 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 + - first: {x: 70, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 3 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 - first: {x: 71, y: -11, z: 0} second: serializedVersion: 2 - m_TileIndex: 1 - m_TileSpriteIndex: 1 + m_TileIndex: 3 + m_TileSpriteIndex: 3 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5892,8 +7097,8 @@ Tilemap: - first: {x: 72, y: -11, z: 0} second: serializedVersion: 2 - m_TileIndex: 1 - m_TileSpriteIndex: 1 + m_TileIndex: 3 + m_TileSpriteIndex: 3 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5902,8 +7107,8 @@ Tilemap: - first: {x: 73, y: -11, z: 0} second: serializedVersion: 2 - m_TileIndex: 1 - m_TileSpriteIndex: 1 + m_TileIndex: 3 + m_TileSpriteIndex: 3 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5912,8 +7117,8 @@ Tilemap: - first: {x: 74, y: -11, z: 0} second: serializedVersion: 2 - m_TileIndex: 1 - m_TileSpriteIndex: 1 + m_TileIndex: 3 + m_TileSpriteIndex: 3 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5922,8 +7127,8 @@ Tilemap: - first: {x: 75, y: -11, z: 0} second: serializedVersion: 2 - m_TileIndex: 1 - m_TileSpriteIndex: 1 + m_TileIndex: 3 + m_TileSpriteIndex: 3 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5932,8 +7137,8 @@ Tilemap: - first: {x: 76, y: -11, z: 0} second: serializedVersion: 2 - m_TileIndex: 1 - m_TileSpriteIndex: 1 + m_TileIndex: 3 + m_TileSpriteIndex: 3 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -5942,8 +7147,8 @@ Tilemap: - first: {x: 77, y: -11, z: 0} second: serializedVersion: 2 - m_TileIndex: 1 - m_TileSpriteIndex: 1 + m_TileIndex: 3 + m_TileSpriteIndex: 3 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_TileObjectToInstantiateIndex: 65535 @@ -6009,6 +7214,56 @@ Tilemap: m_TileObjectToInstantiateIndex: 65535 dummyAlignment: 0 m_AllTileFlags: 1073741825 + - first: {x: 84, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 3 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 + - first: {x: 85, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 3 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 + - first: {x: 86, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 3 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 + - first: {x: 77, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 4 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 + - first: {x: 79, y: -10, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 4 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 - first: {x: 40, y: -9, z: 0} second: serializedVersion: 2 @@ -6069,6 +7324,46 @@ Tilemap: m_TileObjectToInstantiateIndex: 65535 dummyAlignment: 0 m_AllTileFlags: 1073741825 + - first: {x: 77, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 4 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 + - first: {x: 79, y: -9, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 4 + m_TileSpriteIndex: 4 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 + - first: {x: 77, y: -8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 3 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 + - first: {x: 79, y: -8, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 3 + m_TileSpriteIndex: 3 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 - first: {x: 38, y: -6, z: 0} second: serializedVersion: 2 @@ -6259,6 +7554,36 @@ Tilemap: m_TileObjectToInstantiateIndex: 65535 dummyAlignment: 0 m_AllTileFlags: 1073741825 + - first: {x: 56, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 2 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 + - first: {x: 57, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 2 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 + - first: {x: 58, y: 0, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 2 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 - first: {x: 71, y: 0, z: 0} second: serializedVersion: 2 @@ -6319,65 +7644,35 @@ Tilemap: m_TileObjectToInstantiateIndex: 65535 dummyAlignment: 0 m_AllTileFlags: 1073741825 - - first: {x: 56, y: 1, z: 0} - second: - serializedVersion: 2 - m_TileIndex: 2 - m_TileSpriteIndex: 2 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_TileObjectToInstantiateIndex: 65535 - dummyAlignment: 0 - m_AllTileFlags: 1073741825 - - first: {x: 57, y: 1, z: 0} - second: - serializedVersion: 2 - m_TileIndex: 2 - m_TileSpriteIndex: 2 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_TileObjectToInstantiateIndex: 65535 - dummyAlignment: 0 - m_AllTileFlags: 1073741825 - - first: {x: 58, y: 1, z: 0} - second: - serializedVersion: 2 - m_TileIndex: 2 - m_TileSpriteIndex: 2 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_TileObjectToInstantiateIndex: 65535 - dummyAlignment: 0 - m_AllTileFlags: 1073741825 m_AnimatedTiles: {} m_TileAssetArray: - m_RefCount: 48 m_Data: {fileID: 11400000, guid: 15fde7a57a2625045ad0e1205ab6bc03, type: 2} - - m_RefCount: 22 + - m_RefCount: 15 m_Data: {fileID: 11400000, guid: 92ae8533e6d106b47a1aacc33c40317c, type: 2} - m_RefCount: 19 m_Data: {fileID: 11400000, guid: 794f413f307db874dba6f17d5672997d, type: 2} - - m_RefCount: 9 + - m_RefCount: 29 m_Data: {fileID: 11400000, guid: dbc2272ac330651448f6eef2843017dc, type: 2} - - m_RefCount: 61 + - m_RefCount: 90 m_Data: {fileID: 11400000, guid: 8d4b8973dba9a474c80fa2d34638d3a5, type: 2} - m_RefCount: 0 m_Data: {fileID: 0} m_TileSpriteArray: - m_RefCount: 48 m_Data: {fileID: 1920180403, guid: 45efae2189e416f4b9b78c0a9569ac0f, type: 3} - - m_RefCount: 22 + - m_RefCount: 15 m_Data: {fileID: -1225805465, guid: 45efae2189e416f4b9b78c0a9569ac0f, type: 3} - m_RefCount: 19 m_Data: {fileID: 145424651, guid: eff64c0333047784e9230d6b5fbbcf1b, type: 3} - - m_RefCount: 9 + - m_RefCount: 29 m_Data: {fileID: -840379371, guid: eff64c0333047784e9230d6b5fbbcf1b, type: 3} - - m_RefCount: 61 + - m_RefCount: 90 m_Data: {fileID: 529542140, guid: eff64c0333047784e9230d6b5fbbcf1b, type: 3} - m_RefCount: 0 m_Data: {fileID: 0} m_TileMatrixArray: - - m_RefCount: 159 + - m_RefCount: 201 m_Data: e00: 1 e01: 0 @@ -6396,7 +7691,7 @@ Tilemap: e32: 0 e33: 1 m_TileColorArray: - - m_RefCount: 159 + - m_RefCount: 201 m_Data: {r: 1, g: 1, b: 1, a: 1} m_TileObjectToInstantiateArray: [] m_AnimationFrameRate: 1 @@ -6427,6 +7722,30 @@ Transform: m_CorrespondingSourceObject: {fileID: 1940356979551777538, guid: 2bffd5594aa1c224ba146958892fc23f, type: 3} m_PrefabInstance: {fileID: 1769778727} m_PrefabAsset: {fileID: 0} +--- !u!212 &1740350669 stripped +SpriteRenderer: + m_CorrespondingSourceObject: {fileID: 1940356979551777539, guid: 2bffd5594aa1c224ba146958892fc23f, type: 3} + m_PrefabInstance: {fileID: 1769778727} + m_PrefabAsset: {fileID: 0} +--- !u!114 &1740350670 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1097386570} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9d3dc8c732803034082446db81dea51a, type: 3} + m_Name: + m_EditorClassIdentifier: + spriteRenderer: {fileID: 1740350669} + originalSprite: {fileID: 21300000, guid: 27fbbaf3fede55b49b5cdba0f3a00763, type: 3} + activatedSprite: {fileID: 21300000, guid: 8f607eb1bf28eed45ba8000033c8508f, type: 3} + doors: + - {fileID: 605805524} + - {fileID: 409488378} + num: 4 --- !u!1 &1768774014 stripped GameObject: m_CorrespondingSourceObject: {fileID: 2815367762385643467, guid: 560b69619ffa27c42ac31fb4d91b1c81, type: 3} @@ -6548,7 +7867,8 @@ PrefabInstance: propertyPath: activatedSprite value: objectReference: {fileID: 21300000, guid: 8f607eb1bf28eed45ba8000033c8508f, type: 3} - m_RemovedComponents: [] + m_RemovedComponents: + - {fileID: 1940356979551777550, guid: 2bffd5594aa1c224ba146958892fc23f, type: 3} m_SourcePrefab: {fileID: 100100000, guid: 2bffd5594aa1c224ba146958892fc23f, type: 3} --- !u!1001 &1803770587 PrefabInstance: @@ -6563,7 +7883,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 2815367761964512235, guid: 560b69619ffa27c42ac31fb4d91b1c81, type: 3} propertyPath: m_LocalPosition.x - value: -10.67 + value: -12.93 objectReference: {fileID: 0} - target: {fileID: 2815367761964512235, guid: 560b69619ffa27c42ac31fb4d91b1c81, type: 3} propertyPath: m_LocalPosition.y @@ -6627,6 +7947,35 @@ PrefabInstance: objectReference: {fileID: 0} m_RemovedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 560b69619ffa27c42ac31fb4d91b1c81, type: 3} +--- !u!1 &1857099564 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 1940356979551777536, guid: 2bffd5594aa1c224ba146958892fc23f, type: 3} + m_PrefabInstance: {fileID: 897509567} + m_PrefabAsset: {fileID: 0} +--- !u!212 &1857099568 stripped +SpriteRenderer: + m_CorrespondingSourceObject: {fileID: 1940356979551777539, guid: 2bffd5594aa1c224ba146958892fc23f, type: 3} + m_PrefabInstance: {fileID: 897509567} + m_PrefabAsset: {fileID: 0} +--- !u!114 &1857099569 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1857099564} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9d3dc8c732803034082446db81dea51a, type: 3} + m_Name: + m_EditorClassIdentifier: + spriteRenderer: {fileID: 1857099568} + originalSprite: {fileID: 21300000, guid: 27fbbaf3fede55b49b5cdba0f3a00763, type: 3} + activatedSprite: {fileID: 21300000, guid: 8f607eb1bf28eed45ba8000033c8508f, type: 3} + doors: + - {fileID: 212308942} + - {fileID: 270909022} + num: 3 --- !u!1 &1895004588 GameObject: m_ObjectHideFlags: 0 @@ -6700,7 +8049,7 @@ TilemapRenderer: m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 m_SortingLayer: 0 - m_SortingOrder: 0 + m_SortingOrder: 6 m_ChunkSize: {x: 32, y: 32, z: 32} m_ChunkCullingBounds: {x: 0, y: 0, z: 0} m_MaxChunkCount: 16 @@ -7228,46 +8577,6 @@ Tilemap: m_TileObjectToInstantiateIndex: 65535 dummyAlignment: 0 m_AllTileFlags: 1073741825 - - first: {x: 45, y: -13, z: 0} - second: - serializedVersion: 2 - m_TileIndex: 1 - m_TileSpriteIndex: 1 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_TileObjectToInstantiateIndex: 65535 - dummyAlignment: 0 - m_AllTileFlags: 1073741825 - - first: {x: 46, y: -13, z: 0} - second: - serializedVersion: 2 - m_TileIndex: 1 - m_TileSpriteIndex: 1 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_TileObjectToInstantiateIndex: 65535 - dummyAlignment: 0 - m_AllTileFlags: 1073741825 - - first: {x: 47, y: -13, z: 0} - second: - serializedVersion: 2 - m_TileIndex: 1 - m_TileSpriteIndex: 1 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_TileObjectToInstantiateIndex: 65535 - dummyAlignment: 0 - m_AllTileFlags: 1073741825 - - first: {x: 48, y: -13, z: 0} - second: - serializedVersion: 2 - m_TileIndex: 1 - m_TileSpriteIndex: 1 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_TileObjectToInstantiateIndex: 65535 - dummyAlignment: 0 - m_AllTileFlags: 1073741825 - first: {x: 49, y: -13, z: 0} second: serializedVersion: 2 @@ -7428,86 +8737,6 @@ Tilemap: m_TileObjectToInstantiateIndex: 65535 dummyAlignment: 0 m_AllTileFlags: 1073741825 - - first: {x: 65, y: -13, z: 0} - second: - serializedVersion: 2 - m_TileIndex: 1 - m_TileSpriteIndex: 1 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_TileObjectToInstantiateIndex: 65535 - dummyAlignment: 0 - m_AllTileFlags: 1073741825 - - first: {x: 66, y: -13, z: 0} - second: - serializedVersion: 2 - m_TileIndex: 1 - m_TileSpriteIndex: 1 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_TileObjectToInstantiateIndex: 65535 - dummyAlignment: 0 - m_AllTileFlags: 1073741825 - - first: {x: 67, y: -13, z: 0} - second: - serializedVersion: 2 - m_TileIndex: 1 - m_TileSpriteIndex: 1 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_TileObjectToInstantiateIndex: 65535 - dummyAlignment: 0 - m_AllTileFlags: 1073741825 - - first: {x: 68, y: -13, z: 0} - second: - serializedVersion: 2 - m_TileIndex: 1 - m_TileSpriteIndex: 1 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_TileObjectToInstantiateIndex: 65535 - dummyAlignment: 0 - m_AllTileFlags: 1073741825 - - first: {x: 44, y: -12, z: 0} - second: - serializedVersion: 2 - m_TileIndex: 1 - m_TileSpriteIndex: 1 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_TileObjectToInstantiateIndex: 65535 - dummyAlignment: 0 - m_AllTileFlags: 1073741825 - - first: {x: 45, y: -12, z: 0} - second: - serializedVersion: 2 - m_TileIndex: 1 - m_TileSpriteIndex: 1 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_TileObjectToInstantiateIndex: 65535 - dummyAlignment: 0 - m_AllTileFlags: 1073741825 - - first: {x: 46, y: -12, z: 0} - second: - serializedVersion: 2 - m_TileIndex: 1 - m_TileSpriteIndex: 1 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_TileObjectToInstantiateIndex: 65535 - dummyAlignment: 0 - m_AllTileFlags: 1073741825 - - first: {x: 47, y: -12, z: 0} - second: - serializedVersion: 2 - m_TileIndex: 1 - m_TileSpriteIndex: 1 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_TileObjectToInstantiateIndex: 65535 - dummyAlignment: 0 - m_AllTileFlags: 1073741825 - first: {x: 48, y: -12, z: 0} second: serializedVersion: 2 @@ -7688,86 +8917,6 @@ Tilemap: m_TileObjectToInstantiateIndex: 65535 dummyAlignment: 0 m_AllTileFlags: 1073741825 - - first: {x: 66, y: -12, z: 0} - second: - serializedVersion: 2 - m_TileIndex: 1 - m_TileSpriteIndex: 1 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_TileObjectToInstantiateIndex: 65535 - dummyAlignment: 0 - m_AllTileFlags: 1073741825 - - first: {x: 67, y: -12, z: 0} - second: - serializedVersion: 2 - m_TileIndex: 1 - m_TileSpriteIndex: 1 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_TileObjectToInstantiateIndex: 65535 - dummyAlignment: 0 - m_AllTileFlags: 1073741825 - - first: {x: 68, y: -12, z: 0} - second: - serializedVersion: 2 - m_TileIndex: 1 - m_TileSpriteIndex: 1 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_TileObjectToInstantiateIndex: 65535 - dummyAlignment: 0 - m_AllTileFlags: 1073741825 - - first: {x: 69, y: -12, z: 0} - second: - serializedVersion: 2 - m_TileIndex: 1 - m_TileSpriteIndex: 1 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_TileObjectToInstantiateIndex: 65535 - dummyAlignment: 0 - m_AllTileFlags: 1073741825 - - first: {x: 43, y: -11, z: 0} - second: - serializedVersion: 2 - m_TileIndex: 2 - m_TileSpriteIndex: 2 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_TileObjectToInstantiateIndex: 65535 - dummyAlignment: 0 - m_AllTileFlags: 1073741825 - - first: {x: 44, y: -11, z: 0} - second: - serializedVersion: 2 - m_TileIndex: 2 - m_TileSpriteIndex: 2 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_TileObjectToInstantiateIndex: 65535 - dummyAlignment: 0 - m_AllTileFlags: 1073741825 - - first: {x: 45, y: -11, z: 0} - second: - serializedVersion: 2 - m_TileIndex: 2 - m_TileSpriteIndex: 2 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_TileObjectToInstantiateIndex: 65535 - dummyAlignment: 0 - m_AllTileFlags: 1073741825 - - first: {x: 46, y: -11, z: 0} - second: - serializedVersion: 2 - m_TileIndex: 2 - m_TileSpriteIndex: 2 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_TileObjectToInstantiateIndex: 65535 - dummyAlignment: 0 - m_AllTileFlags: 1073741825 - first: {x: 47, y: -11, z: 0} second: serializedVersion: 2 @@ -7968,67 +9117,27 @@ Tilemap: m_TileObjectToInstantiateIndex: 65535 dummyAlignment: 0 m_AllTileFlags: 1073741825 - - first: {x: 67, y: -11, z: 0} - second: - serializedVersion: 2 - m_TileIndex: 2 - m_TileSpriteIndex: 2 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_TileObjectToInstantiateIndex: 65535 - dummyAlignment: 0 - m_AllTileFlags: 1073741825 - - first: {x: 68, y: -11, z: 0} - second: - serializedVersion: 2 - m_TileIndex: 2 - m_TileSpriteIndex: 2 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_TileObjectToInstantiateIndex: 65535 - dummyAlignment: 0 - m_AllTileFlags: 1073741825 - - first: {x: 69, y: -11, z: 0} - second: - serializedVersion: 2 - m_TileIndex: 2 - m_TileSpriteIndex: 2 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_TileObjectToInstantiateIndex: 65535 - dummyAlignment: 0 - m_AllTileFlags: 1073741825 - - first: {x: 70, y: -11, z: 0} - second: - serializedVersion: 2 - m_TileIndex: 2 - m_TileSpriteIndex: 2 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_TileObjectToInstantiateIndex: 65535 - dummyAlignment: 0 - m_AllTileFlags: 1073741825 m_AnimatedTiles: {} m_TileAssetArray: - m_RefCount: 51 m_Data: {fileID: 11400000, guid: 8d4b8973dba9a474c80fa2d34638d3a5, type: 2} - - m_RefCount: 50 + - m_RefCount: 34 m_Data: {fileID: 11400000, guid: ea4bc5b6fc0b2a641bc26a298f2d44f7, type: 2} - - m_RefCount: 28 + - m_RefCount: 20 m_Data: {fileID: 11400000, guid: c45627ef0e19db04aa0db6438ecac131, type: 2} - m_RefCount: 0 m_Data: {fileID: 0} m_TileSpriteArray: - m_RefCount: 51 m_Data: {fileID: 529542140, guid: eff64c0333047784e9230d6b5fbbcf1b, type: 3} - - m_RefCount: 50 + - m_RefCount: 34 m_Data: {fileID: -140585478, guid: eff64c0333047784e9230d6b5fbbcf1b, type: 3} - - m_RefCount: 28 + - m_RefCount: 20 m_Data: {fileID: 1966963234, guid: eff64c0333047784e9230d6b5fbbcf1b, type: 3} - m_RefCount: 0 m_Data: {fileID: 0} m_TileMatrixArray: - - m_RefCount: 129 + - m_RefCount: 105 m_Data: e00: 1 e01: 0 @@ -8047,7 +9156,7 @@ Tilemap: e32: 0 e33: 1 m_TileColorArray: - - m_RefCount: 129 + - m_RefCount: 105 m_Data: {r: 1, g: 1, b: 1, a: 1} m_TileObjectToInstantiateArray: [] m_AnimationFrameRate: 1 @@ -8146,7 +9255,7 @@ TilemapRenderer: m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 m_SortingLayer: 0 - m_SortingOrder: 0 + m_SortingOrder: 2 m_ChunkSize: {x: 32, y: 32, z: 32} m_ChunkCullingBounds: {x: 0, y: 0, z: 0} m_MaxChunkCount: 16 @@ -8704,23 +9813,43 @@ Tilemap: m_TileObjectToInstantiateIndex: 65535 dummyAlignment: 0 m_AllTileFlags: 1073741825 + - first: {x: 84, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 0 + m_TileSpriteIndex: 0 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 + - first: {x: 85, y: -11, z: 0} + second: + serializedVersion: 2 + m_TileIndex: 0 + m_TileSpriteIndex: 0 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_TileObjectToInstantiateIndex: 65535 + dummyAlignment: 0 + m_AllTileFlags: 1073741825 m_AnimatedTiles: {} m_TileAssetArray: - - m_RefCount: 0 - m_Data: {fileID: 0} + - m_RefCount: 2 + m_Data: {fileID: 11400000, guid: 6bbda3cef862baa4c8a881b440aac1dd, type: 2} - m_RefCount: 34 m_Data: {fileID: 11400000, guid: 6acdb5eaae7117248bd2f7650d01fcf8, type: 2} - m_RefCount: 20 m_Data: {fileID: 11400000, guid: cff643818661dc9479942e3d9748a33d, type: 2} m_TileSpriteArray: - - m_RefCount: 0 - m_Data: {fileID: 0} + - m_RefCount: 2 + m_Data: {fileID: 124357281, guid: eff64c0333047784e9230d6b5fbbcf1b, type: 3} - m_RefCount: 34 m_Data: {fileID: 55498545, guid: c1e9877098c73364e99051dd6f99ebba, type: 3} - m_RefCount: 20 m_Data: {fileID: -1965847646, guid: c1e9877098c73364e99051dd6f99ebba, type: 3} m_TileMatrixArray: - - m_RefCount: 54 + - m_RefCount: 56 m_Data: e00: 1 e01: 0 @@ -8739,7 +9868,7 @@ Tilemap: e32: 0 e33: 1 m_TileColorArray: - - m_RefCount: 54 + - m_RefCount: 56 m_Data: {r: 1, g: 1, b: 1, a: 1} m_TileObjectToInstantiateArray: [] m_AnimationFrameRate: 1 @@ -8862,6 +9991,7 @@ GameObject: - component: {fileID: 2013799894} - component: {fileID: 2013799893} - component: {fileID: 2013799892} + - component: {fileID: 2013799897} m_Layer: 0 m_Name: Laser Lachs 1_0 (2) m_TagString: Untagged @@ -9001,6 +10131,18 @@ SpriteRenderer: m_WasSpriteAssigned: 1 m_MaskInteraction: 0 m_SpriteSortPoint: 0 +--- !u!114 &2013799897 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2013799890} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c0a49909080c12c489367e37b06e7169, type: 3} + m_Name: + m_EditorClassIdentifier: --- !u!1 &2059791299 GameObject: m_ObjectHideFlags: 0 @@ -9154,6 +10296,30 @@ Transform: m_CorrespondingSourceObject: {fileID: 1940356979551777538, guid: 2bffd5594aa1c224ba146958892fc23f, type: 3} m_PrefabInstance: {fileID: 1701892607} m_PrefabAsset: {fileID: 0} +--- !u!212 &2075092384 stripped +SpriteRenderer: + m_CorrespondingSourceObject: {fileID: 1940356979551777539, guid: 2bffd5594aa1c224ba146958892fc23f, type: 3} + m_PrefabInstance: {fileID: 1701892607} + m_PrefabAsset: {fileID: 0} +--- !u!114 &2075092385 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1637657706} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9d3dc8c732803034082446db81dea51a, type: 3} + m_Name: + m_EditorClassIdentifier: + spriteRenderer: {fileID: 2075092384} + originalSprite: {fileID: 21300000, guid: 27fbbaf3fede55b49b5cdba0f3a00763, type: 3} + activatedSprite: {fileID: 21300000, guid: 8f607eb1bf28eed45ba8000033c8508f, type: 3} + doors: + - {fileID: 296142144} + - {fileID: 388725538} + num: 2 --- !u!1 &2136413532 GameObject: m_ObjectHideFlags: 0 @@ -9164,6 +10330,8 @@ GameObject: m_Component: - component: {fileID: 2136413533} - component: {fileID: 2136413534} + - component: {fileID: 2136413535} + - component: {fileID: 2136413536} m_Layer: 0 m_Name: "Forellen k\xF6nigin idle 1_0" m_TagString: Untagged @@ -9179,9 +10347,9 @@ Transform: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2136413532} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -1.5099983, y: -3.6563535, z: 0.8272373} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 + m_LocalPosition: {x: -1.5099983, y: -2.67, z: 0.8272373} + m_LocalScale: {x: 1.55, y: 1.55, z: 1.55} + m_ConstrainProportionsScale: 1 m_Children: [] m_Father: {fileID: 1601345293} m_RootOrder: 4 @@ -9238,3 +10406,41 @@ SpriteRenderer: m_WasSpriteAssigned: 1 m_MaskInteraction: 0 m_SpriteSortPoint: 0 +--- !u!61 &2136413535 +BoxCollider2D: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2136413532} + m_Enabled: 1 + m_Density: 1 + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_UsedByEffector: 0 + m_UsedByComposite: 0 + m_Offset: {x: 0, y: 0} + m_SpriteTilingProperty: + border: {x: 0, y: 0, z: 0, w: 0} + pivot: {x: 0.5, y: 0.5} + oldSize: {x: 3.625, y: 4} + newSize: {x: 3.625, y: 4} + adaptiveTilingThreshold: 0.5 + drawMode: 0 + adaptiveTiling: 0 + m_AutoTiling: 0 + serializedVersion: 2 + m_Size: {x: 3.625, y: 4} + m_EdgeRadius: 0 +--- !u!114 &2136413536 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2136413532} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c0a49909080c12c489367e37b06e7169, type: 3} + m_Name: + m_EditorClassIdentifier: