G3D icon indicating copy to clipboard operation
G3D copied to clipboard

A pure 3D render engine compatible with webgl, running both in browser and gcanvas.

Results 3 G3D issues
Sort by recently updated
recently updated
newest added

如何启动查看demo?

目前使用透明图片贴图,背景不透明。G3D是不支持透明贴图吗?

![image](https://user-images.githubusercontent.com/38022455/99042196-4f0e7800-25c7-11eb-91b7-4f448cacb24f.png) ``` g3d_test() { /*获取元素引用*/ var ganvas = this.$refs["gcanva"]; /*通过元素引用获取canvas对象*/ var canvaObj = enable(ganvas, { bridge: WeexBridge }); console.log(canvaObj) console.log(G3D.Engine); const engine = new G3D.Engine(canvaObj); console.log(engine) const scene = new...