chunk 2: remaining non-audio non-NewImport assets

This commit is contained in:
2026-04-06 11:25:19 +03:00
parent 0d11a097d8
commit ed675b9f4a
3742 changed files with 1640416 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
namespace FirstGearGames.SmoothCameraShaker
{
/// <summary>
/// ShakableTransform2D is currently the exact same as ShakableTransform. Using inheritance for now should I want to expand upon ShakableTransform2D later.
/// </summary>
public class ShakableTransform2D : ShakableTransform
{
protected override void Awake() { base.Awake(); }
protected override void OnEnable() { base.OnEnable(); }
protected override void OnDisable() { base.OnDisable(); }
protected override void OnBecameInvisible() { base.OnBecameInvisible(); }
protected override void OnBecameVisible() { base.OnBecameVisible(); }
}
}