Skip to content

Commit

Permalink
Merge branch 'master' of github.com:Tencent/puerts
Browse files Browse the repository at this point in the history
  • Loading branch information
chexiongsheng committed Aug 16, 2021
2 parents 589e619 + 468433f commit 57778f0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion doc/unreal/manual.md
Original file line number Diff line number Diff line change
Expand Up @@ -256,4 +256,4 @@ puerts同时支持V8和quickjs两种虚拟机,而V8目前有两套版本

希望使用8.4.371.19v8的话,先到[这里](https://github.com/Tencent/puerts/actions/workflows/build_v8.yml)下载编译好的V8,解压到Plugins/Puerts/ThirdParty下,然后把[JsEnv.Build.cs](../../unreal/Puerts/Source/JsEnv/JsEnv.Build.cs)的UseNewV8修改为true

希望使用quickjs的话,先到[这里](https://github.com/Tencent/puerts/actions/workflows//build_quickjs.yml)下载编译好的V8,解压到Plugins/Puerts/ThirdParty下,然后把[JsEnv.Build.cs](../../unreal/Puerts/Source/JsEnv/JsEnv.Build.cs)的UseQuickjs修改为true
希望使用quickjs的话,先到[这里](https://github.com/Tencent/puerts/actions/workflows//build_quickjs.yml)下载编译好的quickjs,解压到Plugins/Puerts/ThirdParty下,然后把[JsEnv.Build.cs](../../unreal/Puerts/Source/JsEnv/JsEnv.Build.cs)的UseQuickjs修改为true
2 changes: 1 addition & 1 deletion unreal/ReactUMG/TypeScript/react-umg/react-umg.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ let world: UE.World;
function deepEquals(x: any, y: any) {
if ( x === y ) return true;

if ( ! ( x instanceof Object ) || ! ( y instanceof Object ) ) return false;
if ( typeof x !== 'object' || x === null || typeof y !== 'object' || y === null ) return false;

for (var p in x) { // all x[p] in y
if (p == 'children' || p == 'Slot') continue;
Expand Down

0 comments on commit 57778f0

Please sign in to comment.