您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
17 行
583 B
17 行
583 B
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace UnityRoyale
|
|
{
|
|
[CreateAssetMenu(fileName = "NewCard", menuName = "Unity Royale/Card Data")]
|
|
public class CardData : ScriptableObject
|
|
{
|
|
[Header("Card graphics")]
|
|
public Sprite cardImage;
|
|
|
|
[Header("List of Placeables")]
|
|
public PlaceableData[] placeablesData; //link to all the Placeables that this card spawns
|
|
public Vector3[] relativeOffsets; //the relative offsets (from cursor) where the placeables will be dropped
|
|
}
|
|
}
|