diff --git a/minecraftcodex/studio/static/lib/flatui/less/flat-ui.less b/minecraftcodex/studio/static/lib/flatui/less/flat-ui.less index b8904f0..91587ce 100755 --- a/minecraftcodex/studio/static/lib/flatui/less/flat-ui.less +++ b/minecraftcodex/studio/static/lib/flatui/less/flat-ui.less @@ -2,7 +2,7 @@ // Loading custom fonts //@import url("https://fonts.googleapis.com/css?family=Lato:400,700,700italic,900,400italic,300"); -//@import "icon-font"; +@import "icon-font"; // Loading config with variables (changing them leads to changing a color scheme) @import "config"; diff --git a/minecraftcodex/studio/templates/studio/main.html b/minecraftcodex/studio/templates/studio/main.html index 40ff9e3..591669b 100644 --- a/minecraftcodex/studio/templates/studio/main.html +++ b/minecraftcodex/studio/templates/studio/main.html @@ -34,11 +34,11 @@ window.onload = function() { // Texture search $('.texture-list .item').hover(function() { - $('div.texture-name').html($(this).attr('data-name')) + $('.texture-name').html($(this).attr('data-name')) }) $('div.texture-list').on('mouseout', function() { - $('div.texture-name').html('') + $('.texture-name').html('Mouseover a texture') }) $('input.texture-search').on('keyup', function(event) { @@ -59,7 +59,7 @@ window.onload = function() { }) $("select.flatui").selectpicker({style: 'btn-primary', menuStyle: 'dropdown-inverse'}); - $("select.camera-type").change(function() { + $('input[name="cameraType"]').change(function() { mcstudio.onCameraChange($(this).val()) }) $("select.camera-type").change() @@ -143,7 +143,7 @@ window.onload = function() { {% endfor %} -
+
Mouseover a texture
@@ -160,11 +160,22 @@ window.onload = function() {

- Type: - +
+
+ + + Perspective + +
+
+ + + Orthograpic + +
+