Team Create (���������� ��������������) + ���������� ���� + ������ 16/17/20/40/44/05 #34

Merged
min merged 69 commits from restore/all-tasks into main 2026-06-08 01:13:01 +00:00
Showing only changes of commit f8f0d976ef - Show all commits

View File

@ -2565,7 +2565,9 @@ export class BabylonScene {
const onKeyDown = (e) => {
if (isTypingTarget(e.target)) return;
this._codes.add(e.code);
// Клавиши с Ctrl/Cmd — это шорткаты (Ctrl+D/C/V/Z...), а не движение
// камеры. Не кладём их в _codes, иначе камера «уезжает» (баг Ctrl+D).
if (!e.ctrlKey && !e.metaKey) this._codes.add(e.code);
if (e.shiftKey) this._shiftDown = true;
// Маршрутизация game.onKey в Play-режиме
if (this._isPlaying && this.gameRuntime) {