About 1,410,000 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. Is this how you'd use a scriptableobject? - Stack Overflow

    May 24, 2022 · Create Scriptable Object Instance This will help you build an asset in the code. It is useful when you want each instance to have a separate asset. To use it, do the following.

  3. Unity Type Mismatch For Prefabs - Stack Overflow

    Jul 4, 2023 · When dealing with prefabs, all its object reference fields (with types derived from UnityEngine.Object) could store only other persistent objects like materials, scriptable objects …

  4. 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 …

  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 copy data from scriptable object without link

    Feb 4, 2025 · In my card game, I have a scriptable object that contains data about what cards the algorithm should place on its turn. public class Structures : ScriptableObject { public …

  7. unity game engine - Is it a bad practice to always instantiate …

    Sep 25, 2022 · But if you want to improve your workflow you can try creating ScriptableObjects to store the prefab references and then have only 1 reference to your scriptable object inside the …

  8. 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 …

  9. unity Scriptable object not working in bulid - Stack Overflow

    May 23, 2020 · hi I am new to unity and C# and I am making my first game. In it I have a Scriptable object named "sss".It contains values like coins,speed,jump power. It works fine in …

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

    Dec 22, 2022 · I want to change a value in a ScriptableObject after building in Unity. However, it worked fine before the build, but the SO value did not change in the exe file after the build. …