About 50 results
Open links in new tab
  1. What does it mean if a Python object is "subscriptable" or not?

    Oct 19, 2008 · 21 if “scriptable” A scriptable object is an object that records the operations done to it and it can store them as a "script" which can be replayed. For example, see: Application …

  2. c# - How to Handle Scriptable Object Items that have to change …

    Nov 23, 2023 · I have an Item class that stores ItemSO scriptable object public class Item : MonoBehaviour { [SerializeField] private ItemSO inventoryItem; } My Item SO is an abstract …

  3. Using ScriptableObject instead of Enums in Unity, …

    Dec 30, 2023 · So far I feel like I'm using an enumeration class instead of an enum ( Using Enumeration classes instead of enum types - .NET | Microsoft Learn ), I've just wrapped a …

  4. C#/Unity - How to make mixed/multiple select menu in Scriptable …

    Aug 12, 2021 · C#/Unity - How to make mixed/multiple select menu in Scriptable Object with enum Asked 4 years, 6 months ago Modified 4 years ago Viewed 4k times

  5. Unity ScriptableObjects - Read-only fields - Stack Overflow

    May 12, 2022 · Don't directly use the original scriptable object, use its runtime copy to prevent the original value from being modified. You can do it by using ScriptableObject.Instantiate (your_so)

  6. unity game engine - How to change the contents of a …

    Dec 22, 2022 · class Example : ScriptableObject{ public int ANormalProperty { get; set; } public int ASerializedField; } // Suppose you have a reference to the scriptable Example example; // …

  7. Create Scriptable Object with constant, Unique ID

    Nov 21, 2019 · Create Scriptable Object with constant, Unique ID Asked 6 years, 3 months ago Modified 2 years, 5 months ago Viewed 15k times

  8. Creating a Scriptable Object in the Unity Editor - Stack Overflow

    May 28, 2018 · How do you create a scriptable object in the editor? I have the project open, it looks like this: Click the Create button as if you wanted to create a folder or C# script or …

  9. ESP-IDF add external library / component: "project command is …

    Apr 16, 2023 · ESP-IDF add external library / component: "project command is not scriptable" Asked 2 years, 10 months ago Modified 2 years, 10 months ago Viewed 3k times

  10. Making a tool to edit scriptableobjects - Stack Overflow

    Sep 25, 2020 · The first part of what you are looking for is that scriptable objects will not serialize changes themselves unless we either: A) Create a new instance of the scriptable object and …