REFLECTION_FILTER problems in 69

Monkey Forums/Monkey Programming/REFLECTION_FILTER problems in 69

Evil Roy Ferguson(Posted 2013) [#1]
I'm having a problem getting REFLECTION_FILTER to work - it seems like types only get imported if it's set to "*".

If I have "*", all the classes show up, but an iOS build takes several hours (!) for a small project with about 20 ~100 line files.

If I put anything else in REFLECTION_FILTER, only some of the built-in primitive wrappers are available.

In my app I have a 'screens' module - specifying

#REFLECTION_FILTER = "screens*"


does not add any of the types in the screens module. They all show up as screens.ScreenName when I list the results from GetClasses() with a '*' filter. I've also tried "screens.*", "screens", and "screens.ScreenName" to no avail.

Is there something obvious I'm missing?