mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-03-02 21:59:09 +08:00
[flutter] Fix linter errors
This commit is contained in:
parent
bf5fed0ba9
commit
58e30c494a
@ -2,3 +2,14 @@ include: package:flutter_lints/flutter.yaml
|
|||||||
|
|
||||||
# Additional information about this file can be found at
|
# Additional information about this file can be found at
|
||||||
# https://dart.dev/guides/language/analysis-options
|
# https://dart.dev/guides/language/analysis-options
|
||||||
|
|
||||||
|
analyzer:
|
||||||
|
exclude:
|
||||||
|
- lib/generated/spine_dart_bindings_generated.dart
|
||||||
|
- test/**
|
||||||
|
errors:
|
||||||
|
avoid_print: ignore
|
||||||
|
|
||||||
|
linter:
|
||||||
|
rules:
|
||||||
|
dangling_library_doc_comments: true
|
||||||
|
|||||||
@ -3,7 +3,7 @@ import 'package:spine_flutter/spine_flutter.dart';
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
|
|
||||||
class AnimationStateEvents extends StatelessWidget {
|
class AnimationStateEvents extends StatelessWidget {
|
||||||
const AnimationStateEvents({Key? key}) : super(key: key);
|
const AnimationStateEvents({super.key});
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
|
|||||||
@ -1,37 +1,37 @@
|
|||||||
///
|
//
|
||||||
/// Spine Runtimes License Agreement
|
// Spine Runtimes License Agreement
|
||||||
/// Last updated April 5, 2025. Replaces all prior versions.
|
// Last updated April 5, 2025. Replaces all prior versions.
|
||||||
///
|
//
|
||||||
/// Copyright (c) 2013-2025, Esoteric Software LLC
|
// Copyright (c) 2013-2025, Esoteric Software LLC
|
||||||
///
|
//
|
||||||
/// Integration of the Spine Runtimes into software or otherwise creating
|
// Integration of the Spine Runtimes into software or otherwise creating
|
||||||
/// derivative works of the Spine Runtimes is permitted under the terms and
|
// derivative works of the Spine Runtimes is permitted under the terms and
|
||||||
/// conditions of Section 2 of the Spine Editor License Agreement:
|
// conditions of Section 2 of the Spine Editor License Agreement:
|
||||||
/// http://esotericsoftware.com/spine-editor-license
|
// http://esotericsoftware.com/spine-editor-license
|
||||||
///
|
//
|
||||||
/// Otherwise, it is permitted to integrate the Spine Runtimes into software
|
// Otherwise, it is permitted to integrate the Spine Runtimes into software
|
||||||
/// or otherwise create derivative works of the Spine Runtimes (collectively,
|
// or otherwise create derivative works of the Spine Runtimes (collectively,
|
||||||
/// "Products"), provided that each user of the Products must obtain their own
|
// "Products"), provided that each user of the Products must obtain their own
|
||||||
/// Spine Editor license and redistribution of the Products in any form must
|
// Spine Editor license and redistribution of the Products in any form must
|
||||||
/// include this license and copyright notice.
|
// include this license and copyright notice.
|
||||||
///
|
//
|
||||||
/// THE SPINE RUNTIMES ARE PROVIDED BY ESOTERIC SOFTWARE LLC "AS IS" AND ANY
|
// THE SPINE RUNTIMES ARE PROVIDED BY ESOTERIC SOFTWARE LLC "AS IS" AND ANY
|
||||||
/// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||||
/// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||||
/// DISCLAIMED. IN NO EVENT SHALL ESOTERIC SOFTWARE LLC BE LIABLE FOR ANY
|
// DISCLAIMED. IN NO EVENT SHALL ESOTERIC SOFTWARE LLC BE LIABLE FOR ANY
|
||||||
/// DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
// DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||||
/// (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES,
|
// (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES,
|
||||||
/// BUSINESS INTERRUPTION, OR LOSS OF USE, DATA, OR PROFITS) HOWEVER CAUSED AND
|
// BUSINESS INTERRUPTION, OR LOSS OF USE, DATA, OR PROFITS) HOWEVER CAUSED AND
|
||||||
/// ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
// ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||||
/// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||||
/// THE SPINE RUNTIMES, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
// THE SPINE RUNTIMES, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
///
|
//
|
||||||
|
|
||||||
import 'package:spine_flutter/spine_flutter.dart';
|
import 'package:spine_flutter/spine_flutter.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
|
|
||||||
class DebugRendering extends StatelessWidget {
|
class DebugRendering extends StatelessWidget {
|
||||||
const DebugRendering({Key? key}) : super(key: key);
|
const DebugRendering({super.key});
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
@ -60,7 +60,7 @@ class DebugRendering extends StatelessWidget {
|
|||||||
..strokeWidth = 2.0;
|
..strokeWidth = 2.0;
|
||||||
|
|
||||||
canvas.drawLine(
|
canvas.drawLine(
|
||||||
Offset(0, 0),
|
const Offset(0, 0),
|
||||||
Offset(canvas.getLocalClipBounds().width, canvas.getLocalClipBounds().height),
|
Offset(canvas.getLocalClipBounds().width, canvas.getLocalClipBounds().height),
|
||||||
paint,
|
paint,
|
||||||
);
|
);
|
||||||
|
|||||||
@ -1,39 +1,38 @@
|
|||||||
///
|
//
|
||||||
/// Spine Runtimes License Agreement
|
// Spine Runtimes License Agreement
|
||||||
/// Last updated April 5, 2025. Replaces all prior versions.
|
// Last updated April 5, 2025. Replaces all prior versions.
|
||||||
///
|
//
|
||||||
/// Copyright (c) 2013-2025, Esoteric Software LLC
|
// Copyright (c) 2013-2025, Esoteric Software LLC
|
||||||
///
|
//
|
||||||
/// Integration of the Spine Runtimes into software or otherwise creating
|
// Integration of the Spine Runtimes into software or otherwise creating
|
||||||
/// derivative works of the Spine Runtimes is permitted under the terms and
|
// derivative works of the Spine Runtimes is permitted under the terms and
|
||||||
/// conditions of Section 2 of the Spine Editor License Agreement:
|
// conditions of Section 2 of the Spine Editor License Agreement:
|
||||||
/// http://esotericsoftware.com/spine-editor-license
|
// http://esotericsoftware.com/spine-editor-license
|
||||||
///
|
//
|
||||||
/// Otherwise, it is permitted to integrate the Spine Runtimes into software
|
// Otherwise, it is permitted to integrate the Spine Runtimes into software
|
||||||
/// or otherwise create derivative works of the Spine Runtimes (collectively,
|
// or otherwise create derivative works of the Spine Runtimes (collectively,
|
||||||
/// "Products"), provided that each user of the Products must obtain their own
|
// "Products"), provided that each user of the Products must obtain their own
|
||||||
/// Spine Editor license and redistribution of the Products in any form must
|
// Spine Editor license and redistribution of the Products in any form must
|
||||||
/// include this license and copyright notice.
|
// include this license and copyright notice.
|
||||||
///
|
//
|
||||||
/// THE SPINE RUNTIMES ARE PROVIDED BY ESOTERIC SOFTWARE LLC "AS IS" AND ANY
|
// THE SPINE RUNTIMES ARE PROVIDED BY ESOTERIC SOFTWARE LLC "AS IS" AND ANY
|
||||||
/// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||||
/// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||||
/// DISCLAIMED. IN NO EVENT SHALL ESOTERIC SOFTWARE LLC BE LIABLE FOR ANY
|
// DISCLAIMED. IN NO EVENT SHALL ESOTERIC SOFTWARE LLC BE LIABLE FOR ANY
|
||||||
/// DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
// DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||||
/// (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES,
|
// (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES,
|
||||||
/// BUSINESS INTERRUPTION, OR LOSS OF USE, DATA, OR PROFITS) HOWEVER CAUSED AND
|
// BUSINESS INTERRUPTION, OR LOSS OF USE, DATA, OR PROFITS) HOWEVER CAUSED AND
|
||||||
/// ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
// ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||||
/// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||||
/// THE SPINE RUNTIMES, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
// THE SPINE RUNTIMES, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
///
|
//
|
||||||
|
|
||||||
import 'package:spine_flutter/raw_image_provider.dart';
|
|
||||||
import 'package:spine_flutter/spine_flutter.dart';
|
import 'package:spine_flutter/spine_flutter.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:flutter/painting.dart' as painting;
|
import 'package:flutter/painting.dart' as painting;
|
||||||
|
|
||||||
class DressUp extends StatefulWidget {
|
class DressUp extends StatefulWidget {
|
||||||
const DressUp({Key? key}) : super(key: key);
|
const DressUp({super.key});
|
||||||
|
|
||||||
@override
|
@override
|
||||||
DressUpState createState() => DressUpState();
|
DressUpState createState() => DressUpState();
|
||||||
|
|||||||
@ -1,31 +1,31 @@
|
|||||||
///
|
//
|
||||||
/// Spine Runtimes License Agreement
|
// Spine Runtimes License Agreement
|
||||||
/// Last updated April 5, 2025. Replaces all prior versions.
|
// Last updated April 5, 2025. Replaces all prior versions.
|
||||||
///
|
//
|
||||||
/// Copyright (c) 2013-2025, Esoteric Software LLC
|
// Copyright (c) 2013-2025, Esoteric Software LLC
|
||||||
///
|
//
|
||||||
/// Integration of the Spine Runtimes into software or otherwise creating
|
// Integration of the Spine Runtimes into software or otherwise creating
|
||||||
/// derivative works of the Spine Runtimes is permitted under the terms and
|
// derivative works of the Spine Runtimes is permitted under the terms and
|
||||||
/// conditions of Section 2 of the Spine Editor License Agreement:
|
// conditions of Section 2 of the Spine Editor License Agreement:
|
||||||
/// http://esotericsoftware.com/spine-editor-license
|
// http://esotericsoftware.com/spine-editor-license
|
||||||
///
|
//
|
||||||
/// Otherwise, it is permitted to integrate the Spine Runtimes into software
|
// Otherwise, it is permitted to integrate the Spine Runtimes into software
|
||||||
/// or otherwise create derivative works of the Spine Runtimes (collectively,
|
// or otherwise create derivative works of the Spine Runtimes (collectively,
|
||||||
/// "Products"), provided that each user of the Products must obtain their own
|
// "Products"), provided that each user of the Products must obtain their own
|
||||||
/// Spine Editor license and redistribution of the Products in any form must
|
// Spine Editor license and redistribution of the Products in any form must
|
||||||
/// include this license and copyright notice.
|
// include this license and copyright notice.
|
||||||
///
|
//
|
||||||
/// THE SPINE RUNTIMES ARE PROVIDED BY ESOTERIC SOFTWARE LLC "AS IS" AND ANY
|
// THE SPINE RUNTIMES ARE PROVIDED BY ESOTERIC SOFTWARE LLC "AS IS" AND ANY
|
||||||
/// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||||
/// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||||
/// DISCLAIMED. IN NO EVENT SHALL ESOTERIC SOFTWARE LLC BE LIABLE FOR ANY
|
// DISCLAIMED. IN NO EVENT SHALL ESOTERIC SOFTWARE LLC BE LIABLE FOR ANY
|
||||||
/// DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
// DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||||
/// (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES,
|
// (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES,
|
||||||
/// BUSINESS INTERRUPTION, OR LOSS OF USE, DATA, OR PROFITS) HOWEVER CAUSED AND
|
// BUSINESS INTERRUPTION, OR LOSS OF USE, DATA, OR PROFITS) HOWEVER CAUSED AND
|
||||||
/// ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
// ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||||
/// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||||
/// THE SPINE RUNTIMES, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
// THE SPINE RUNTIMES, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
///
|
//
|
||||||
|
|
||||||
import 'dart:math';
|
import 'dart:math';
|
||||||
|
|
||||||
|
|||||||
@ -1,37 +1,37 @@
|
|||||||
///
|
//
|
||||||
/// Spine Runtimes License Agreement
|
// Spine Runtimes License Agreement
|
||||||
/// Last updated April 5, 2025. Replaces all prior versions.
|
// Last updated April 5, 2025. Replaces all prior versions.
|
||||||
///
|
//
|
||||||
/// Copyright (c) 2013-2025, Esoteric Software LLC
|
// Copyright (c) 2013-2025, Esoteric Software LLC
|
||||||
///
|
//
|
||||||
/// Integration of the Spine Runtimes into software or otherwise creating
|
// Integration of the Spine Runtimes into software or otherwise creating
|
||||||
/// derivative works of the Spine Runtimes is permitted under the terms and
|
// derivative works of the Spine Runtimes is permitted under the terms and
|
||||||
/// conditions of Section 2 of the Spine Editor License Agreement:
|
// conditions of Section 2 of the Spine Editor License Agreement:
|
||||||
/// http://esotericsoftware.com/spine-editor-license
|
// http://esotericsoftware.com/spine-editor-license
|
||||||
///
|
//
|
||||||
/// Otherwise, it is permitted to integrate the Spine Runtimes into software
|
// Otherwise, it is permitted to integrate the Spine Runtimes into software
|
||||||
/// or otherwise create derivative works of the Spine Runtimes (collectively,
|
// or otherwise create derivative works of the Spine Runtimes (collectively,
|
||||||
/// "Products"), provided that each user of the Products must obtain their own
|
// "Products"), provided that each user of the Products must obtain their own
|
||||||
/// Spine Editor license and redistribution of the Products in any form must
|
// Spine Editor license and redistribution of the Products in any form must
|
||||||
/// include this license and copyright notice.
|
// include this license and copyright notice.
|
||||||
///
|
//
|
||||||
/// THE SPINE RUNTIMES ARE PROVIDED BY ESOTERIC SOFTWARE LLC "AS IS" AND ANY
|
// THE SPINE RUNTIMES ARE PROVIDED BY ESOTERIC SOFTWARE LLC "AS IS" AND ANY
|
||||||
/// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||||
/// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||||
/// DISCLAIMED. IN NO EVENT SHALL ESOTERIC SOFTWARE LLC BE LIABLE FOR ANY
|
// DISCLAIMED. IN NO EVENT SHALL ESOTERIC SOFTWARE LLC BE LIABLE FOR ANY
|
||||||
/// DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
// DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||||
/// (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES,
|
// (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES,
|
||||||
/// BUSINESS INTERRUPTION, OR LOSS OF USE, DATA, OR PROFITS) HOWEVER CAUSED AND
|
// BUSINESS INTERRUPTION, OR LOSS OF USE, DATA, OR PROFITS) HOWEVER CAUSED AND
|
||||||
/// ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
// ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||||
/// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||||
/// THE SPINE RUNTIMES, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
// THE SPINE RUNTIMES, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
///
|
//
|
||||||
|
|
||||||
import 'package:spine_flutter/spine_flutter.dart';
|
import 'package:spine_flutter/spine_flutter.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
|
|
||||||
class IkFollowing extends StatefulWidget {
|
class IkFollowing extends StatefulWidget {
|
||||||
const IkFollowing({Key? key}) : super(key: key);
|
const IkFollowing({super.key});
|
||||||
|
|
||||||
@override
|
@override
|
||||||
IkFollowingState createState() => IkFollowingState();
|
IkFollowingState createState() => IkFollowingState();
|
||||||
|
|||||||
@ -1,31 +1,31 @@
|
|||||||
///
|
//
|
||||||
/// Spine Runtimes License Agreement
|
// Spine Runtimes License Agreement
|
||||||
/// Last updated April 5, 2025. Replaces all prior versions.
|
// Last updated April 5, 2025. Replaces all prior versions.
|
||||||
///
|
//
|
||||||
/// Copyright (c) 2013-2025, Esoteric Software LLC
|
// Copyright (c) 2013-2025, Esoteric Software LLC
|
||||||
///
|
//
|
||||||
/// Integration of the Spine Runtimes into software or otherwise creating
|
// Integration of the Spine Runtimes into software or otherwise creating
|
||||||
/// derivative works of the Spine Runtimes is permitted under the terms and
|
// derivative works of the Spine Runtimes is permitted under the terms and
|
||||||
/// conditions of Section 2 of the Spine Editor License Agreement:
|
// conditions of Section 2 of the Spine Editor License Agreement:
|
||||||
/// http://esotericsoftware.com/spine-editor-license
|
// http://esotericsoftware.com/spine-editor-license
|
||||||
///
|
//
|
||||||
/// Otherwise, it is permitted to integrate the Spine Runtimes into software
|
// Otherwise, it is permitted to integrate the Spine Runtimes into software
|
||||||
/// or otherwise create derivative works of the Spine Runtimes (collectively,
|
// or otherwise create derivative works of the Spine Runtimes (collectively,
|
||||||
/// "Products"), provided that each user of the Products must obtain their own
|
// "Products"), provided that each user of the Products must obtain their own
|
||||||
/// Spine Editor license and redistribution of the Products in any form must
|
// Spine Editor license and redistribution of the Products in any form must
|
||||||
/// include this license and copyright notice.
|
// include this license and copyright notice.
|
||||||
///
|
//
|
||||||
/// THE SPINE RUNTIMES ARE PROVIDED BY ESOTERIC SOFTWARE LLC "AS IS" AND ANY
|
// THE SPINE RUNTIMES ARE PROVIDED BY ESOTERIC SOFTWARE LLC "AS IS" AND ANY
|
||||||
/// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||||
/// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||||
/// DISCLAIMED. IN NO EVENT SHALL ESOTERIC SOFTWARE LLC BE LIABLE FOR ANY
|
// DISCLAIMED. IN NO EVENT SHALL ESOTERIC SOFTWARE LLC BE LIABLE FOR ANY
|
||||||
/// DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
// DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||||
/// (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES,
|
// (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES,
|
||||||
/// BUSINESS INTERRUPTION, OR LOSS OF USE, DATA, OR PROFITS) HOWEVER CAUSED AND
|
// BUSINESS INTERRUPTION, OR LOSS OF USE, DATA, OR PROFITS) HOWEVER CAUSED AND
|
||||||
/// ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
// ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||||
/// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||||
/// THE SPINE RUNTIMES, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
// THE SPINE RUNTIMES, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
///
|
//
|
||||||
|
|
||||||
import 'package:spine_flutter/spine_flutter.dart';
|
import 'package:spine_flutter/spine_flutter.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
|
|||||||
@ -1,31 +1,31 @@
|
|||||||
///
|
//
|
||||||
/// Spine Runtimes License Agreement
|
// Spine Runtimes License Agreement
|
||||||
/// Last updated April 5, 2025. Replaces all prior versions.
|
// Last updated April 5, 2025. Replaces all prior versions.
|
||||||
///
|
//
|
||||||
/// Copyright (c) 2013-2025, Esoteric Software LLC
|
// Copyright (c) 2013-2025, Esoteric Software LLC
|
||||||
///
|
//
|
||||||
/// Integration of the Spine Runtimes into software or otherwise creating
|
// Integration of the Spine Runtimes into software or otherwise creating
|
||||||
/// derivative works of the Spine Runtimes is permitted under the terms and
|
// derivative works of the Spine Runtimes is permitted under the terms and
|
||||||
/// conditions of Section 2 of the Spine Editor License Agreement:
|
// conditions of Section 2 of the Spine Editor License Agreement:
|
||||||
/// http://esotericsoftware.com/spine-editor-license
|
// http://esotericsoftware.com/spine-editor-license
|
||||||
///
|
//
|
||||||
/// Otherwise, it is permitted to integrate the Spine Runtimes into software
|
// Otherwise, it is permitted to integrate the Spine Runtimes into software
|
||||||
/// or otherwise create derivative works of the Spine Runtimes (collectively,
|
// or otherwise create derivative works of the Spine Runtimes (collectively,
|
||||||
/// "Products"), provided that each user of the Products must obtain their own
|
// "Products"), provided that each user of the Products must obtain their own
|
||||||
/// Spine Editor license and redistribution of the Products in any form must
|
// Spine Editor license and redistribution of the Products in any form must
|
||||||
/// include this license and copyright notice.
|
// include this license and copyright notice.
|
||||||
///
|
//
|
||||||
/// THE SPINE RUNTIMES ARE PROVIDED BY ESOTERIC SOFTWARE LLC "AS IS" AND ANY
|
// THE SPINE RUNTIMES ARE PROVIDED BY ESOTERIC SOFTWARE LLC "AS IS" AND ANY
|
||||||
/// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||||
/// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||||
/// DISCLAIMED. IN NO EVENT SHALL ESOTERIC SOFTWARE LLC BE LIABLE FOR ANY
|
// DISCLAIMED. IN NO EVENT SHALL ESOTERIC SOFTWARE LLC BE LIABLE FOR ANY
|
||||||
/// DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
// DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||||
/// (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES,
|
// (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES,
|
||||||
/// BUSINESS INTERRUPTION, OR LOSS OF USE, DATA, OR PROFITS) HOWEVER CAUSED AND
|
// BUSINESS INTERRUPTION, OR LOSS OF USE, DATA, OR PROFITS) HOWEVER CAUSED AND
|
||||||
/// ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
// ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||||
/// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||||
/// THE SPINE RUNTIMES, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
// THE SPINE RUNTIMES, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
///
|
//
|
||||||
|
|
||||||
import 'package:spine_flutter/spine_flutter.dart';
|
import 'package:spine_flutter/spine_flutter.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
|
|||||||
@ -1,37 +1,37 @@
|
|||||||
///
|
//
|
||||||
/// Spine Runtimes License Agreement
|
// Spine Runtimes License Agreement
|
||||||
/// Last updated April 5, 2025. Replaces all prior versions.
|
// Last updated April 5, 2025. Replaces all prior versions.
|
||||||
///
|
//
|
||||||
/// Copyright (c) 2013-2025, Esoteric Software LLC
|
// Copyright (c) 2013-2025, Esoteric Software LLC
|
||||||
///
|
//
|
||||||
/// Integration of the Spine Runtimes into software or otherwise creating
|
// Integration of the Spine Runtimes into software or otherwise creating
|
||||||
/// derivative works of the Spine Runtimes is permitted under the terms and
|
// derivative works of the Spine Runtimes is permitted under the terms and
|
||||||
/// conditions of Section 2 of the Spine Editor License Agreement:
|
// conditions of Section 2 of the Spine Editor License Agreement:
|
||||||
/// http://esotericsoftware.com/spine-editor-license
|
// http://esotericsoftware.com/spine-editor-license
|
||||||
///
|
//
|
||||||
/// Otherwise, it is permitted to integrate the Spine Runtimes into software
|
// Otherwise, it is permitted to integrate the Spine Runtimes into software
|
||||||
/// or otherwise create derivative works of the Spine Runtimes (collectively,
|
// or otherwise create derivative works of the Spine Runtimes (collectively,
|
||||||
/// "Products"), provided that each user of the Products must obtain their own
|
// "Products"), provided that each user of the Products must obtain their own
|
||||||
/// Spine Editor license and redistribution of the Products in any form must
|
// Spine Editor license and redistribution of the Products in any form must
|
||||||
/// include this license and copyright notice.
|
// include this license and copyright notice.
|
||||||
///
|
//
|
||||||
/// THE SPINE RUNTIMES ARE PROVIDED BY ESOTERIC SOFTWARE LLC "AS IS" AND ANY
|
// THE SPINE RUNTIMES ARE PROVIDED BY ESOTERIC SOFTWARE LLC "AS IS" AND ANY
|
||||||
/// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||||
/// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||||
/// DISCLAIMED. IN NO EVENT SHALL ESOTERIC SOFTWARE LLC BE LIABLE FOR ANY
|
// DISCLAIMED. IN NO EVENT SHALL ESOTERIC SOFTWARE LLC BE LIABLE FOR ANY
|
||||||
/// DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
// DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||||
/// (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES,
|
// (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES,
|
||||||
/// BUSINESS INTERRUPTION, OR LOSS OF USE, DATA, OR PROFITS) HOWEVER CAUSED AND
|
// BUSINESS INTERRUPTION, OR LOSS OF USE, DATA, OR PROFITS) HOWEVER CAUSED AND
|
||||||
/// ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
// ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||||
/// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||||
/// THE SPINE RUNTIMES, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
// THE SPINE RUNTIMES, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
///
|
//
|
||||||
|
|
||||||
import 'package:spine_flutter/spine_flutter.dart';
|
import 'package:spine_flutter/spine_flutter.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
|
|
||||||
class PhysicsTest extends StatefulWidget {
|
class PhysicsTest extends StatefulWidget {
|
||||||
const PhysicsTest({Key? key}) : super(key: key);
|
const PhysicsTest({super.key});
|
||||||
|
|
||||||
@override
|
@override
|
||||||
PhysicsState createState() => PhysicsState();
|
PhysicsState createState() => PhysicsState();
|
||||||
|
|||||||
@ -1,37 +1,37 @@
|
|||||||
///
|
//
|
||||||
/// Spine Runtimes License Agreement
|
// Spine Runtimes License Agreement
|
||||||
/// Last updated April 5, 2025. Replaces all prior versions.
|
// Last updated April 5, 2025. Replaces all prior versions.
|
||||||
///
|
//
|
||||||
/// Copyright (c) 2013-2025, Esoteric Software LLC
|
// Copyright (c) 2013-2025, Esoteric Software LLC
|
||||||
///
|
//
|
||||||
/// Integration of the Spine Runtimes into software or otherwise creating
|
// Integration of the Spine Runtimes into software or otherwise creating
|
||||||
/// derivative works of the Spine Runtimes is permitted under the terms and
|
// derivative works of the Spine Runtimes is permitted under the terms and
|
||||||
/// conditions of Section 2 of the Spine Editor License Agreement:
|
// conditions of Section 2 of the Spine Editor License Agreement:
|
||||||
/// http://esotericsoftware.com/spine-editor-license
|
// http://esotericsoftware.com/spine-editor-license
|
||||||
///
|
//
|
||||||
/// Otherwise, it is permitted to integrate the Spine Runtimes into software
|
// Otherwise, it is permitted to integrate the Spine Runtimes into software
|
||||||
/// or otherwise create derivative works of the Spine Runtimes (collectively,
|
// or otherwise create derivative works of the Spine Runtimes (collectively,
|
||||||
/// "Products"), provided that each user of the Products must obtain their own
|
// "Products"), provided that each user of the Products must obtain their own
|
||||||
/// Spine Editor license and redistribution of the Products in any form must
|
// Spine Editor license and redistribution of the Products in any form must
|
||||||
/// include this license and copyright notice.
|
// include this license and copyright notice.
|
||||||
///
|
//
|
||||||
/// THE SPINE RUNTIMES ARE PROVIDED BY ESOTERIC SOFTWARE LLC "AS IS" AND ANY
|
// THE SPINE RUNTIMES ARE PROVIDED BY ESOTERIC SOFTWARE LLC "AS IS" AND ANY
|
||||||
/// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||||
/// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||||
/// DISCLAIMED. IN NO EVENT SHALL ESOTERIC SOFTWARE LLC BE LIABLE FOR ANY
|
// DISCLAIMED. IN NO EVENT SHALL ESOTERIC SOFTWARE LLC BE LIABLE FOR ANY
|
||||||
/// DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
// DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||||
/// (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES,
|
// (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES,
|
||||||
/// BUSINESS INTERRUPTION, OR LOSS OF USE, DATA, OR PROFITS) HOWEVER CAUSED AND
|
// BUSINESS INTERRUPTION, OR LOSS OF USE, DATA, OR PROFITS) HOWEVER CAUSED AND
|
||||||
/// ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
// ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||||
/// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||||
/// THE SPINE RUNTIMES, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
// THE SPINE RUNTIMES, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
///
|
//
|
||||||
|
|
||||||
import 'package:spine_flutter/spine_flutter.dart';
|
import 'package:spine_flutter/spine_flutter.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
|
|
||||||
class SimpleAnimation extends StatelessWidget {
|
class SimpleAnimation extends StatelessWidget {
|
||||||
const SimpleAnimation({Key? key}) : super(key: key);
|
const SimpleAnimation({super.key});
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
|
|||||||
@ -5,5 +5,6 @@
|
|||||||
import FlutterMacOS
|
import FlutterMacOS
|
||||||
import Foundation
|
import Foundation
|
||||||
|
|
||||||
|
|
||||||
func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {
|
func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {
|
||||||
}
|
}
|
||||||
|
|||||||
@ -28,7 +28,6 @@
|
|||||||
// *****************************************************************************/
|
// *****************************************************************************/
|
||||||
|
|
||||||
import 'package:universal_ffi/ffi.dart';
|
import 'package:universal_ffi/ffi.dart';
|
||||||
import 'package:universal_ffi/ffi_utils.dart';
|
|
||||||
import 'dart:collection';
|
import 'dart:collection';
|
||||||
|
|
||||||
/// Base class for native spine arrays.
|
/// Base class for native spine arrays.
|
||||||
|
|||||||
@ -1,30 +1,29 @@
|
|||||||
/// Spine Runtimes License Agreement
|
// Spine Runtimes License Agreement
|
||||||
/// Last updated April 5, 2025. Replaces all prior versions.
|
// Last updated April 5, 2025. Replaces all prior versions.
|
||||||
///
|
//
|
||||||
/// Copyright (c) 2013-2025, Esoteric Software LLC
|
// Copyright (c) 2013-2025, Esoteric Software LLC
|
||||||
///
|
//
|
||||||
/// Integration of the Spine Runtimes into software or otherwise creating
|
// Integration of the Spine Runtimes into software or otherwise creating
|
||||||
/// derivative works of the Spine Runtimes is permitted under the terms and
|
// derivative works of the Spine Runtimes is permitted under the terms and
|
||||||
/// conditions of Section 2 of the Spine Editor License Agreement:
|
// conditions of Section 2 of the Spine Editor License Agreement:
|
||||||
/// http://esotericsoftware.com/spine-editor-license
|
// http://esotericsoftware.com/spine-editor-license
|
||||||
///
|
//
|
||||||
/// Otherwise, it is permitted to integrate the Spine Runtimes into software
|
// Otherwise, it is permitted to integrate the Spine Runtimes into software
|
||||||
/// or otherwise create derivative works of the Spine Runtimes (collectively,
|
// or otherwise create derivative works of the Spine Runtimes (collectively,
|
||||||
/// "Products"), provided that each user of the Products must obtain their own
|
// "Products"), provided that each user of the Products must obtain their own
|
||||||
/// Spine Editor license and redistribution of the Products in any form must
|
// Spine Editor license and redistribution of the Products in any form must
|
||||||
/// include this license and copyright notice.
|
// include this license and copyright notice.
|
||||||
///
|
//
|
||||||
/// THE SPINE RUNTIMES ARE PROVIDED BY ESOTERIC SOFTWARE LLC "AS IS" AND ANY
|
// THE SPINE RUNTIMES ARE PROVIDED BY ESOTERIC SOFTWARE LLC "AS IS" AND ANY
|
||||||
/// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||||
/// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||||
/// DISCLAIMED. IN NO EVENT SHALL ESOTERIC SOFTWARE LLC BE LIABLE FOR ANY
|
// DISCLAIMED. IN NO EVENT SHALL ESOTERIC SOFTWARE LLC BE LIABLE FOR ANY
|
||||||
/// DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
// DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||||
/// (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES,
|
// (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES,
|
||||||
/// BUSINESS INTERRUPTION, OR LOSS OF USE, DATA, OR PROFITS) HOWEVER CAUSED AND
|
// BUSINESS INTERRUPTION, OR LOSS OF USE, DATA, OR PROFITS) HOWEVER CAUSED AND
|
||||||
/// ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
// ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||||
/// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||||
/// THE SPINE RUNTIMES, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
// THE SPINE RUNTIMES, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
library;
|
|
||||||
|
|
||||||
import 'dart:typed_data';
|
import 'dart:typed_data';
|
||||||
|
|
||||||
|
|||||||
@ -1,31 +1,31 @@
|
|||||||
///
|
//
|
||||||
/// Spine Runtimes License Agreement
|
// Spine Runtimes License Agreement
|
||||||
/// Last updated April 5, 2025. Replaces all prior versions.
|
// Last updated April 5, 2025. Replaces all prior versions.
|
||||||
///
|
//
|
||||||
/// Copyright (c) 2013-2025, Esoteric Software LLC
|
// Copyright (c) 2013-2025, Esoteric Software LLC
|
||||||
///
|
//
|
||||||
/// Integration of the Spine Runtimes into software or otherwise creating
|
// Integration of the Spine Runtimes into software or otherwise creating
|
||||||
/// derivative works of the Spine Runtimes is permitted under the terms and
|
// derivative works of the Spine Runtimes is permitted under the terms and
|
||||||
/// conditions of Section 2 of the Spine Editor License Agreement:
|
// conditions of Section 2 of the Spine Editor License Agreement:
|
||||||
/// http://esotericsoftware.com/spine-editor-license
|
// http://esotericsoftware.com/spine-editor-license
|
||||||
///
|
//
|
||||||
/// Otherwise, it is permitted to integrate the Spine Runtimes into software
|
// Otherwise, it is permitted to integrate the Spine Runtimes into software
|
||||||
/// or otherwise create derivative works of the Spine Runtimes (collectively,
|
// or otherwise create derivative works of the Spine Runtimes (collectively,
|
||||||
/// "Products"), provided that each user of the Products must obtain their own
|
// "Products"), provided that each user of the Products must obtain their own
|
||||||
/// Spine Editor license and redistribution of the Products in any form must
|
// Spine Editor license and redistribution of the Products in any form must
|
||||||
/// include this license and copyright notice.
|
// include this license and copyright notice.
|
||||||
///
|
//
|
||||||
/// THE SPINE RUNTIMES ARE PROVIDED BY ESOTERIC SOFTWARE LLC "AS IS" AND ANY
|
// THE SPINE RUNTIMES ARE PROVIDED BY ESOTERIC SOFTWARE LLC "AS IS" AND ANY
|
||||||
/// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||||
/// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||||
/// DISCLAIMED. IN NO EVENT SHALL ESOTERIC SOFTWARE LLC BE LIABLE FOR ANY
|
// DISCLAIMED. IN NO EVENT SHALL ESOTERIC SOFTWARE LLC BE LIABLE FOR ANY
|
||||||
/// DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
// DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||||
/// (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES,
|
// (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES,
|
||||||
/// BUSINESS INTERRUPTION, OR LOSS OF USE, DATA, OR PROFITS) HOWEVER CAUSED AND
|
// BUSINESS INTERRUPTION, OR LOSS OF USE, DATA, OR PROFITS) HOWEVER CAUSED AND
|
||||||
/// ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
// ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||||
/// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||||
/// THE SPINE RUNTIMES, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
// THE SPINE RUNTIMES, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
///
|
//
|
||||||
|
|
||||||
import 'dart:io';
|
import 'dart:io';
|
||||||
|
|
||||||
|
|||||||
@ -1,32 +1,31 @@
|
|||||||
///
|
//
|
||||||
/// Spine Runtimes License Agreement
|
// Spine Runtimes License Agreement
|
||||||
/// Last updated April 5, 2025. Replaces all prior versions.
|
// Last updated April 5, 2025. Replaces all prior versions.
|
||||||
///
|
//
|
||||||
/// Copyright (c) 2013-2025, Esoteric Software LLC
|
// Copyright (c) 2013-2025, Esoteric Software LLC
|
||||||
///
|
//
|
||||||
/// Integration of the Spine Runtimes into software or otherwise creating
|
// Integration of the Spine Runtimes into software or otherwise creating
|
||||||
/// derivative works of the Spine Runtimes is permitted under the terms and
|
// derivative works of the Spine Runtimes is permitted under the terms and
|
||||||
/// conditions of Section 2 of the Spine Editor License Agreement:
|
// conditions of Section 2 of the Spine Editor License Agreement:
|
||||||
/// http://esotericsoftware.com/spine-editor-license
|
// http://esotericsoftware.com/spine-editor-license
|
||||||
///
|
//
|
||||||
/// Otherwise, it is permitted to integrate the Spine Runtimes into software
|
// Otherwise, it is permitted to integrate the Spine Runtimes into software
|
||||||
/// or otherwise create derivative works of the Spine Runtimes (collectively,
|
// or otherwise create derivative works of the Spine Runtimes (collectively,
|
||||||
/// "Products"), provided that each user of the Products must obtain their own
|
// "Products"), provided that each user of the Products must obtain their own
|
||||||
/// Spine Editor license and redistribution of the Products in any form must
|
// Spine Editor license and redistribution of the Products in any form must
|
||||||
/// include this license and copyright notice.
|
// include this license and copyright notice.
|
||||||
///
|
//
|
||||||
/// THE SPINE RUNTIMES ARE PROVIDED BY ESOTERIC SOFTWARE LLC "AS IS" AND ANY
|
// THE SPINE RUNTIMES ARE PROVIDED BY ESOTERIC SOFTWARE LLC "AS IS" AND ANY
|
||||||
/// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||||
/// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||||
/// DISCLAIMED. IN NO EVENT SHALL ESOTERIC SOFTWARE LLC BE LIABLE FOR ANY
|
// DISCLAIMED. IN NO EVENT SHALL ESOTERIC SOFTWARE LLC BE LIABLE FOR ANY
|
||||||
/// DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
// DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||||
/// (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES,
|
// (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES,
|
||||||
/// BUSINESS INTERRUPTION, OR LOSS OF USE, DATA, OR PROFITS) HOWEVER CAUSED AND
|
// BUSINESS INTERRUPTION, OR LOSS OF USE, DATA, OR PROFITS) HOWEVER CAUSED AND
|
||||||
/// ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
// ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||||
/// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||||
/// THE SPINE RUNTIMES, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
// THE SPINE RUNTIMES, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
///
|
//
|
||||||
library;
|
|
||||||
|
|
||||||
import 'dart:math';
|
import 'dart:math';
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user