commit
4f872f5915
14
README.md
14
README.md
|
@ -46,15 +46,15 @@ Control | Description | Menu Command | Component Command | Notes | Credits
|
||||||
| | | UI / Extensions / Bound Tooltip / Tooltip Trigger | | Martin Sharkbomb
|
| | | UI / Extensions / Bound Tooltip / Tooltip Trigger | | Martin Sharkbomb
|
||||||
|
|
||||||
|
|
||||||
## Primatives ##
|
## Primitives ##
|
||||||
================
|
================
|
||||||
|
|
||||||
Control | Description | Menu Command | Component Command | Notes | Credits
|
Control | Description | Menu Command | Component Command | Notes | Credits
|
||||||
--------- | -------------- | ---------------------- | ---------------------------- | ------- | ----------
|
--------- | -------------- | ---------------------- | ---------------------------- | ------- | ----------
|
||||||
**LineRenderer** | Graphic control for drawing lines in the UI System | UI / Extensions / Primatives / UI Line Renderer | UI / Extensions / Primatives / UI Line Renderer |[tutorial video](https://www.youtube.com/watch?v=OElcWAZGHi0)| jack.sydorenko
|
**LineRenderer** | Graphic control for drawing lines in the UI System | UI / Extensions / Primitives / UI Line Renderer | UI / Extensions / Primitives / UI Line Renderer |[tutorial video](https://www.youtube.com/watch?v=OElcWAZGHi0)| jack.sydorenko
|
||||||
**UILineTextureRenderer** | Graphic control for drawing lines in the UI System | UI / Extensions / Primatives / UI Line Texture Renderer | UI / Extensions / Primatives / UI Line Texture Renderer |[tutorial video](https://www.youtube.com/watch?v=OElcWAZGHi0)| jack.sydorenko, jonbro5556
|
**UILineTextureRenderer** | Graphic control for drawing lines in the UI System | UI / Extensions / Primitives / UI Line Texture Renderer | UI / Extensions / Primitives / UI Line Texture Renderer |[tutorial video](https://www.youtube.com/watch?v=OElcWAZGHi0)| jack.sydorenko, jonbro5556
|
||||||
**UICircle** | Graphic control for drawing circles in the UI System | UI / Extensions / Primatives / UI Circle | UI / Extensions / Primatives / UI Circle || zge
|
**UICircle** | Graphic control for drawing circles in the UI System | UI / Extensions / Primitives / UI Circle | UI / Extensions / Primitives / UI Circle || zge
|
||||||
**DiamondGraph** | Graphic control for drawing a diamond in the UI System | UI / Extensions / Primatives / DiamondGraph | UI / Extensions / Primatives / DiamondGraph |5.2+ only| koohddang
|
**DiamondGraph** | Graphic control for drawing a diamond in the UI System | UI / Extensions / Primitives / DiamondGraph | UI / Extensions / Primitives / DiamondGraph |5.2+ only| koohddang
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -63,8 +63,8 @@ Control | Description | Menu Command | Component Command | Notes | Credits
|
||||||
|
|
||||||
Layout | Description | Menu Command | Component Command | Notes | Credits
|
Layout | Description | Menu Command | Component Command | Notes | Credits
|
||||||
--------- | -------------- | ---------------------- | ---------------------------- | ------- | ----------
|
--------- | -------------- | ---------------------- | ---------------------------- | ------- | ----------
|
||||||
**HorizontalScrollSnap** | A pages scroll rect that can work in steps / pages, includes button support | Layout / Extensions / Horizontal Scroll Snap | Layout / Extensions / Horizontal Scroll Snap |[tutorial video](https://www.youtube.com/watch?v=KJlIlWHlfMo)| BinaryX
|
**HorizontalScrollSnap** | A pages scroll rect that can work in steps / pages, includes button support | UI / Extensions / Horizontal Scroll Snap | Layout / Extensions / Horizontal Scroll Snap |[tutorial video](https://www.youtube.com/watch?v=KJlIlWHlfMo)| BinaryX
|
||||||
**VerticalScrollSnap** | A pages scroll rect that can work in steps / pages, includes button support | Layout / Extensions / Vertical Scroll Snap | Layout / Extensions / Vertical Scroll Snap |[tutorial video](https://www.youtube.com/watch?v=KJlIlWHlfMo)| BinaryX, Simon Darkside Jackson
|
**VerticalScrollSnap** | A pages scroll rect that can work in steps / pages, includes button support | UI / Extensions / Vertical Scroll Snap | Layout / Extensions / Vertical Scroll Snap |[tutorial video](https://www.youtube.com/watch?v=KJlIlWHlfMo)| BinaryX, Simon Darkside Jackson
|
||||||
**FlowLayoutGroup** | A more rugged grid style layout group || Layout / Extensions / Flow Layout Group | [Example Video](https://www.youtube.com/watch?v=tMe_3tJTZvc) | Simie
|
**FlowLayoutGroup** | A more rugged grid style layout group || Layout / Extensions / Flow Layout Group | [Example Video](https://www.youtube.com/watch?v=tMe_3tJTZvc) | Simie
|
||||||
**RadialLayout** | A radial layout system || Layout / Extensions / Radial Layout || Danny Goodayle
|
**RadialLayout** | A radial layout system || Layout / Extensions / Radial Layout || Danny Goodayle
|
||||||
**TileSizeFitter** | A fitter layout that will shink / expand content by tiles || Layout / Extensions / TileSizeFitter || Ges
|
**TileSizeFitter** | A fitter layout that will shink / expand content by tiles || Layout / Extensions / TileSizeFitter || Ges
|
||||||
|
|
|
@ -207,7 +207,7 @@ namespace UnityEditor.UI
|
||||||
|
|
||||||
#region UI Extensions "Create" Menu items
|
#region UI Extensions "Create" Menu items
|
||||||
|
|
||||||
[MenuItem("GameObject/Layout/Extensions/Horizontal Scroll Snap", false)]
|
[MenuItem("GameObject/UI/Extensions/Horizontal Scroll Snap", false)]
|
||||||
static public void AddHorizontalScrollSnap(MenuCommand menuCommand)
|
static public void AddHorizontalScrollSnap(MenuCommand menuCommand)
|
||||||
{
|
{
|
||||||
GameObject horizontalScrollSnapRoot = CreateUIElementRoot("Horizontal Scroll Snap", menuCommand, s_ThickGUIElementSize);
|
GameObject horizontalScrollSnapRoot = CreateUIElementRoot("Horizontal Scroll Snap", menuCommand, s_ThickGUIElementSize);
|
||||||
|
@ -278,7 +278,7 @@ namespace UnityEditor.UI
|
||||||
Selection.activeGameObject = horizontalScrollSnapRoot;
|
Selection.activeGameObject = horizontalScrollSnapRoot;
|
||||||
}
|
}
|
||||||
|
|
||||||
[MenuItem("GameObject/Layout/Extensions/Vertical Scroll Snap", false)]
|
[MenuItem("GameObject/UI/Extensions/Vertical Scroll Snap", false)]
|
||||||
static public void AddVerticallScrollSnap(MenuCommand menuCommand)
|
static public void AddVerticallScrollSnap(MenuCommand menuCommand)
|
||||||
{
|
{
|
||||||
GameObject verticalScrollSnapRoot = CreateUIElementRoot("Vertical Scroll Snap", menuCommand, s_ThickGUIElementSize);
|
GameObject verticalScrollSnapRoot = CreateUIElementRoot("Vertical Scroll Snap", menuCommand, s_ThickGUIElementSize);
|
||||||
|
|
Loading…
Reference in New Issue