File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 1515* [ Android] [ iOS] Exports require unitypackage ` fuw-6000.0.x ` or newer.
1616* Delete existing export folders like` android/unityLibrary ` or ` ios/UnityLibrary ` when you upgrade your Unity version.
1717
18- ## 2022.3.0 (master branch)
18+ ## 2022.3.0
1919* [ Web] Switch to ` package:web ` to support WebAssembly (WASM).
2020* Updates minimum supported SDK version to Flutter 3.16/Dart 3.2.
2121* Fix lint warnings to improve static analysis.
Original file line number Diff line number Diff line change @@ -256,7 +256,8 @@ class WebUnityWidgetController extends UnityWidgetController {
256256 .querySelector ('flt-platform-view' )
257257 ? .querySelector ('iframe' );
258258
259- if (frame != null && _isJsObjectOfType (frame, 'HTMLIFrameElement' )) {
259+ final JSAny ? jsFrame = frame.jsify ();
260+ if (frame != null && _isJsObjectOfType (jsFrame, 'HTMLIFrameElement' )) {
260261 (frame as web.HTMLIFrameElement ).focus ();
261262 }
262263 }
Original file line number Diff line number Diff line change 11name : flutter_unity_widget_2
22description : Flutter Unity 3D widget for embedding Unity game scenes in Flutter. An updated fork of flutter_unity_widget.
3- version : 6000.1.0
3+ version : 6000.1.0+1
44# authors:
55# - Rex Raphael <rex.raphael@outlook.com>
66# - Thomas Stockx <thomas@stockxit.com>
77# - Kris Pypen <kris.pypen@gmail.com>
8- repository : https://github.com/timbotimbo/flutter-unity-view-widget/tree/flutter_unity_widget_2
8+ repository : https://github.com/timbotimbo/flutter-unity-view-widget
99issue_tracker : https://github.com/juicycleff/flutter-unity-view-widget/issues
1010
1111environment :
You can’t perform that action at this time.
0 commit comments