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 fronzu · Jun 19, 2017 at 11:04 AM · editorarrayinspectoreditor-scriptingobject reference

Editor scripting: Object reference not set to an instance of an object

Hi!

I have a Unity Editor script, and I need to manage arrays.

I'm already correctly using two arrays, and I need a third one of int type, but even when doing the exact same process I used to get and set the data from the other two, I get the "Object reference not set to an instance of an object" error.

Where the problem could be?

First part of editor script (I get the error in GetFrameNumbersArray(), inside the "for"):

     [CustomEditor(typeof(MenuButtonsGeneratorVR))]
     public class MenuEditorVR : Editor {
 
         private SerializedObject m_Object;
 
         private SerializedProperty m_MenuItems;
         private SerializedProperty m_Textures;
         private SerializedProperty m_ScenesIndexes;
         private SerializedProperty m_Animations;
         private SerializedProperty m_FramesNumber;
 
         public void OnEnable() {
             m_Object = new SerializedObject(target);
 
             m_MenuItems = m_Object.FindProperty("m_MenuItems");
             m_Textures = m_Object.FindProperty("m_Textures");
             m_ScenesIndexes = m_Object.FindProperty("m_ScenesIndexes");
             m_Animations = m_Object.FindProperty("m_Animations");
             m_FramesNumber = m_Object.FindProperty("m_FramesNumber");
         }

         private static string framesNumberArraySizePath = "m_FramesNumber.Array.size";
         private static string framesNumberArrayData = "m_FramesNumber.Array.data[{0}]";
 
         // Get the array elements
         private int[] GetFrameNumbersArray() {
 
             var framesArray = new int[m_MenuItems.intValue];
 
             for (int i = 0; i < m_MenuItems.intValue; i++) {
                 framesArray[i] = m_Object.FindProperty(string.Format(framesNumberArrayData, i)).intValue;
             }
 
             return framesArray;
         }
 
         // Set a new array element
         private void SetFramesNumberIndex(int i, int index) {
             m_Object.FindProperty(string.Format(framesNumberArrayData, i)).intValue = index;
         }

I obviously have a m_FramesNumber public int array variable in the script affected by this, but it still throws an error when calling the GetFrameNumbersArray() method and entering the "for" statement.

Any help is really appreaciated.

Thanks for your time and have a nice day!

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

0 Replies

· Add your reply
  • Sort: 

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

96 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 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

How can I recreate the Array Inspector element for a custom Inspector GUI? 7 Answers

EditorGUI add SortingLayer-like list to custom Editor 1 Answer

Get the highlighted variable in the inspector 0 Answers

Create inspector drop-down button based on the content of a list in editor mode 1 Answer

Is it possible to drag/drop/increment into editor array? 1 Answer


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