mirror of
https://github.com/JannisX11/blockbench.git
synced 2024-11-21 01:13:37 +08:00
Fix animations always playing when recording GIF
Fix missing translations on transform pivot tool
This commit is contained in:
parent
c22ca7848a
commit
4d58a2e900
@ -982,7 +982,6 @@ BARS.defineActions(function() {
|
||||
global: 'action.transform_space.global',
|
||||
parent: 'action.transform_space.parent',
|
||||
local: 'action.transform_space.local',
|
||||
normal: {condition: () => Mesh.selected.length, name: true}
|
||||
},
|
||||
onChange() {
|
||||
updateSelection();
|
||||
|
@ -561,7 +561,7 @@ const Screencam = {
|
||||
|
||||
vars.recording = true;
|
||||
vars.loop = setInterval(() => {
|
||||
if (vars.animation) {
|
||||
if (vars.animation && options.play) {
|
||||
Timeline.setTime(vars.interval*vars.frames / 1000);
|
||||
Animator.preview(true);
|
||||
}
|
||||
|
@ -1451,6 +1451,7 @@
|
||||
"action.transform_space.local": "Local",
|
||||
"action.transform_space.normal": "Normal",
|
||||
"action.rotation_space": "Rotation Space",
|
||||
"action.transform_pivot_space": "Pivot Transform Space",
|
||||
"action.scale": "Scale...",
|
||||
"action.scale.desc": "Scale the selected elements",
|
||||
"action.rotate_cw": "Rotate %0 +90",
|
||||
|
Loading…
Reference in New Issue
Block a user