Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
0
Question by LeonardNS · Sep 30, 2016 at 10:52 PM · classscriptableobjectscriptable objectstruct

My structs are acting like classes in scriptable object.

I have made a map editor for one of my projects and all the information for each map is stored in a scriptable object each. The problem I have is that even though all the variables are structs, when I change the local variables in the map editor script the variables change in the scriptable object as well. That should only happen when i click a "Save map"-button. All the variables in the map editor script have a counterpart in the scriptable object, but I do have to use prefixes to differentiate between them so I am pretty sure I am not assigning the values to the wrong variables. I am using a custom interface for the map editor.

This is something I tried:

  • I changed all values to 0 in the scriptable object, aka it is a flat map now.

  • I manually changed one value to something other than 0 in the scriptable object, so I should see a big spike in height somewhere on the map.

  • I clicked play, which will copy all the variables from the scriptable object to the map editor script, and the map will be displayed. I did see the height spike.

  • I changed a bunch of values in the map editor script, not manually, and did not save.

  • I checked the values in the scriptable object, and by now they have all changed to their map editor script conterpart. Why?

I though only classes did that and structs had their own local value. What is going on?

Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

1 Reply

· Add your reply
  • Sort: 
avatar image
1
Best Answer

Answer by nonathaj · Oct 01, 2016 at 03:01 AM

You are correct that structs are stored by value, and not be reference. However you incorrectly assumed that a ScriptableObject was a struct, which it is not.

ScriptableObject inherits from UnityEngine.Object, which makes it a class, and will always be by reference. You need to use ScriptableObject.CreateInstance to create a new copied version of your scriptable object that you can modify without changing the original.

Comment
Add comment · Show 2 · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image LeonardNS · Oct 01, 2016 at 08:55 AM 0
Share

But the local variables are all structs, and they are copying the values from the scriptable object. Shouldn't this be enough to ensure that changing the local variables would not change the scriptable object? I am not changing the scriptable object at all. I also seem to have problem using the CreateInstance to make a copy. All I can do is make a new one without the data.

avatar image LeonardNS · Oct 01, 2016 at 09:03 AM 0
Share

I managed to clone the scriptable object with this line: $$anonymous$$yScriptableObject clone = Object.Instantiate(original) as $$anonymous$$yScriptableObject;

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

56 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Why do I need to serialize a struct inside a ScriptableObject to save its data? 1 Answer

Abstract classes in a ScriptableObject 1 Answer

How to access a list from a scriptable object? 1 Answer

Struct for holding Class Parameters 0 Answers

scriptable object ability for two players 0 Answers


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges