GithubHelp home page GithubHelp logo

isabella232 / babylonreactnative Goto Github PK

View Code? Open in Web Editor NEW

This project forked from babylonjs/babylonreactnative

0.0 0.0 0.0 7.35 MB

Build React Native applications with the power of Babylon Native

License: MIT License

JavaScript 17.41% TypeScript 14.13% Starlark 1.47% Java 17.36% Objective-C 7.62% Ruby 2.15% CMake 3.48% C++ 28.68% Objective-C++ 3.89% C 0.93% Batchfile 0.26% PowerShell 2.62%

babylonreactnative's Introduction

Babylon React Native

This project provides Babylon Native integration into React Native.

npm version BabylonNative master branch update

Current Status

Babylon React Native is in the early phase of its development, and has the following limitations:

  1. Android and iOS support only - support for Windows is planned, but the timeline is currently unknown.
  2. Touch input only - mouse, keyboard, and controllers are not yet supported.
  3. Single view only - multiple views are not yet supported (only a single view can be displayed).

It is also worth noting that Babylon React Native relies heavily on newer React Native constructs including JSI to get the performance characteristics required for real time rendering. JSI allows for direct synchronous communication between native code and JavaScript code, but is incompatible with "remote debugging." If you need to debug your JavaScript code that uses Babylon React Native, you should enable Hermes and use "direct debugging" (e.g. chrome://inspect or edge://inspect). See the React Native documentation for more info.

Usage

See the package usage for installation instructions and/or the Playground app's App.tsx for example usage.

Contributing

This quick overview will help you get started developing in the Babylon React Native repository. We support development on Windows and MacOS, but assume the use of PowerShell in the instructions below (unless otherwise noted).

If you are interested in making contributions, be sure to also review CONTRIBUTING.md.

Preparing a new Repo

Required Tools: git, Node.js (16.13.0+)

Step 1 for all development environments and targets is to clone the repo. Use a git-enabled terminal to follow the steps below.

git clone https://github.com/BabylonJS/BabylonReactNative

Then, a React Native target must be chosen. For a React-Native 0.64 build:

cd Apps/Playground
npm ci
npm run select 0.64

Selecting the React Native install will also install all NPM packages and its dependencies for the Playground sample/test app.

This will also automatically do the following to prepare your repo for development:

  • Update git submodules to fetch Babylon Native and its dependencies
  • [MacOS only] Run CMake to generate the iOS XCode project for Babylon React Native
  • [MacOS only] Run pod install to install cocoa pod depdendencies

After merging upstream changes in the future, you will need to either run npm install again, or run individual commands for the above operations (e.g. git submodule update --init --submodule / npm run iosCMake / pod install).

Configuring a Mac Dev Environment

Required Tools: Android Studio (including NDK 21.3.6528147), CMake, Ninja, JDK 13

  • The PATH environment variable must include the path to adb (typically ~/Library/Android/sdk/platform-tools/).
  • The PATH environment variable must include the path to Ninja, or Ninja must be installed via a package manager.
  • The ANDROID_HOME environment variable must be defined (typically ~/Library/Android/sdk).
  • The ANDROID_SDK_ROOT environment variable must be defined (typically ~/Library/Android/sdk).
  • The ANDROID_AVD_HOME environment variable must be defined if you plan to use Android emulators (typically ~/.android/avd).
  • The JAVA_HOME environment variable must be defined to point to the correct version of the JDK (typically /usr/libexec/java_home -v 13).

You can typically configure your environment by editing ~/.zshrc and adding the following:

export PATH=$PATH:~/Library/Android/sdk/platform-tools/
export PATH=$PATH:~/path_to_ninja_binary/ # Only for manual installations of Ninja (not package manager-based installations).
export ANDROID_HOME=~/Library/Android/sdk
export ANDROID_SDK_ROOT=~/Library/Android/sdk
export ANDROID_AVD_HOME=~/.android/avd
export JAVA_HOME=$(/usr/libexec/java_home -v 13)

Configuring a Windows Dev Environment

Required Tools: Android Studio (including NDK 21.3.6528147), CMake, Ninja, Visual Studio 2019

  • The PATH environment variable must include the path to adb (typically %LOCALAPPDATA%/Android/sdk/platform-tools/).
  • The PATH environment variable must include the path to Ninja, or Ninja must be installed via a package manager.
  • The ANDROID_HOME environment variable must be defined (typically %LOCALAPPDATA%/Android/sdk).
  • The JAVA_HOME environment variable must be defined (typically %ProgramFiles%/Android/Android Studio/jre).

Configuring a Linux Dev Environment

Required Tools: Android Studio (including NDK 21.3.6528147)

With Ubuntu, you can install needed packages by this command:

sudo apt-get install adb ninja-build openjdk-14-jdk android-sdk

Update PATH with this commands:

export ANDROID_HOME=$HOME/Android/Sdk
export PATH=$PATH:$ANDROID_HOME/emulator
export PATH=$PATH:$ANDROID_HOME/tools
export PATH=$PATH:$ANDROID_HOME/tools/bin
export PATH=$PATH:$ANDROID_HOME/platform-tools

Troubleshootings:

  • If the Metro server is not started with npm run android , you can start it manually by running npm run start in a terminal.
  • Android Studio is the tool of choice for downloading the various versions of NDK.
  • If something goes wrong with the build npm run android --verbose can give some hints.
  • If the emulator is not launched by the build, you can run ~/Android/Sdk/emulator/emulator @name_of_your_image.

Building and Running the Playground App

On either Mac or Windows, NPM is used to build and run the Playground sample/test app from the command line. Open a command prompt at the root of the BabylonReactNative repo if you don't have one already open.

Android

cd Apps/Playground/Playground
npm run android

After having run the above commands, you can also open Apps/Playground/android in Android Studio and run the app from there.

iOS

iOS can only be built on a Mac.

cd Apps/Playground/Playground
npm run ios

After having run the above commands, you can also open Apps/Playground/ios/Playground.xcworkspace in XCode and run the app from there.

Universal Windows Platform (UWP)

UWP can only be built on a PC. CMake must be manually run to generate project definitions for BabylonNative dependencies.

  1. Run npm ci in Apps\Playground\Playground.
  2. Run npm ci in Package.
  3. Run npx gulp buildUWP in Package. This command will run cmake and build BabylonNative dependencies. It may take a while to complete.
  4. In Apps\Playground\Playground, run npm run windows.

Note: if you experience build issues for Apps\Playground related to autolinking, try running npx react-native autolink-windows in the Apps\Playground\Playground folder. You can also run npm run windows-verbose to view logging.

Testing in the Playground App

When making local changes, the following manual test steps should be performed within the Playground app to prevent regressions. These should be checked on Android and iOS, and ideally in both debug and release, but minimally in release.

  1. Basic rendering - launch the Playground app and make sure the model loaded and is rendering at 60fps.
  2. Animation - make sure the loaded model is animating.
  3. Input handling - swipe across the display and make sure the model rotates around the y-axis.
  4. Display rotation - rotate the device 90 degrees and make sure the view rotates and renders correctly.
  5. View replacement - tap the Toggle EngineView button twice to replace the render target view.
  6. Engine dispose - tap the Toggle EngineScreen button twice to dispose and re-instantiate the Babylon engine.
  7. Suspend/resume - switch to a different app and then back to the Playground and make sure it is still rendering correctly.
  8. Fast refresh (debug only) - save the App.tsx file to trigger a fast refresh.
  9. Dev mode reload (debug only) - in the Metro server console window, press the R key on the keyboard to reload the JS engine and make sure rendering restarts successfully.
  10. XR mode - tap the Start XR button and make sure XR mode is working.
  11. XR display rotation - rotate the device 90 degrees and make sure the view rotates and renders correctly.
  12. XR view replacement - tap the Toggle EngineView button twice to replace the render target view.
  13. XR suspend/resume - switch to a different app and then back to the Playground and make sure it is still rendering correctly.

Building the NPM Package

If you want to test using a local build of the NPM package with your own React Native app, you can do so with a gulp command on a Mac (this requires a Mac as it builds binaries for both iOS and Android).

cd Package
npm install
gulp pack

The NPM package will be built into the Package directory where the gulp command was run. Once the local NPM package has been built, it can be installed into a project using npm.

cd <directory of your React Native app>
npm install <root directory of your BabylonReactNative clone>/Package/Assembled/babylonjs-react-native-0.0.1.tgz

If you wish to test the locally-built NPM packages with the apps in the PackageTest directory, before running npm install be sure to run:

cd Apps\PackageTest\<package test app version>

npm uninstall @babylon/react-native

# If you're also updating the react-native-windows package:
npm uninstall @bablyon/react-native-windows

This will allow the local package dependencies to update without the package-lock.json file worrying about new content without a new version number. You can then run the above command to install the locally-built NPM modules located in Package/Assembled.

Debugging in Context

If you want to consume @babylonjs/react-native as source in your React Native app (for debugging or for iterating on the code when making a contribution), you can install the package source directory as an npm package.

cd <directory of your React Native app>
npm install <root directory of your BabylonReactNative clone>/Modules/@babylonjs/react-native
cd ios
pod install

This will create a symbolic link in your node_modules directory to the @babylonjs/react-native source directory. However, this also requires a custom metro.config.js as the Metro bundler does not support symbolic links by default. See the GitHub issue on this for a solution.

For iOS the XCode project needs to be generated with CMake as described above and added to your xcworkspace.

Security

If you believe you have found a security vulnerability in this repository, please see SECURITY.md.

Known Issues

We have seen issues when using npm 7+ to install local symbolic linked npm packages. For this reason, we suggest using npm 6.13 for BabylonReactNative development. To install npm 6.13, run the following command:

npm install -g [email protected]

babylonreactnative's People

Contributors

alex-msft avatar andrewmo2014 avatar bghgary avatar cedricguillemet avatar chrisfromwork avatar coprez avatar daenash avatar dependabot[bot] avatar drigax avatar jp833 avatar polygonalsun avatar rarattay avatar rgerd avatar ronnieashlock avatar ryantrem avatar sebavan avatar syntheticmagus avatar tymlipari avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.