Replies: 1 comment 1 reply
-
Do you get this error with any macro or macro's those import Flixel properties? I've used macros in Flixel projects before to manipulate JSON files and that works fine for me. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
whenever I try to do macros with my flixel projects I get the error forbidding access to the flash package while in macros. my project isn't targeting flash but openfl classes that recreate flash classes under the guise of
flash.foo
. For instance if I have a macro that usesExprOf<FlxPoint>
I get this error becauseFlxPoint
importsflash.geom.Point
instead of the openfl import.how do I get around this?
is it worthwhile to do a full project change of flash imports to openfl imports and check for this is codeclimate?
Beta Was this translation helpful? Give feedback.
All reactions