2

我是 Flutter 的新手,对此一无所知,我从 rive 应用程序创建了一个简单的设计,并尝试在 Flutter 应用程序上运行,但动画没有运行。我从flutter下载的动画作品很少有工作,有些没有工作,链接下面的一个也没有工作。它只是静态的 png 图像。我尝试将动画名称更改为空闲或中心,但仍然无效。

这是河的下载链接。

这是我正在使用的代码,

import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:flutter/widgets.dart';
import 'package:rive/rive.dart';

class ExampleAnimation extends StatefulWidget {
  const ExampleAnimation({Key? key}) : super(key: key);

  @override
  _ExampleAnimationState createState() => _ExampleAnimationState();
}

class _ExampleAnimationState extends State<ExampleAnimation> {
  void _togglePlay() {
    if (_controller == null) {
      return;
    }
    setState(() => _controller!.isActive = !_controller!.isActive);
  }

  bool get isPlaying => _controller?.isActive ?? false;

  Artboard? _riveArtboard;
  RiveAnimationController? _controller;
  @override
  void initState() {
    super.initState();
    rootBundle.load('assets/rive/new.riv').then(
      (data) async {
        // Load the RiveFile from the binary data.
        final file = RiveFile.import(data);
        final artboard = file.mainArtboard;
        // ignore: cascade_invocations
        artboard.addController(_controller = SimpleAnimation('animate'));
        setState(() => _riveArtboard = artboard);
         
      },
    );
  }

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: const Text('Animation Example'),
      ),
      body: Center(
        child: _riveArtboard == null
            ? const SizedBox()
            : Rive(artboard: _riveArtboard!),
      ),
      floatingActionButton: FloatingActionButton(
        onPressed: _togglePlay,
        tooltip: isPlaying ? 'Pause' : 'Play',
        child: Icon(
          isPlaying ? Icons.pause : Icons.play_arrow,
        ),
      ),
    );
  }
}

4

2 回答 2

3

我刚遇到同样的问题,在上一个答案中,他提到更改对他有用的动画控制器的名称,不幸的是,我不知道该动画控制器值在哪里被选取以及它是什么,所以只是想澄清一下.

在您的 Rive 画板中,会有一个名为动画的列,您必须将该名称指定给动画控制器,以选择应该播放的动画。

点击这里了解动画控制器是什么

于 2021-06-03T17:36:13.453 回答
3

这是不正确的动画名称,在这条线上我只需要更改 rive 应用程序上的动画名称。

artboard.addController(_controller = SimpleAnimation('Animation Name'));

对我来说,动画名称只是 Animation 1。所以添加它解决了我的问题。

于 2021-05-11T07:55:44.100 回答