- Joined
- Mar 28, 2016
- Messages
- 1,623
- Reaction score
- 1,439
- First Language
- French
- Primarily Uses
- RMMV
Hi !
Someone would have an idea to how automatically start the FPS meter from chrome?
I'm talking about this option

I created a code that allows each startup to start the console.
but i didn't find the class to allow auto boot this FPS and GPU memory meter.!?
thanks for help
Someone would have an idea to how automatically start the FPS meter from chrome?
I'm talking about this option

I created a code that allows each startup to start the console.
but i didn't find the class to allow auto boot this FPS and GPU memory meter.!?
PHP:
//□▼↓▼□═══════════════════════════════════════════════════□□═══════════════════════════════════════════════════□↓↓↓
// AUTO SHOW DEBUG CONSOLE AT BOOT
if (Utils.isNwjs() && Utils.isOptionValid('test')) {
var _debugWindow = require('nw.gui').Window.get().showDevTools();
console.log('_debugWindow: ', _debugWindow);
_debugWindow.moveTo(0, 0);
_debugWindow.height=800;
_debugWindow.width=1000;
window.focus();
}
//□▲↑▲□═══════════════════════════════════════════════════□□═══════════════════════════════════════════════════□↑↑↑

