Skip to content

Commit

Permalink
Merge pull request #575 from RafaelBarbosatec/develop
Browse files Browse the repository at this point in the history
Version 3.13.1
  • Loading branch information
RafaelBarbosatec authored Jan 11, 2025
2 parents ae3dea6 + cd31463 commit 4e32b5d
Show file tree
Hide file tree
Showing 74 changed files with 1,009 additions and 529 deletions.
3 changes: 2 additions & 1 deletion .pubignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
example
media
media
games
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 3.13.1
- BarLifeComponent improvements
- rename extension method `directionThatPlayerIs` to `getDirectionToPlayer`, `getAngleFromPlayer` to `getAngleToPlayer`, `getInverseAngleFromPlayer` to `getInverseAngleToPlayer`.
- Back flame version to `1.18.0` :-(.

# 3.13.0
- Update Flame to `1.23.0`.

Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@ Test our online [DEMO](https://bonfire-engine.github.io/examples/bonfire-v3/) or

[bonfire-engine.github.io](https://bonfire-engine.github.io)

## Games

[Link](games)

If you build a game using Bonfire, you can open a PR to add your game to the [Games](games) section.

## Build for web

Use this command: `flutter build web --web-renderer=canvaskit`
Expand Down
14 changes: 3 additions & 11 deletions example/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -35,18 +35,10 @@ build
# Exceptions to above rules.
!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages

macos/Flutter/ephemeral/Flutter-Generated.xcconfig
macos/Flutter/ephemeral/flutter_export_environment.sh
macos/Pods/Local Podspecs/FlutterMacOS.podspec.json
macos/Pods/Local Podspecs/shared_preferences_macos.podspec.json
macos/Pods/Pods.xcodeproj/project.pbxproj
macos/Pods/Pods.xcodeproj/xcuserdata/rafaelbarbosa.xcuserdatad/xcschemes/FlutterMacOS.xcscheme
macos/Pods/Pods.xcodeproj/xcuserdata/rafaelbarbosa.xcuserdatad/xcschemes/Pods-Runner.xcscheme
macos/Pods/Pods.xcodeproj/xcuserdata/rafaelbarbosa.xcuserdatad/xcschemes/xcschememanagement.plist
macos/Pods/Target Support Files/FlutterMacOS/FlutterMacOS.debug.xcconfig
macos/Pods/Target Support Files/FlutterMacOS/FlutterMacOS.release.xcconfig


macos
linux
windows
android
ios
web
13 changes: 0 additions & 13 deletions example/android/.gitignore

This file was deleted.

70 changes: 0 additions & 70 deletions example/android/app/build.gradle

This file was deleted.

7 changes: 0 additions & 7 deletions example/android/app/src/debug/AndroidManifest.xml

This file was deleted.

36 changes: 0 additions & 36 deletions example/android/app/src/main/AndroidManifest.xml

This file was deleted.

This file was deleted.

This file was deleted.

12 changes: 0 additions & 12 deletions example/android/app/src/main/res/drawable/launch_background.xml

This file was deleted.

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
18 changes: 0 additions & 18 deletions example/android/app/src/main/res/values-night/styles.xml

This file was deleted.

18 changes: 0 additions & 18 deletions example/android/app/src/main/res/values/styles.xml

This file was deleted.

7 changes: 0 additions & 7 deletions example/android/app/src/profile/AndroidManifest.xml

This file was deleted.

18 changes: 0 additions & 18 deletions example/android/build.gradle

This file was deleted.

3 changes: 0 additions & 3 deletions example/android/gradle.properties

This file was deleted.

5 changes: 0 additions & 5 deletions example/android/gradle/wrapper/gradle-wrapper.properties

This file was deleted.

25 changes: 0 additions & 25 deletions example/android/settings.gradle

This file was deleted.

41 changes: 0 additions & 41 deletions example/ios/Podfile

This file was deleted.

7 changes: 6 additions & 1 deletion example/lib/shared/player/player_dialog.dart
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ class PlayerDialog {
target: first,
zoom: 2,
onComplete: () {
gameRef.pauseEngine();

TalkDialog.show(
gameRef.context,
[
Expand Down Expand Up @@ -62,7 +64,10 @@ class PlayerDialog {
personSayDirection: PersonSayDirection.RIGHT,
),
],
onClose: onClose,
onClose: () {
gameRef.resumeEngine();
onClose();
},
onFinish: () {
// ignore: avoid_print
print('finish talk');
Expand Down
Loading

0 comments on commit 4e32b5d

Please sign in to comment.