Skip to content

Commit bc29c0d

Browse files
committed
Release flutter_scene 0.19.0
1 parent d90b9d8 commit bc29c0d

11 files changed

Lines changed: 273 additions & 16 deletions

File tree

examples/flutter_app/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ dependencies:
1313
flutter:
1414
sdk: flutter
1515
flutter_gpu_shaders: ^0.5.1
16-
flutter_scene: ^0.18.0
16+
flutter_scene: ^0.19.0
1717
# Native Rapier physics backend, used by the Physics example. Pulls
1818
# in a Rust build hook, so building this app now requires cargo.
1919
flutter_scene_rapier:

examples/flutter_gpu_shim_smoke/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ dependencies:
1515
# The GPU shim now lives inside flutter_scene (lib/src/gpu). This dev-only
1616
# smoke app reaches into that internal library directly; implementation_imports
1717
# is disabled in analysis_options.yaml for that reason.
18-
flutter_scene: ^0.18.0
18+
flutter_scene: ^0.19.0
1919
flat_buffers: ^25.9.23
2020
vector_math: ^2.1.4
2121
web: ^1.1.0

examples/smoke_render/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ dependencies:
1313
flutter:
1414
sdk: flutter
1515
flutter_gpu_shaders: ^0.5.1
16-
flutter_scene: ^0.18.0
16+
flutter_scene: ^0.19.0
1717
hooks: ^2.0.0
1818
vector_math: ^2.1.4
1919

packages/flutter_scene/CHANGELOG.md

Lines changed: 263 additions & 6 deletions
Large diffs are not rendered by default.

packages/flutter_scene/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
- On native platforms this package requires [Impeller](https://docs.flutter.dev/perf/impeller#availability) to be enabled. On the web it runs on a built-in WebGL2 backend instead.
4444
- This package uses the experimental [Dart "Native Assets"](https://github.com/dart-lang/sdk/issues/50565) feature to automate some build tasks.
4545
- Zero-manifest `.fmat` material builds use the experimental Dart DataAssets feature. On supported Flutter master builds, enable it with `flutter config --enable-dart-data-assets`.
46-
- Given the reliance on non-production features, Flutter Scene requires the Flutter [master channel](https://docs.flutter.dev/release/upgrade#other-channels). Version 0.18.0 needs a master build from 2026-06-09 or later, which is when render-to-mip-level Flutter GPU support landed (flutter/flutter#187685). The `flutter` lower bound in `pubspec.yaml` is set to the latest stable instead (so pub.dev can resolve and score the package), which is looser than the real requirement, so a recent master is what you actually want.
46+
- Given the reliance on non-production features, Flutter Scene requires the Flutter [master channel](https://docs.flutter.dev/release/upgrade#other-channels). Version 0.19.0 needs a master build from 2026-06-09 or later, which is when render-to-mip-level Flutter GPU support landed (flutter/flutter#187685). The `flutter` lower bound in `pubspec.yaml` is set to the latest stable instead (so pub.dev can resolve and score the package), which is looser than the real requirement, so a recent master is what you actually want.
4747

4848
## Features
4949

packages/flutter_scene/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: flutter_scene
22
description: A flexible realtime 3D engine for Flutter games and apps, with glTF models, physics, skeletal animation, and PBR lighting.
3-
version: 0.18.1
3+
version: 0.19.0
44
repository: https://github.com/bdero/flutter_scene
55
homepage: https://github.com/bdero/flutter_scene
66
topics:

packages/flutter_scene_box3d/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ dependencies:
2828
box3d: ^0.1.0
2929
flutter:
3030
sdk: flutter
31-
flutter_scene: ^0.18.0
31+
flutter_scene: ^0.19.0
3232
vector_math: ^2.1.4
3333

3434
dev_dependencies:

packages/flutter_scene_editor/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ dependencies:
1616
flutter:
1717
sdk: flutter
1818
file_selector: ^1.0.0
19-
flutter_scene: ^0.18.0
19+
flutter_scene: ^0.19.0
2020
flutter_scene_editor_core:
2121
path: ../flutter_scene_editor_core
2222
flutter_scene_mcp:

packages/flutter_scene_editor_core/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ environment:
1212
sdk: ^3.10.0
1313

1414
dependencies:
15-
flutter_scene: ^0.18.0
15+
flutter_scene: ^0.19.0
1616
meta: ^1.15.0
1717
vector_math: ^2.1.4
1818

packages/flutter_scene_mcp/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ environment:
1414

1515
dependencies:
1616
dart_mcp: ^0.5.1
17-
flutter_scene: ^0.18.0
17+
flutter_scene: ^0.19.0
1818
flutter_scene_editor_core:
1919
path: ../flutter_scene_editor_core
2020
meta: ^1.15.0

0 commit comments

Comments
 (0)