11 lines
185 B
C#
11 lines
185 B
C#
|
using System;
|
||
|
using UnityEngine;
|
||
|
|
||
|
[Serializable]
|
||
|
public class SpawnableOutsideObjectWithRarity
|
||
|
{
|
||
|
public SpawnableOutsideObject spawnableObject;
|
||
|
|
||
|
public AnimationCurve randomAmount;
|
||
|
}
|