All Projects → zchfvy → GizmosPlus

zchfvy / GizmosPlus

Licence: MIT license
A Unity Package that provides additional GIzmo shapes and tools.

Programming Languages

C#
18002 projects
python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to GizmosPlus

2D-Platformer-Hunter
A 2D Platformer Controller in Unity
Stars: ✭ 153 (+337.14%)
Mutual labels:  unity-package-manager, unity-package
colibri-vr-unity-package
This is the Unity package for COLIBRI VR, the Core Open Lab on Image-Based Rendering Innovation for Virtual Reality.
Stars: ✭ 41 (+17.14%)
Mutual labels:  unity-package
Vertx.Debugging
Debugging Utilities for Unity
Stars: ✭ 165 (+371.43%)
Mutual labels:  gizmos
virtualGizmo3D
Virtual GIZMO - 3D object manipulator / orientator, via mouse, with pan and dolly/zoom features
Stars: ✭ 36 (+2.86%)
Mutual labels:  gizmos
Newtonsoft.Json-for-Unity.Converters
Converters of common Unity types for Newtonsoft.Json. Goes hand in hand with jilleJr/Newtonsoft.Json-for-Unity
Stars: ✭ 147 (+320%)
Mutual labels:  unity-package-manager
CosmosFramework
CosmosFramework is a lightweight plug-in Unity development framework . Has a rich Unity method extensions and toolchain. async/await syntax support, multi-network channel support.Long term support for this project
Stars: ✭ 176 (+402.86%)
Mutual labels:  unity-package-manager
oyster-package-generator
Oyster is a package generator for Unity Package Manager (UPM). It generates a best standards Unity package with automated deployments via CLI. Focus on coding your package instead of deployments, changelogs, ect.
Stars: ✭ 18 (-48.57%)
Mutual labels:  unity-package-manager
cube-coordinates
Unity package providing a cube coordinate system for building and using hexagonal tiles for gameplay.
Stars: ✭ 23 (-34.29%)
Mutual labels:  unity-package
com.newblood.lightdata
Provides access to internal lighting APIs.
Stars: ✭ 49 (+40%)
Mutual labels:  unity-package

openupm

GizmosPlus

A toolkit for easier Gizmo usage in Unity. Contains various commonly used useful shapes and also functionality for drawing Gizmos outside of normal OnDrawGizmos flow.

some gizmos from this package

Installation

Via OpenUPM

This package is available on the OpenUPM registry. You can install it form there using openupm-cli:

openupm add com.zchfvy.gizmosplus

Via git

Alternatively, this can be isntalled directly from github.Simply open your manifest.json file located in the Packages folder of your unity project and add the follwing line to the list of dependencies:

"com.zchfvy.gizmosplus": "https://github.com/zchfvy/GizmosPlus.git"

Usage

At the top of your file use the Plus namespace

using Zchfvy.Plus

Then simply call methods out of the GizmosPlus class

GizmosPlus.Cross(transform.position, 1.0f)

For creating Gizmos outside normal flow use the GizmosPlusAsync class

GizmosPlusAsync.DrawAsync(() => {
    // Draw Gizmos in here
});

For a complete listing of available methods and their parameters please consult the Documentation

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].