CollisionBear / BearDataEditor

Unity3D editor extension, made to simplify working with data.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Bear Data Editor

alt Bear Data editor splash List, Search, and edit objects with an easy-to-access alternative to the Project view. Working with Bear Data Editor enables frictionless editing of your content from a single place as your project grows.

Any Class inheriting from ScriptableObject and MonoBehaviour can use the [BearDataEditor] attribute (available in the CollisionBear.BearDataEditor namespace)to be exposed by the editor window. The editor can display any scriptable objects, or prefab with a monobehavior component, of a given type. The editor finds them in the project folder regardless of location and sorts the results by name. Support for several open editor instances simultaneously is also available, along with filtering among the objects based on their names.

Next to every asset is a folder icon that reveals its location in the Unity project folder.

Getting started

First you need to get your hands on a copy of the editor. We support a few options.

Unity Package

The editor extension can be added Unity's package manager from 'Add package from git URL'

Manual download

You need to put the Bear Data Editor content inside your Unity project's Asset folder.

Example

Decorate a class with the attribute. By default the class's name will be displayed.

using CollisionBear.BearDataEditor;

[BearDataEditor]
class TestClass: ScriptableObject {}

or

  [CollisionBear.BearDataEditor.BearDataEditor]
  class TestClass: ScriptableObject {}

If you want to display another name for your class in the editor, enter a DisplayName for it in the attribute.

using CollisionBear.BearDataEditor;

[BearDataEditor(DisplayName = "Some other name")]
class TestClass: ScriptableObject {}

License

This project is released as Open Source under a MIT license.

About

Unity3D editor extension, made to simplify working with data.

License:MIT License


Languages

Language:C# 100.0%