这是我的一些React.JS代码:
componentDidMount: function componentDidMount() {
var width = this.props.appWidth;
var height = this.props.appHeight;
this._renderer = new PIXI.WebGLRenderer(width, height, {
transparent: true,
resolution: window.devicePixelRatio,
antialias: true,
view: React.findDOMNode(this)
});
},
当我尝试实例化此PIXI.WebGLRenderer时出现错误,原因如下:
如何将视图适当地添加到DOM中,以便我的WebGLRenderer可以在屏幕上实际呈现对象?