Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1274)

Unified Diff: samples/particles.html

Issue 218002: Fixing bug #152 (pressing "T" doens't leave a trail in the particle samples o... Base URL: svn://chrome-svn/chrome/trunk/src/o3d/
Patch Set: Created 11 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « samples/o3djs/event.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: samples/particles.html
===================================================================
--- samples/particles.html (revision 26870)
+++ samples/particles.html (working copy)
@@ -198,12 +198,12 @@
function onKeyDown(event) {
event = event || window.event;
- g_keyDown[event.keyCode] = true;
+ g_keyDown[o3djs.event.getEventKeyChar(event)] = true;
}
function onKeyUp(event) {
event = event || window.event;
- g_keyDown[event.keyCode] = false;
+ g_keyDown[o3djs.event.getEventKeyChar(event)] = false;
}
function setupFlame() {
« no previous file with comments | « samples/o3djs/event.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698