-
Notifications
You must be signed in to change notification settings - Fork 240
Expand file tree
/
Copy pathcustom_animation_page.dart
More file actions
69 lines (61 loc) · 2.1 KB
/
custom_animation_page.dart
File metadata and controls
69 lines (61 loc) · 2.1 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
import 'package:arkit_plugin/arkit_plugin.dart';
import 'package:flutter/material.dart';
import 'package:vector_math/vector_math_64.dart' as vector;
class CustomAnimationPage extends StatefulWidget {
const CustomAnimationPage({super.key});
@override
State<CustomAnimationPage> createState() => _CustomAnimationPageState();
}
class _CustomAnimationPageState extends State<CustomAnimationPage> {
late ARKitController arkitController;
ARKitReferenceNode? node;
bool idle = true;
@override
void dispose() {
arkitController.dispose();
super.dispose();
}
@override
Widget build(BuildContext context) => Scaffold(
appBar: AppBar(title: const Text('Custom Animation')),
floatingActionButton: FloatingActionButton(
child: Icon(idle ? Icons.play_arrow : Icons.stop),
onPressed: () async {
if (idle) {
await arkitController.playAnimation(
key: 'dancing',
sceneName: 'models.scnassets/twist_danceFixed',
animationIdentifier: 'twist_danceFixed-1');
} else {
await arkitController.stopAnimation(key: 'dancing');
}
setState(() => idle = !idle);
},
),
body: ARKitSceneView(
showFeaturePoints: true,
planeDetection: ARPlaneDetection.horizontal,
onARKitViewCreated: onARKitViewCreated,
),
);
void onARKitViewCreated(ARKitController arkitController) {
this.arkitController = arkitController;
this.arkitController.onAddNodeForAnchor = _handleAddAnchor;
}
void _handleAddAnchor(ARKitAnchor anchor) {
if (anchor is! ARKitPlaneAnchor) {
return;
}
_addPlane(arkitController, anchor);
}
void _addPlane(ARKitController? controller, ARKitPlaneAnchor anchor) {
if (node != null) {
controller?.remove(node!.name);
}
node = ARKitReferenceNode(
url: 'models.scnassets/idleFixed.dae',
position: vector.Vector3(0, 0, 0),
scale: vector.Vector3(0.02, 0.02, 0.02));
controller?.add(node!, parentNodeName: anchor.nodeName);
}
}