animation_tools 0.2.8 animation_tools: ^0.2.8 copied to clipboard
A standardized command-line easy-to-use Dart tool for processing animations. Supported now: Spine.
import 'package:animation_tools/spine/spine_animation_tools.dart';
void main() async {
const sourcePath = './test/data/owl';
const copyPath = './_output/owl_75';
final tools = SpineAnimationTools(sourcePath);
await tools.copy(copyPath);
await tools.scale(0.75);
}