Created
October 10, 2017 08:09
-
-
Save kickbase/61607617c216535d783d479488fe8875 to your computer and use it in GitHub Desktop.
[VSCode] [Houdini] Custom snippets
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "printf":{ | |
| "prefix":"pr;", | |
| "body":[ | |
| "printf('%g\\n', $0);" | |
| ], | |
| "description":"Log output to console" | |
| }, | |
| "chs":{ | |
| "prefix":"chs;", | |
| "body":[ | |
| "`chs(\"$0\")`" | |
| ], | |
| "description":"Access channel" | |
| }, | |
| "touchdown":{ | |
| "prefix":"td;", | |
| "body":[ | |
| "@P.y -= getbbox_min(0).y;" | |
| ], | |
| "description":"Put geometry on the ground" | |
| }, | |
| "add normal":{ | |
| "prefix":"nn;", | |
| "body":[ | |
| "@N = @N;" | |
| ], | |
| "description":"Add normal attribute" | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment