-
Notifications
You must be signed in to change notification settings - Fork 230
/
Copy pathcustom_object_page.dart
54 lines (47 loc) · 1.54 KB
/
custom_object_page.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import 'package:arkit_plugin/arkit_plugin.dart';
import 'package:flutter/material.dart';
import 'package:vector_math/vector_math_64.dart' as vector;
class CustomObjectPage extends StatefulWidget {
@override
_CustomObjectPageState createState() => _CustomObjectPageState();
}
class _CustomObjectPageState extends State<CustomObjectPage> {
late ARKitController arkitController;
ARKitReferenceNode? node;
@override
void dispose() {
arkitController.dispose();
super.dispose();
}
@override
Widget build(BuildContext context) => Scaffold(
appBar: AppBar(title: const Text('Custom object on plane Sample')),
body: Container(
child: ARKitSceneView(
showFeaturePoints: true,
planeDetection: ARPlaneDetection.horizontal,
onARKitViewCreated: onARKitViewCreated,
),
),
);
void onARKitViewCreated(ARKitController arkitController) {
this.arkitController = arkitController;
arkitController.addCoachingOverlay(CoachingOverlayGoal.horizontalPlane);
arkitController.onAddNodeForAnchor = _handleAddAnchor;
}
void _handleAddAnchor(ARKitAnchor anchor) {
if (anchor is ARKitPlaneAnchor) {
_addPlane(arkitController, anchor);
}
}
void _addPlane(ARKitController controller, ARKitPlaneAnchor anchor) {
if (node != null) {
controller.remove(node!.name);
}
node = ARKitReferenceNode(
url: 'models.scnassets/dash.dae',
scale: vector.Vector3.all(0.3),
);
controller.add(node!, parentNodeName: anchor.nodeName);
}
}