Git Product home page Git Product logo

Comments (5)

Deadcows avatar Deadcows commented on May 20, 2024

Well we've got ReorderableCollection, but it's intended to be used from Custom Editors.
Here you may make custom editor for ListReorderTest and create ReorderableCollections for every collection you want to handle them the way you want.

private ReorderableCollection _reorderableSprites;
private void OnEnabled() { 
    var sprites = serializedObject.FindProperty(nameof(ListReorderTest.Sprites));
    _reorderableSprites = new ReorderableCollection(stack);
    ... 
}
public override void OnInspectorGUI() {
    // Draw all the stuff till the last Sprites array
    _reorderableSprites.Draw(); 
    ... 
}

Surely in your case it's lots of work and I believe it should be easy to make approach to draw as reorderable collection with a custom type

from mybox.

Deadcows avatar Deadcows commented on May 20, 2024

But with ReorderableCollection you're able to do a lot of stuff :)!
For instance, with this example I draw array of InteractiveActions (base type for different actions with different drawers):
_reorderableItemsStack = new ReorderableCollection(stack);
_reorderableItemsStack.CustomDrawer += ActionDrawer;
_reorderableItemsStack.CustomDrawerHeight += ActionHeight;
_reorderableItemsStack.CustomAdd += CustomAdd;
_reorderableItemsStack.CustomRemove += CustomRemove;

This way I'm able to do stuff like this, with custom popup of types when you click on Add and extra logic on Remove

image

from mybox.

Deadcows avatar Deadcows commented on May 20, 2024

Ok I did it 😁.
You've got ReorderableArray and ReorderableList base classes to create your own collections (it's basically a wrappers for "Collection" property of Array or List type):

	[Serializable]
	public class ReorderableInt : Reorderable<int>
	{
	}

	public ReorderableGameObject GOArray;
	public ReorderableTransformList TransformList;
	public ReorderableInt IntArray;
	... // a few way to access collection
	var firstElement = IntArray[0];
	var lastElement = IntArray.Collection.LastOrDefault();

image

from mybox.

Deadcows avatar Deadcows commented on May 20, 2024

I'll update MyBox version a bit later, when'll be able to fix problem with Updater.
For now I wrote tiny instruction on easiest way to get the latest version (commit) of the package, so you may do this to get Reorderable type

image

from mybox.

android272 avatar android272 commented on May 20, 2024

This is so awesome! Thank you for getting back to me.

from mybox.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.