macro for adding cameras under the ui camera

This commit is contained in:
2024-07-13 20:55:58 -06:00
parent f1e785e5fe
commit a53e51918c

View File

@@ -681,6 +681,14 @@
]
(,funcName))))
(defMacro underUICamera [&body b]
`{
(FlxG.cameras.remove uiCamera false)
,@b
(FlxG.cameras.add uiCamera false)
})
(defMacro addSkips [flxMovieClass]
`{
(method &override :Void prepareForSkip []