Skip to content

Instantly share code, notes, and snippets.

@kickbase
Created October 10, 2017 08:09
Show Gist options
  • Select an option

  • Save kickbase/61607617c216535d783d479488fe8875 to your computer and use it in GitHub Desktop.

Select an option

Save kickbase/61607617c216535d783d479488fe8875 to your computer and use it in GitHub Desktop.
[VSCode] [Houdini] Custom snippets
{
"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