-
Notifications
You must be signed in to change notification settings - Fork 227
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unable to manipulate external 3D model #233
Comments
Here is my code `import 'dart:async'; import 'package:arkit_plugin/arkit_plugin.dart'; import 'package:vector_math/vector_math_64.dart' as vector; import 'package:collection/collection.dart'; class TapPage extends StatefulWidget { class _TapPageState extends State { ARKitGltfNode _getNodeFromFlutterAsset() => ARKitGltfNode( @OverRide @OverRide void onARKitViewCreated(ARKitController arkitController) {
} void _onPinchHandler(List pinch) { void _onPanHandler(List pan) { void _onRotationHandler(List rotation) { void onNodeTapHandler(List nodesList) {
} |
I'm also experiencing the same issue @leeprobert |
I have been trying to manipulate a 3D model from my assets folder. It neither detects the model when I tap it nor when I try to manipulate it. I can successfully manipulate a node if it's the default node eg sphere but all efforts to do the same to an external 3D model have seemed futile.
The text was updated successfully, but these errors were encountered: