mirror of
https://github.com/JannisX11/blockbench.git
synced 2024-12-09 04:50:29 +08:00
Fix keyframe interpolation issue
Fix project display name in window title
This commit is contained in:
parent
c76ed4ca3d
commit
3325691a61
@ -755,7 +755,7 @@ class GeneralAnimator {
|
||||
|
||||
if (value) {
|
||||
keyframe.extend(value);
|
||||
} else if (this.transform && this.fillValues) {
|
||||
} else if (this.fillValues) {
|
||||
this.fillValues(keyframe, value, true);
|
||||
}
|
||||
|
||||
|
@ -428,8 +428,8 @@ function resizeWindow(event) {
|
||||
|
||||
function setProjectTitle(title) {
|
||||
let window_title = 'Blockbench';
|
||||
if (title == undefined && Project.geometry_name) {
|
||||
title = Project.geometry_name
|
||||
if (title == undefined && Project.name) {
|
||||
title = Project.name
|
||||
}
|
||||
if (title) {
|
||||
Prop.file_name = Prop.file_name_alt = title
|
||||
@ -565,7 +565,12 @@ onVueSetup(function() {
|
||||
isMobile: Blockbench.isMobile,
|
||||
streamer_mode: settings.streamer_mode.value,
|
||||
selection_info: '',
|
||||
Format: null
|
||||
Format: null,
|
||||
modifier_keys: {
|
||||
ctrl: [],
|
||||
shift: [],
|
||||
alt: []
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
showContextMenu(event) {
|
||||
|
Loading…
Reference in New Issue
Block a user