ncsoft / Unreal.js

Unreal.js: Javascript runtime built for UnrealEngine

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

What is this principle?

LiXiaoRan opened this issue · comments

What is this principle? How does JS execute unreal logic?C++ is base?

Uses Unreal reflection system to expose nearly whole C++/blueprint API to Javascript. The Javascript is running on an embedded V8 instance (C++ lib). V8 is incredibly fast, around 100x faster than blueprint in tight loops (unless nativized).