mirror of
https://github.com/JannisX11/blockbench.git
synced 2024-11-27 04:21:46 +08:00
40764f8234
Fix GIF flickering issue
27 lines
613 B
JavaScript
27 lines
613 B
JavaScript
import './languages'
|
|
|
|
import blender from './../keymaps/blender.bbkeymap';
|
|
import cinema4d from './../keymaps/cinema4d.bbkeymap';
|
|
import maya from './../keymaps/maya.bbkeymap';
|
|
|
|
window.KeymapPresets = {
|
|
blender,
|
|
cinema4d,
|
|
maya,
|
|
}
|
|
|
|
import DarkTheme from './../themes/dark.bbtheme'
|
|
import LightTheme from './../themes/light.bbtheme'
|
|
import ContrastTheme from './../themes/contrast.bbtheme'
|
|
|
|
window.CustomThemeOptions = [
|
|
DarkTheme,
|
|
LightTheme,
|
|
ContrastTheme
|
|
]
|
|
|
|
import { GIFEncoder, quantize, applyPalette } from 'gifenc'
|
|
window.GIFEnc = { GIFEncoder, quantize, applyPalette };
|
|
|
|
window.appVersion = BBVERSION;
|