react-native-arkit
Version:
React Native binding for iOS ARKit
16 lines (13 loc) • 504 B
JavaScript
import { NativeModules } from 'react-native';
const ARKitManager = NativeModules.ARKitManager;
export default () => {
// when reloading the app, the scene should be cleared.
// on prod, this usually does not happen, but you can reload the app in develop mode
// without clearing, this would result in inconsistency
// do this only when arkit was already initialized
ARKitManager.isInitialized().then(isInitialized => {
if (isInitialized) {
ARKitManager.clearScene();
}
});
};