blockbench/src/index.js
JannisX11 40764f8234 Improved GIF recorder
Fix GIF flickering issue
2023-04-09 01:17:46 +02:00

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;