Skip to content

Outline Effect For Unity

License

MIT, Unknown licenses found

Licenses found

MIT
LICENSE
Unknown
LICENSE.meta
Notifications You must be signed in to change notification settings

Yunday-dev/EasyOutline

Repository files navigation

Easy Outline For Unity

Installation

[Window] - [PackageManager] - [+] - [Add package from git URL] - https://github.com/Yunday-dev/EasyOutline - [Add]

Installation

Usage

  1. Add OutlineManager component to Content GameObject

AddOutlineManager

  1. Add OutlineTag component to Mesh's parent GameObject

AddOutlineTag

  1. Add Script
public class SampleContent : MonoBehaviour
{
    private OutlineManager _outlineManager;
    private OutlineTag _outlineTag;

    private void Start()
    {
        _outlineManager = gameObject.GetComponent<OutlineManager>();
        _outlineTag = gameObject.GetComponent<OutlineTag>();
    }
    
    private void EnableOutline()
    {
        _outlineManager.EnableOutline(_outlineTag);
    }

    private void DisableOutline()
    {
        _outlineManager.DisableOutline(_outlineTag);
    }
}

Sample

outline_std

About

Outline Effect For Unity

Resources

License

MIT, Unknown licenses found

Licenses found

MIT
LICENSE
Unknown
LICENSE.meta

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published