mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2025-01-11 23:06:51 +01:00
about page build info
This commit is contained in:
parent
ce25d7e49d
commit
c85818dad5
3 changed files with 9 additions and 2 deletions
|
@ -679,7 +679,7 @@
|
||||||
"isEcma":false,
|
"isEcma":false,
|
||||||
"LibraryEmitters":[],
|
"LibraryEmitters":[],
|
||||||
"MetaData":{
|
"MetaData":{
|
||||||
"IDEVersion":"2024.4.1.152",
|
"IDEVersion":"2024.6.2.162",
|
||||||
},
|
},
|
||||||
"name":"PixelComposer",
|
"name":"PixelComposer",
|
||||||
"resources":[
|
"resources":[
|
||||||
|
|
|
@ -14,8 +14,13 @@ if !ready exit;
|
||||||
draw_sprite_ui_uniform(THEME.icon_64, 0, cx, dialog_y + ui(56));
|
draw_sprite_ui_uniform(THEME.icon_64, 0, cx, dialog_y + ui(56));
|
||||||
draw_set_text(_f_ico_h5, fa_center, fa_top, COLORS._main_text_accent);
|
draw_set_text(_f_ico_h5, fa_center, fa_top, COLORS._main_text_accent);
|
||||||
draw_text(cx, ly, "Pixel Composer");
|
draw_text(cx, ly, "Pixel Composer");
|
||||||
|
|
||||||
ly += string_height("l");
|
ly += string_height("l");
|
||||||
|
|
||||||
|
draw_set_font(f_p3);
|
||||||
|
draw_set_color(COLORS._main_text_sub);
|
||||||
|
draw_text(cx, ly - ui(4), code_is_compiled()? "Native build" : "VM build");
|
||||||
|
ly += string_height("l");
|
||||||
|
|
||||||
draw_set_text(f_p0, fa_center, fa_top, COLORS._main_text_sub);
|
draw_set_text(f_p0, fa_center, fa_top, COLORS._main_text_sub);
|
||||||
draw_text(cx, ly, "2024, MakhamDev");
|
draw_text(cx, ly, "2024, MakhamDev");
|
||||||
|
|
||||||
|
|
|
@ -19,6 +19,8 @@ PEN_RIGHT_PRESS = false;
|
||||||
PEN_RIGHT_RELEASE = false;
|
PEN_RIGHT_RELEASE = false;
|
||||||
|
|
||||||
function __initPen() {
|
function __initPen() {
|
||||||
|
if(OS == os_macosx) return;
|
||||||
|
|
||||||
var c = tabletstuff_get_init_error_code();
|
var c = tabletstuff_get_init_error_code();
|
||||||
if (c != tabletstuff_error_none)
|
if (c != tabletstuff_error_none)
|
||||||
show_error("Unable to initialize TabletStuff. Code=" + tabletstuff_error_to_string(c), true);
|
show_error("Unable to initialize TabletStuff. Code=" + tabletstuff_error_to_string(c), true);
|
||||||
|
|
Loading…
Reference in a new issue