10 lines
217 B
C#
10 lines
217 B
C#
using UnityEngine;
|
|
|
|
public class ShowAssetPreview : MonoBehaviour
|
|
{
|
|
[NaughtyAttributes.ShowAssetPreview]
|
|
public Sprite sprite;
|
|
|
|
[NaughtyAttributes.ShowAssetPreview(96, 96)]
|
|
public GameObject prefab;
|
|
}
|