mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-12-23 21:46:17 +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,
|
||||
"LibraryEmitters":[],
|
||||
"MetaData":{
|
||||
"IDEVersion":"2024.4.1.152",
|
||||
"IDEVersion":"2024.6.2.162",
|
||||
},
|
||||
"name":"PixelComposer",
|
||||
"resources":[
|
||||
|
|
|
@ -14,8 +14,13 @@ if !ready exit;
|
|||
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_text(cx, ly, "Pixel Composer");
|
||||
|
||||
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_text(cx, ly, "2024, MakhamDev");
|
||||
|
||||
|
|
|
@ -19,6 +19,8 @@ PEN_RIGHT_PRESS = false;
|
|||
PEN_RIGHT_RELEASE = false;
|
||||
|
||||
function __initPen() {
|
||||
if(OS == os_macosx) return;
|
||||
|
||||
var c = tabletstuff_get_init_error_code();
|
||||
if (c != tabletstuff_error_none)
|
||||
show_error("Unable to initialize TabletStuff. Code=" + tabletstuff_error_to_string(c), true);
|
||||
|
|
Loading…
Reference in a new issue