ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Unity Completions Light

by oferei ALL

Unity3D Completions Light - Sublime Text Plugin

Labels auto-complete

Details

Installs

  • Total 14K
  • Win 10K
  • Mac 3K
  • Linux 1K
Jan 15 Jan 14 Jan 13 Jan 12 Jan 11 Jan 10 Jan 9 Jan 8 Jan 7 Jan 6 Jan 5 Jan 4 Jan 3 Jan 2 Jan 1 Dec 31 Dec 30 Dec 29 Dec 28 Dec 27 Dec 26 Dec 25 Dec 24 Dec 23 Dec 22 Dec 21 Dec 20 Dec 19 Dec 18 Dec 17 Dec 16 Dec 15 Dec 14 Dec 13 Dec 12 Dec 11 Dec 10 Dec 9 Dec 8 Dec 7 Dec 6 Dec 5 Dec 4 Dec 3 Dec 2
Windows 0 0 1 1 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 2 3 0 1 1 0 0
Mac 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Linux 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

Unity Completions Light

Package for Sublime Text

This package provides auto-completions for Unity classes, variables and functions. It works with all Unity-supported languages: JavaScript, C# and Boo.

This is a lighter version of the Unity Completions package. The full package shows a more detailed, easy-to-use pop-up menu for auto-completions, but on the other hand adds several seconds to Sublime Text's loading time. If you don't open and close Sublime Text too frequently, I recommend using the full version.

Installation

Package Control

The easiest way to install this package is using Package Control. Choose to install the “Unity Completions Light” package. (See installation and usage for help.) Package Control will also keep you updated.

Manual

Alternatively you can install this package manually:

  1. Open the packages directory from the Sublime Text menu (Preferences | Browse Packages…)
  2. Create a new directory called “Unity Completions Light”
  3. Copy the contents of this package into the new directory

Usage

Simply start typing any Unity term or press Ctrl+Space. You don't have to be accurate - a few consonants may be enough, preferably in the right order.

For example, type in gbjact and you will instantly be offered completions with these letters:

gbjact

Notice the type on the right side: [var] for variables, [class] for classes or parentheses with parameter names for functions.

Another example. Type in pscast and you will be offered:

pscast

Notice that functions may appear multiple times if they have several definitions. They can be distinguished by the parameter names. (The pop-up is too small to include the types…)

Once you select a function completion, a full snippet will be inserted, including the parameter types, names and default values:

SphereCast

You can then use Tab and Shift+Tab to quickly navigate between the parameters.

Limitations

The Unity Completions Light plugin is simple. It does not analyze the code to detect variable types. It only relies on the word being typed. In addition, Sublime Text's auto-complete is interrupted by dots. Typing in a dot will cause Sublime Text to ignore anything before the dot.

Let's say, for example, that you have a variable named enemy of type GameObject and you want assistance writing enemy.activeInHierarchy. Typing enemy. (with a dot) will not work. As soon as you type in the dot the completions pop-up will close.

If you continue typing after the dot, for example enemy.activein, you will be presented with completions, but they will only be based on the part after the dot: activein.

Suppose you choose the completion activeInHierarchy, you will end up with: enemy.GameObject.activeInHierarchy. The class name is inserted together with the variable name. Simply delete the class name manually.

Status

Up to date with Unity version 2019.2.16.

Generation

The Unity Completions Light package files were generated automatically using this generator. The data is based on the Unity Scripting Reference.

Boo Developers

Ahoy!

If you're developing in Boo, know that this package recognizes .boo files, but I recommend installing the Boo package as well if you're into syntax highlighting.

License

(The MIT License)

Copyright © 2013 Ofer Reichman

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.