Stephen Schieberl

Results 8 comments of Stephen Schieberl

I resolved this by using the application storage on iOS, rather than the "data directory". ``` function getDataDirectory() { if (device.platform == "iOS") { return `${cordova.file.applicationStorageDirectory}Documents`; } return `${cordova.file.dataDirectory}`; }...

Also using this in SwiftUI np. I have a view with a `UIViewControllerRepresentable` which creates a Coordinator that extends `ARSessionDelegate`, as well as a UIViewController. The controller allows me to...

Hey, just now seeing this. Must have missed the email. I'm building VS11 samples right now against the new dev branch of Cinder (merged from appRewrite today). Will look for...

Have you pulled the latest update with the VC11 samples? Are you still getting this error?

Oh, that line should be sooner in the routine.  Must have happened during some rearrangement. Good catch. Will fix. — Sent from Mailbox for iPhone On Thu, Apr 11, 2013...

![recursion](https://user-images.githubusercontent.com/954475/78261669-5a87b580-74b4-11ea-8574-697857ff3b8d.png) There appears to be a shortcut to the "Sources" directory named "ObjectMapper", which causes recursion. In Xcode 11.4, this causes the source files to show up twice. ![recursion_xcode](https://user-images.githubusercontent.com/954475/78261905-b2262100-74b4-11ea-9166-3553d6dd7294.png)

I figured it out. I changed this: https://github.com/IDI-Systems/UnrealImGui/blob/master/Source/ImGui/Private/ImGuiContextManager.cpp#L282 ``` FontAtlas.AddFont(CustomFontConfig.Get()); ``` To this: ``` ImFont* font { FontAtlas.AddFont( CustomFontConfig.Get() ) }; font->ContainerAtlas = &FontAtlas; ``` You need to tell the...

I'll try. Against a deadline atm. The issue there is that I did a lot of other project-specific customization to this plug-in that you wouldn't want in a PR.