Erwan BOEHM
Erwan BOEHM
@ofZach : first thank you for inspiring a lot of people like me who did not know anything about creative coding :) I have that issue too (but did not...
Yes sorry I was talking about the textures that I create (not the texture of the arcore session). Ok, I am using FBOs, so it might be the issue. Will...
:+1: It does comes from FBOs : when using ofImage (and your fix) I am able to resume my app and use it as normal. Can I know how you...
Thank you that's very clear.
I have two build of my app: In the first I use ofImage, and when i resume the app, I still can see them. In the second, I use ofFbo...
@arturoc Thank you But what if the content is created dynamically ? There is no way to keep it when app resume ?
You can use my fork of the project : https://github.com/boehm-e/ofxARCore
Have you looked at this answer ? : https://github.com/googlecreativelab/giantemoji/issues/6#issuecomment-279686285
Yes of course :)
I added HitPose API too : ```cpp void DrawApp::touchDown(int x, int y, int id) { ofHitPose *hitPose = arcore->getHitPose(x, y); if (pose != NULL) { ofMatrix4x4 pose = hitPose->pose; float...