Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
1 capture
13 Jun 22 - 13 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 Skibur · Aug 24, 2013 at 06:13 AM · listinspectorarraylistelement

How can I make multiple of entry for arraylist in inspector

How can I have a arraylist that has multiple of element list for inspector?

For example; Element 0 - Output - Target - Input - Parameter - Delay - Boolean Only Once

Any idea how can I achieve this via C#?

I thought about doing something like public Arraylist[][][][][][] Outputs = new Arraylist[output[]][target[]][input[]]... and so 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

2 Replies

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

Answer by Skibur · Aug 24, 2013 at 05:20 PM

Figure it out. Here's what I did to make it work for those who wanted to do something like this;

 public class Trigger : MonoBehaviour {
 
     [System.Serializable]
     public class Outputs {
         public enum Output : byte { OnStartTouch, OnStartTouchAll, OnEndTouch, OnEndTouchAll, OnTrigger }
         public Output output; 
         public GameObject Target;
         public enum Inputs : byte { Enabled, Disabled, SetParent, PlayAudio, EnableTrigger, DisableTrigger, SetCheckPoint }
         public Inputs input; 
         public string parameter;
         public float delay;
         public bool isFiredOnce;
     }
     public Outputs[] events;
 }
Comment
Add comment · Show 3 · 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 Hoeloe · Aug 24, 2013 at 05:58 PM 0
Share

You might want to look up what an ArrayList is - I'm not sure it does what you think it does.

avatar image Skibur · Aug 24, 2013 at 08:08 PM 0
Share

It works for me. It shows in the inspector with a list of items I can add per each elements.

Here's what it looks like - alt text

untitled-1.png (15.6 kB)
avatar image Hoeloe · Aug 24, 2013 at 09:11 PM 0
Share

No, I mean you're not actually using ArrayLists in your solution, but you should perhaps look them up, as they are quite handy in some circumstances, and I don't think they do what you thought they did.

avatar image
0

Answer by Sisso · Aug 24, 2013 at 05:22 PM

Try to encapsulate each array in a proper class. This is javascript, but i think that is the same with c#.

 class Data1 {
   var array: Data2[];
 }
 
 class Data2 {
   var array: String[];
 }
 
 var array: Data1[];
Comment
Add comment · 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

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

17 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

Related Questions

A node in a childnode? 1 Answer

Inspector scripting, adding lists, checkboxes and buttons [With Image] 0 Answers

Editing a List<> in Inspector 4 Answers

Difference between assigning a value in inspector and with a custom editor script 1 Answer

Default values are not working in Editor 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