diff options
author | Juan Linietsky <juan@godotengine.org> | 2018-05-18 12:37:18 -0300 |
---|---|---|
committer | Juan Linietsky <juan@godotengine.org> | 2018-05-18 12:37:18 -0300 |
commit | 9b5275b135ad8887b402628084829f25dd1f9c1a (patch) | |
tree | 2cf69f81a026e2c0621d0e1cb7a541b1ace34cb6 /editor | |
parent | 5e997c9483e7409e67f3430b667b2982f75b2418 (diff) |
-Hid texture flags by default so they dont take so much space
-make curve texture preview not so large, so its easier to embed the editor
Diffstat (limited to 'editor')
-rw-r--r-- | editor/plugins/curve_editor_plugin.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/plugins/curve_editor_plugin.cpp b/editor/plugins/curve_editor_plugin.cpp index 29720b3cdb..49c54ad67d 100644 --- a/editor/plugins/curve_editor_plugin.cpp +++ b/editor/plugins/curve_editor_plugin.cpp @@ -794,13 +794,13 @@ Ref<Texture> CurvePreviewGenerator::generate(const Ref<Resource> &p_from) { img_ref.instance(); Image &im = **img_ref; - im.create(thumbnail_size, thumbnail_size, 0, Image::FORMAT_RGBA8); + im.create(thumbnail_size, thumbnail_size / 2, 0, Image::FORMAT_RGBA8); im.lock(); Color bg_color(0.1, 0.1, 0.1, 1.0); for (int i = 0; i < thumbnail_size; i++) { - for (int j = 0; j < thumbnail_size; j++) { + for (int j = 0; j < thumbnail_size / 2; j++) { im.set_pixel(i, j, bg_color); } } |