View Single Post
03/09/14, 08:07 PM   #2
Pawkette
 
Pawkette's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 20
You wanna call

Lua Code:
  1. self:CreatePinType

Key being the colon instead of a period, also Create instead of create. Colon signifies self being passed invisibly to the function.

foo:Bar() == foo.Bar( self )

Will keep reading

Last edited by Pawkette : 03/09/14 at 08:10 PM.
  Reply With Quote