chrisgregan
10 years ago
15 changed files with 1598 additions and 15 deletions
Binary file not shown.
@ -0,0 +1,5 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 480b070201a224941aa71ed609c4a6b6 |
||||
folderAsset: yes |
||||
DefaultImporter: |
||||
userData: |
@ -0,0 +1,5 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 97161408484da49bc8a4fb5f4b4c2f5a |
||||
folderAsset: yes |
||||
DefaultImporter: |
||||
userData: |
@ -0,0 +1,5 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 1351e3cf05fcef04cbafc172b277cd32 |
||||
folderAsset: yes |
||||
DefaultImporter: |
||||
userData: |
Binary file not shown.
@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 21d076cb9a4ec214a8cb820e69657bc3 |
||||
MonoAssemblyImporter: |
||||
serializedVersion: 1 |
||||
iconMap: {} |
||||
executionOrder: {} |
||||
userData: |
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,4 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 087430efbff5ee54a8c8273aee1508fc |
||||
TextScriptImporter: |
||||
userData: |
@ -0,0 +1,26 @@
|
||||
Copyright (c) 2013, Rotorz Limited |
||||
All rights reserved. |
||||
|
||||
Redistribution and use in source and binary forms, with or without |
||||
modification, are permitted provided that the following conditions are met: |
||||
|
||||
1. Redistributions of source code must retain the above copyright notice, this |
||||
list of conditions and the following disclaimer. |
||||
2. Redistributions in binary form must reproduce the above copyright notice, |
||||
this list of conditions and the following disclaimer in the documentation |
||||
and/or other materials provided with the distribution. |
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
||||
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
||||
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
||||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR |
||||
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
||||
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
||||
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
||||
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
||||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||||
|
||||
The views and conclusions contained in the software and documentation are those |
||||
of the authors and should not be interpreted as representing official policies, |
||||
either expressed or implied, of the FreeBSD Project. |
@ -0,0 +1,4 @@
|
||||
fileFormatVersion: 2 |
||||
guid: 8fc66c8c3ee484548a40e9b4cb50f206 |
||||
TextScriptImporter: |
||||
userData: |
@ -0,0 +1,141 @@
|
||||
README |
||||
====== |
||||
|
||||
List control for Unity allowing editor developers to add reorderable list controls to |
||||
their GUIs. Supports generic lists and serialized property arrays, though additional |
||||
collection types can be supported by implementing `Rotorz.ReorderableList.IReorderableListAdaptor`. |
||||
|
||||
Use of this source code is governed by a BSD-style license that can be found in |
||||
the LICENSE file. DO NOT contribute to this project unless you accept the terms of the |
||||
contribution agreement. |
||||
|
||||
![screenshot](https://bitbucket.org/rotorz/reorderable-list-editor-field-for-unity/raw/master/screenshot.png) |
||||
|
||||
Features |
||||
-------- |
||||
|
||||
- Drag and drop reordering! |
||||
- Easily customized using flags. |
||||
- Adaptors for `IList<T>` and `SerializedProperty`. |
||||
- Subscribe to add/remove item events. |
||||
- Supports mixed item heights. |
||||
- Disable drag and/or removal on per-item basis. |
||||
- Styles can be overriden on per-list basis if desired. |
||||
- Subclass list control to override context menu. |
||||
- User guide (Asset Path/Support/User Guide.pdf). |
||||
- API reference documentation (Asset Path/Support/API Reference.chm). |
||||
|
||||
Installing scripts |
||||
------------------ |
||||
|
||||
This control can be added to your project by importing the Unity package which |
||||
contains a compiled class library (DLL). This can be used by C# and UnityScript |
||||
developers. |
||||
|
||||
[Download RotorzReorderableList_v0.2.4 Package (requires Unity 4.2.1+)](<https://bitbucket.org/rotorz/reorderable-list-editor-field-for-unity/downloads/RotorzReorderableList_v0.2.4.unitypackage>) |
||||
|
||||
If you would prefer to use the non-compiled source code version in your project, |
||||
copy the contents of this repository somewhere into your project. |
||||
|
||||
**Note to UnityScript (*.js) developers:** |
||||
|
||||
UnityScript will not work with the source code version of this project unless |
||||
the contents of this repository is placed at the path "Assets/Plugins/ReorderableList" |
||||
due to compilation ordering. |
||||
|
||||
Example 1: Serialized array of strings (C#) |
||||
------------------------------------------- |
||||
|
||||
:::csharp |
||||
SerializedProperty _wishlistProperty; |
||||
SerializedProperty _pointsProperty; |
||||
|
||||
void OnEnable() { |
||||
_wishlistProperty = serializedObject.FindProperty("wishlist"); |
||||
_pointsProperty = serializedObject.FindProperty("points"); |
||||
} |
||||
|
||||
public override void OnInspectorGUI() { |
||||
serializedObject.Update(); |
||||
|
||||
ReorderableListGUI.Title("Wishlist"); |
||||
ReorderableListGUI.ListField(_wishlistProperty); |
||||
|
||||
ReorderableListGUI.Title("Points"); |
||||
ReorderableListGUI.ListField(_pointsProperty, ReorderableListFlags.ShowIndices); |
||||
|
||||
serializedObject.ApplyModifiedProperties(); |
||||
} |
||||
|
||||
Example 2: List of strings (UnityScript) |
||||
---------------------------------------- |
||||
|
||||
:::javascript |
||||
var yourList:List.<String> = new List.<String>(); |
||||
|
||||
function OnGUI() { |
||||
ReorderableListGUI.ListField(yourList, CustomListItem, DrawEmpty); |
||||
} |
||||
|
||||
function CustomListItem(position:Rect, itemValue:String):String { |
||||
// Text fields do not like null values! |
||||
if (itemValue == null) |
||||
itemValue = ''; |
||||
return EditorGUI.TextField(position, itemValue); |
||||
} |
||||
|
||||
function DrawEmpty() { |
||||
GUILayout.Label('No items in list.', EditorStyles.miniLabel); |
||||
} |
||||
|
||||
Refer to API reference for further examples! |
||||
|
||||
Submission to the Unity Asset Store |
||||
----------------------------------- |
||||
|
||||
If you wish to include this asset as part of a package for the asset store, please |
||||
include the latest package version as-is to avoid conflict issues in user projects. |
||||
It is important that license and documentation files are included and remain intact. |
||||
|
||||
**To include a modified version within your package:** |
||||
|
||||
- Ensure that license and documentation files are included and remain intact. It should |
||||
be clear that these relate to the reorderable list field library. |
||||
|
||||
- Copyright and license information must remain intact in source files. |
||||
|
||||
- Change the namespace `Rotorz.ReorderableList` to something unique and DO NOT use the |
||||
name "Rotorz". For example, `YourName.ReorderableList` or `YourName.Internal.ReorderableList`. |
||||
|
||||
- Place files somewhere within your own asset folder to avoid causing conflicts with |
||||
other assets which make use of this project. |
||||
|
||||
Useful links |
||||
------------ |
||||
|
||||
- [Rotorz Website](<http://rotorz.com>) |
||||
|
||||
Contribution Agreement |
||||
---------------------- |
||||
|
||||
This project is licensed under the BSD license (see LICENSE). To be in the best |
||||
position to enforce these licenses the copyright status of this project needs to |
||||
be as simple as possible. To achieve this the following terms and conditions |
||||
must be met: |
||||
|
||||
- All contributed content (including but not limited to source code, text, |
||||
image, videos, bug reports, suggestions, ideas, etc.) must be the |
||||
contributors own work. |
||||
|
||||
- The contributor disclaims all copyright and accepts that their contributed |
||||
content will be released to the [public domain](<http://en.wikipedia.org/wiki/Public_domain>). |
||||
|
||||
- The act of submitting a contribution indicates that the contributor agrees |
||||
with this agreement. This includes (but is not limited to) pull requests, issues, |
||||
tickets, e-mails, newsgroups, blogs, forums, etc. |
||||
|
||||
### Disclaimer |
||||
|
||||
External content linked in the above text are for convienence purposes only and |
||||
do not contribute to the agreement in any way. Linked content should be digested |
||||
under the readers discretion. |
@ -0,0 +1,4 @@
|
||||
fileFormatVersion: 2 |
||||
guid: d5735c08f13f43a44be11da81110e424 |
||||
TextScriptImporter: |
||||
userData: |
Loading…
Reference in new issue