Horje
unity create scriptableobject asset Code Example
unity create scriptableobject asset
using UnityEngine;
using System.Collections;

[CreateAssetMenu(fileName = "Data", menuName = "Inventory/List", order = 1)]
public class MyScriptableObjectClass : ScriptableObject {
    public string objectName = "New MyScriptableObject";
    public bool colorIsRandom = false;
    public Color thisColor = Color.white;
    public Vector3[] spawnPoints;
}




Csharp

Related
unity createassetmenu Code Example unity createassetmenu Code Example
how to disable a gameObject unity c# Code Example how to disable a gameObject unity c# Code Example
random bool c# Code Example random bool c# Code Example
C# get pc language Code Example C# get pc language Code Example
unity to integer Code Example unity to integer Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10