![]() |
Attention | Topic was automatically imported from the old Question2Answer platform. |
![]() |
Asked By | tyo |
I’m trying to import a plugin for creating polygons from raster images into Godot 3.0 but I’m getting this error. There was another error which seemed to stem from the plugin being from an earlier build, which was an easy fix, but this one isn’t going away. I’ve looked at the documentation and it seems that EditiorInterface still holds a get_base_control ( ) function, which the plugin doesn’t overload, so I’m confused as to why this isn’t working.
The error before this one was because the plugin was checking to see if the node being handled is a Sprite. Its previous syntax was
return (node extends Sprite)
which I changed to
return (node is Sprite)
Don’t think that would be relevant, but just in case it might be.
I’m really stumped.
here’s a link to the plugin’s repository. The above is the only thing I’ve done to it, I haven’t even imported anything into my project yet because I haven’t gotten the thing to load properly.
Thanks for any and all assistance.