View Single Post
07-31-18, 12:35 PM   #6
MunkDev
A Scalebane Royal Guard
 
MunkDev's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2015
Posts: 431
Not sure if relevant, but you can hook a specific function in a mixin to find the object that calls the inherited function. There's a slight caveat, in that hooking will only apply to objects that didn't exist when your addon loaded.
Lua Code:
  1. hooksecurefunc(MapCanvasMixin, 'AcquirePin', AcquirePin)
__________________
  Reply With Quote