タグ:「dxlib」がつけられたコード

「dxlib」のタグがつけられたコード一覧

【HSP3】DXライブラリをHSPで使ってみるサンプル(2.ジャンプ処理)

http://homepage2.nifty.com/natupaji/DxLib/dxprogram.html#N2 のHSP版です。DxLib.as は http://tkooler.moe.hm...
http://homepage2.nifty.com/natupaji/DxLib/dxprogram.html#N2 のHSP版です。DxLib.as は http://tkooler.moe.hm...
#runtime "hsp3cl"
#include "DxLib.as"	

	SetGraphMode 640 , 480 , 16
	DxLib_Init
コードを見る

【HSP3】DXライブラリをHSPで使ってみるサンプルv2(1.キー入力の基本)

修正版です。http://homepage2.nifty.com/natupaji/DxLib/dxprogram.html#N1 のHSP版です。DxLib.as は http://tkooler....
修正版です。http://homepage2.nifty.com/natupaji/DxLib/dxprogram.html#N1 のHSP版です。DxLib.as は http://tkooler....
#runtime "hsp3cl"
#include "DxLib.as"

	SetGraphMode 640 , 480 , 16
	DxLib_Init
コードを見る

【HSP3】DxライブラリをHSPで使ってみるサンプル(キー入力の基本)

http://homepage2.nifty.com/natupaji/DxLib/dxprogram.html#N1 のHSP版です。DxLib.as は http://tkooler.moe.hm...
http://homepage2.nifty.com/natupaji/DxLib/dxprogram.html#N1 のHSP版です。DxLib.as は http://tkooler.moe.hm...
#runtime "hsp3cl"
#include "DxLib.as"
#define TRUE 1
#define DX_SCREEN_BACK -2
#define KEY_INPUT_ESCAPE 1
コードを見る

【HSP3】DxLib用宣言

DLLはVisualC#版に付属しているDxLib.dllが使えます。数が多いので全部sptrです。
DLLはVisualC#版に付属しているDxLib.dllが使えます。数が多いので全部sptrです。
;DxLib.dll用マクロファイル
#ifndef __DXLIB__
#define __DXLIB__
#uselib "DxLib.dll"
#func global dx_AddDataSoftSoundPlayer "dx_AddDataSoftSoundPlayer" sptr,sptr,sptr,sptr
コードを見る