mirror of
https://github.com/ApacheThunder/ExpandTheGungeon.git
synced 2025-06-19 03:35:42 -04:00

* Added Ammonomicon entries for most custom enemies and bosses. Sprite work thanks to Lynceus! * Added new Tree objects to ExpandFloorDecorator for Jungle floor. Modified sprites courtasy of NeverNamed! * Improved code in ExpandFloorDecorator for finding valid spawn locations for objects. * Bonus chest room on Jungle now has unique room design.
18 lines
326 B
C#
18 lines
326 B
C#
using UnityEngine;
|
|
|
|
namespace ExpandTheGungeon.ExpandComponents {
|
|
|
|
public class ExpandPlaySoundOnSpawn : BraveBehaviour {
|
|
|
|
[SerializeField]
|
|
public string SoundEvent;
|
|
|
|
public void Start() { }
|
|
|
|
public void Update() { }
|
|
|
|
protected override void OnDestroy() { base.OnDestroy(); }
|
|
}
|
|
}
|
|
|