When I made a new class with a first line like this:
class NewTransform(UserTransform)(
instead of the correct
class NewTransform(common.ulb:UserTransform)(
the UF compiler made no complaint. NewTransform just didn't show up on my list of available UserTransform plug-ins.
(I don't see how the compiler would even know to look at this class to check for errors.)
When I made a new class with a first line like this:
````
class NewTransform(UserTransform)(
````
instead of the correct
````
class NewTransform(common.ulb:UserTransform)(
````
the UF compiler made no complaint. NewTransform just didn't show up on my list of available UserTransform plug-ins.
(I don't see how the compiler would even know to look at this class to check for errors.)
edited Aug 21 at 7:15 pm