リファレンス 144 ドキュメント 7 サンプル 48
analyze 15 arduino 5 Artlet2D 11 basic 58 cbcom 2 comobj 20 d3module 29 demo 2 dotfw 11 game 34 gpmodule 2 hgimg3 43 hgimg4 38 HIDaspx 2 hsp3dish 29 hsp3imp 1 hsp3utf 4 hspcl 11 hspcv 5 hspd2d 4 hspda 7 hspdb 3 hspext 18 hspinet 17 hspprint 2 hspsock 5 hspsw 4 hsptv 4 hsptvapp 2 hspusbio 1 hspvoicevox 2 iron 46 misc 24 mmaudio 4 module 9 mucom88 6 new34 10 new35 16 new36 10 new37 3 obaq 17 pronama2d 6 pronama3d 5 sprite 20 SQLele 3 ssaver 1 tamane 10 win32_gen2 5

hspd2d

Path : sample\hspd2d
sample_01_hello.hsp
#include "hspd2d.hsp" d2d_init d2d_image_create 0, 400, 200 d2d_clear 32, 32, 64, 255 d2d_font "Yu Gothic UI", 28.0, 700, 0 d2d_color 255, 240, 160, 255 d2d_drawtext "Hello, hspd2d!", 20, 30, 0, 0 d2d_font "Yu Gothic UI", 16.0, 400, 0
sample\hspd2d\sample_01_hello.hsp - 2026/04/13
sample_02_emoji.hsp
#include "hspd2d.hsp" d2d_init d2d_image_create 0, 480, 240 d2d_clear 24, 24, 32, 255 普通のテキスト d2d_font "Yu Gothic UI", 18.0, 700, 0 d2d_color 220, 230, 255, 255 d2d_drawtext "hspd2d emoji test", 20, 20, 0, 0 色付き絵文字 (Segoe UI Emoji)
sample\hspd2d\sample_02_emoji.hsp - 2026/04/13
sample_gif_anim.hsp
#include "hspd2d.hsp" path = "anim.gif" exist path if strsize < 0 { mes "sample_gif_anim: not found: " + path mes "Place an animated GIF as 'anim.gif' in the current directory." end 1 } d2d_init d2d_gif_load path h = stat if h < 0 {
sample\hspd2d\sample_gif_anim.hsp - 2026/04/15
sample_svg.hsp
#include "hspd2d.hsp" d2d_init d2d_svg_load "test.svg", 256, 256 mes "d2d_svg_load stat = " + stat + " (expect -1 = stub)" svg_text = {"<svg xmlns='http: www.w3.org/2000/svg' width='100' height='100'><circle cx='50' cy='50' r='40'
sample\hspd2d\sample_svg.hsp - 2026/04/15