特に問題なく動作しているように見受けられました。
//- 以下、テストコード (DxChara.xを使用)-//
#include "DxLib.h"
int WINAPI WinMain( HINSTANCE, HINSTANCE, LPSTR, int )
{
ChangeWindowMode( TRUE );
SetWindowText( "DxLib:" DXLIB_VERSION_STR );
if ( DxLib_Init( ) == -1 ) return -1;
int white = GetColor( 255, 255, 255 );
int mh = MV1LoadModel( "DxChara.x" );
MV1SetPosition( mh, VGet( 320.0f, -300.0f, 600.0f ) );
SetDrawScreen( DX_SCREEN_BACK );
while ( ProcessMessage( ) == 0 && CheckHitKey( KEY_INPUT_ESCAPE ) == 0 ) {
ClearDrawScreen( );
DrawFormatString( 0, 0, white, "TEST" );
SetDrawArea( 0, 0, 640, 240 );
SetCameraScreenCenter( 320.0f, 120.0f );
DrawBox( 0, 0, 640, 480, GetColor( 128, 0, 0 ), TRUE );
MV1DrawModel( mh );
SetDrawArea( 0, 240, 640, 480 );
SetCameraScreenCenter( 320.0f, 360.0f );
DrawBox( 0, 0, 640, 480, GetColor( 0, 128, 0 ), TRUE );
MV1DrawModel( mh );
SetDrawAreaFull( );
ScreenFlip( );
}
DxLib_End( );
return 0;
}