finscn
finscn
I've updated my benchmark for 3 active js Physics Engines. This benchmark is very very simple and basic . But I think it has already could tell us something ....
http://fatidol.com/phy-benchmark/planck-test.html it's worse than the old version
I've updated my benchmark for 3 active js Physics Engines. This benchmark is very very simple and basic . But I think it has already could tell us something ....
I found that the WebGL & WebAudio are supported very well in iOS10. The Cordova maybe good enough for iOS ( and with crosswalk for android). Does it mean that...
Hi , @phoboslab , In Ejecjta , the below "instanceof" checking can't pass : ``` img instanceof HTMLImageElement canvas instanceof HTMLCanvasElement video instanceof HTMLVideoElement audio instanceof HTMLAudioElement ``` In PIXI.js...
Return Error localizedDescription , not boolean. It's more useful then true or false. And if no error , return null (like Node Callback Style)
Some 3rd lib about websocket used "WebScoket.xxxxx" to check ws's status.
When reason== nil, will take an error about EXC_BAD_ACCESS
set TCP_NODELAY to SocketRocket. TCP_NODELAY (Disable Nagle's algorythm) is the default status of WebSocket in most Browser. It could improve the performance of websocket (just a little, but important for...
Users could set gamepad.allowsRotation by themselves as same as exitOnMenuPress. example: ``` var gamepads = navigator.getGamepads(); var gamepad = gamepads[1] || gamepads[0]; if (!gamepad) { // console.log('No Gamepads connected'); return;...