Skip to content

Commit

Permalink
feat(flame_3d): Fix minor nits on flame_3d
Browse files Browse the repository at this point in the history
  • Loading branch information
luanpotter committed Apr 27, 2024
1 parent e434baf commit c86bd8d
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 1 deletion.
2 changes: 1 addition & 1 deletion packages/flame_3d/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ checkout a specific Flutter build. Thankfully we were able to simplify that proc
one-liner:

```sh
cd $(dirname $(which flutter)) && && git fetch && git checkout bcdd1b2c481bca0647beff690238efaae68ca5ac -q && echo "Engine commit: $(cat internal/engine.version)" && cd - >/dev/null
cd $(dirname $(which flutter)) && git fetch && git checkout bcdd1b2c481bca0647beff690238efaae68ca5ac -q && echo "Engine commit: $(cat internal/engine.version)" && cd - >/dev/null
```

This will check out the GIT repo of your Flutter installation to the specific commit that we require
Expand Down
43 changes: 43 additions & 0 deletions packages/flame_3d/example/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# Miscellaneous
*.class
*.log
*.pyc
*.swp
.DS_Store
.atom/
.buildlog/
.history
.svn/
migrate_working_dir/

# IntelliJ related
*.iml
*.ipr
*.iws
.idea/

# The .vscode folder contains launch configuration and tasks you configure in
# VS Code which you may wish to be included in version control, so this line
# is commented out by default.
#.vscode/

# Flutter/Dart/Pub related
**/doc/api/
**/ios/Flutter/.last_build_id
.dart_tool/
.flutter-plugins
.flutter-plugins-dependencies
.pub-cache/
.pub/
/build/

# Symbolication related
app.*.symbols

# Obfuscation related
app.*.map.json

# Android Studio will place build artifacts here
/android/app/debug
/android/app/profile
/android/app/release

0 comments on commit c86bd8d

Please sign in to comment.