JSBinding / Gen Bindings

Classes in JSBindingSettings.classes array will be exported to JavaScript.

 

There are already many classes (most of them are from UnityEngine.dll) in that array, you have to add your own classes, and maintain this array.

 1     public static Type[] classes = new Type[]
 2     {
 3         /*
 4          * Classes to export for demo
 5          * Add classes here to export
 6          */
 7         
 8         typeof(UnityEngine.WheelCollider),
 9         typeof(UnityEngine.PhysicMaterial),
10         typeof(UnityEngine.Collision),
11         typeof(UnityEngine.ControllerColliderHit),
12         typeof(UnityEngine.CharacterController),
13 
14         //....
15     }

 

Add to JSBindingSetting.enums to export enums:

public static Type[] enums = new Type[]
{
    typeof(KeyCode),

    // add here
};

 

 

Click this menu to export those classes:

Assets | JavaScript | Gen Bindings

 

 

NOTE: This menu must be executed when swiching to a different platform in Build Settings dialog!

 

after finished, two parts of code will be generated:

1) C# files in folder Assets/JSBinding/Generated/

 

2) JavaScript files in folder StreamingAssets/JavaScript/Lib/Gen.javascript (all in one)

 

back to JSBinding / Home

posted on 2015-06-20 20:14  AnswerWinner  阅读(473)  评论(0编辑  收藏  举报

导航