毎度お世話になってます。46章の処理を追加すると少しおかしなことになりました。
自機のショットが自機の位置より少し左上から発射されます。
int cshot0pos_x[4]={-10, 10,-30, 30};
int cshot0pos_y[4]={-30,-30,-10,-10};
↑↑を
int cshot0pos_x[4]={ 0, 0, 0, 0};
int cshot0pos_y[4]={ 0, 0, 0, 0};
にしても少し左から発射されます。
自機の当たり判定、アイテムとの接触判定は問題ありません。ちゃんと自機の真ん中で処理されます。
タイトルも今までよりも少し左上の位置に表示されます。
int cshot0pos_xとint cshot0pos_yをいじってなんとか発射位置を自機の位置にもってくることもできますが、
これからプログラミングしていくときに大きな問題になるのではと危惧しております。
46章のソースコードと自分のコードを比べても違いはありませんでした。
しかし、46章の実行結果と違うことからどこかが違うのでしょうが、わからない状態です。
何方か、原因のわかる方いらっしゃいませんか?
自機ショットとタイトルの位置がずれました
-
PEACH-CELL
Re: 自機ショットとタイトルの位置がずれました
ソースです。
#include "../include/GV.h"
int cshot0num[2] ={2,4};
int cshot0pos_x[4]={-10, 10,-30, 30};
int cshot0pos_y[4]={-30,-30,-10,-10};
//自機ショットの登録可能番号を返す
int search_cshot(){
for(int i=0;i<CSHOT_MAX;i++){
if(cshot[i].flag==0)
return i;
}
return -1;
}
//通常ショット登録
void ch0_shot_pattern(){
int k;
for(int i=0;i<cshot0num[ch.power<200?0:1];i++){
if((k=search_cshot())!=-1){
cshot[k].flag=1;
cshot[k].cnt=0;
cshot[k].angle=-PI/2;
cshot[k].spd=10;
cshot[k].x=ch.x+cshot0pos_x[i];
cshot[k].y=ch.y+cshot0pos_y[i];
cshot[k].power=23;
cshot[k].knd=0;
}
}
se_flag[2]=1;//発射音オン
}
//低速通常ショット登録
void ch1_shot_pattern(){
int k;
for(int i=0;i<cshot0num[ch.power<200?0:1];i++){
if((k=search_cshot())!=-1){
cshot[k].flag=1;
cshot[k].cnt=0;
cshot[k].angle=-PI/2;
cshot[k].spd=13;
cshot[k].x=ch.x+cshot0pos_x[i]/3;//低速中なら位置を中心側へ
cshot[k].y=ch.y+cshot0pos_y[i]/2;
cshot[k].power=23;
cshot[k].knd=0;
}
}
se_flag[2]=1;
}
//ショット登録部
void enter_shot(){
//ショットボタンが押されていたら
if(CheckStatePad(configpad.shot)>0){
ch.shot_cnt++;
if(ch.shot_cnt%5==0){//5カウントに1回
if(CheckStatePad(configpad.slow)>0)//低速移動中なら
ch1_shot_pattern();
else
ch0_shot_pattern();
}
}
else
ch.shot_cnt=0;
}
//ショットの移動計算
void calc_cshot(){
for(int i=0;i<CSHOT_MAX;i++){
if(cshot[i].flag==1){
int dranx=(int)(cshot[i].spd+11/2),drany=(int)(cshot[i].spd+55/2);
cshot[i].x+=cos(cshot[i].angle)*cshot[i].spd;
cshot[i].y+=sin(cshot[i].angle)*cshot[i].spd;
cshot[i].cnt++;
if(cshot[i].x<-dranx || cshot[i].x>FMX+dranx ||
cshot[i].y<-drany || cshot[i].y>FMY+drany)//画面から外れたら
cshot[i].flag=0;
}
}
}
//キャラクタショットに関する関数
void cshot_main(){
calc_cshot();//ショットの軌道計算
enter_shot();//ショット登録
}
Re: 自機ショットとタイトルの位置がずれました
よく分かりませんが、
毎回、これに入っちゃってるのではないでしょうか?x座標を÷3してるなら左によるのではという勝手な推測ですが・・・・・・・
PEACH-CELL さんが書きました://低速通常ショット登録
void ch1_shot_pattern(){
int k;
for(int i=0;i<cshot0num[ch.power<200?0:1];i++){
if((k=search_cshot())!=-1){
cshot[k].flag=1;
cshot[k].cnt=0;
cshot[k].angle=-PI/2;
cshot[k].spd=13;
cshot[k].x=ch.x+cshot0pos_x/3;//低速中なら位置を中心側へ
cshot[k].y=ch.y+cshot0pos_y/2;
cshot[k].power=23;
cshot[k].knd=0;
}
}
se_flag[2]=1;
}
毎回、これに入っちゃってるのではないでしょうか?x座標を÷3してるなら左によるのではという勝手な推測ですが・・・・・・・
Re: 自機ショットとタイトルの位置がずれました
46章は描画関数の調整を行っていますからね
その調整が上手くいっていないのではと思います
あのページ内で示されているコード更新のほかに
確認をお願いします
もしよく分からないというのであれば、graph.cppを見せてもらえればこちらで確認しますよ
その調整が上手くいっていないのではと思います
あのページ内で示されているコード更新のほかに
これらの指示をちゃんと行っているでしょうか?graph.cpp内にある
+FX
+FY
+dn.x
+dn.y
これらを全て消してください。
置換ウィンドウを出して、検索文字列に上記を書き、置換する部分に何も書かなければよいです。
次に同様にgraph.cpp内の以下を
DrawRotaGraphF → DrawRotaGraphFdF
DrawModiGraphF → DrawModiGraphFdF
このように置換します。
graph.cppのgraph_bullet()関数内のDrawGraphもDrawGraphFdにしておきます。
確認をお願いします
もしよく分からないというのであれば、graph.cppを見せてもらえればこちらで確認しますよ
♪僕たちは まだ森の中 抜け出そう 陽のあたる場所へ
-
PEACH-CELL
Re: 自機ショットとタイトルの位置がずれました
>史上最悪のデスペナさん
低速移動の座標が入ってるですか…なるほど…。
>jayさん
コードはこちらです。
ところどころアレンジを加えてますが、確認のほどよろしくお願いします。
低速移動の座標が入ってるですか…なるほど…。
>jayさん
コードはこちらです。
#include "../include/GV.h"
extern void graph_back_main();
extern void draw_fps(int,int);
extern void draw_func_tm(int,int);
int DrawRotaGraphF( double xd, double yd, double ExRate, double Angle, int GrHandle, int TransFlag, int TurnFlag = FALSE ) {
return DrawRotaGraphF((float)xd,(float)yd,ExRate,Angle,GrHandle,TransFlag,TurnFlag);
}
int DrawModiGraphF( double x1, double y1, double x2, double y2, double x3, double y3, double x4, double y4, int GrHandle, int TransFlag ){
return DrawModiGraphF( (float)x1, (float)y1, (float)x2, (float)y2, (float)x3, (float)y3, (float)x4, (float)y4, GrHandle, TransFlag ) ;
}
int DrawRotaGraphFdF( double xd, double yd, double ExRate, double Angle, int GrHandle, int TransFlag, int TurnFlag = FALSE ) {
return DrawRotaGraphF((float)xd+FX+dn.x,(float)yd+FY+dn.y,ExRate,Angle,GrHandle,TransFlag,TurnFlag);
}
int DrawModiGraphFdF( double x1, double y1, double x2, double y2, double x3, double y3, double x4, double y4, int GrHandle, int TransFlag ){
return DrawModiGraphF( (float)x1+FX+dn.x, (float)y1+FY+dn.y, (float)x2+FX+dn.x, (float)y2+FY+dn.y,
(float)x3+FX+dn.x, (float)y3+FY+dn.y, (float)x4+FX+dn.x, (float)y4+FY+dn.y, GrHandle, TransFlag ) ;
}
int DrawGraphFd( int xd, int yd, int GrHandle, int TransFlag) {
return DrawGraph(xd+FX+dn.x,yd+FY+dn.y,GrHandle,TransFlag);
}
void graph_effect(int knd){
for(int i=0;i<EFFECT_MAX;i++){
if(effect[i].flag>0 && effect[i].knd==knd){
if(effect[i].eff==1)//エフェクトが光エフェクトなら
SetDrawBlendMode( DX_BLENDMODE_ADD, (int)effect[i].brt) ;
if(effect[i].eff==2)//エフェクトがαエフェクトなら
SetDrawBlendMode( DX_BLENDMODE_ALPHA, (int)effect[i].brt) ;
DrawRotaGraphFdF(effect[i].x,effect[i].y,effect[i].r,effect[i].ang,effect[i].img,TRUE);
if(effect[i].eff==1 || effect[i].eff==2)
SetDrawBlendMode( DX_BLENDMODE_NOBLEND, 0) ;
}
}
}
//child描画
void graph_child(){
int i;
for(i=0;i<CHILD_MAX;i++){
if(child[i].flag==1){
DrawRotaGraphFdF(child[i].x,child[i].y,child[i].range,PI2*(count%60)/60,img_etc[6],TRUE);
}
}
}
void graph_item(){
int i;
for(i=0;i<ITEM_MAX;i++){
if(item[i].flag==1){
DrawRotaGraphFdF(item[i].x,item[i].y,item[i].r,0,img_item[item[i].knd][0],TRUE);
}
}
}
//敵描画
void graph_enemy(){
int i;
for(i=0;i<ENEMY_MAX;i++){
if(enemy[i].flag==1){
DrawRotaGraphFdF(enemy[i].x,enemy[i].y,1.0f,0.0f,img_enemy[enemy[i].knd][enemy[i].img],TRUE);
}
}
}
void graph_boss_effect(){
SetDrawBlendMode( DX_BLENDMODE_ALPHA, 150) ;
DrawRotaGraphFdF(boss.dx, boss.dy,
(0.4+0.05*sin(PI2/360*(count%360)))*3,
2*PI*(count%580)/580,
img_etc[5], TRUE);
DrawRotaGraphFdF(boss.dx, boss.dy,
(0.5+0.1*sin(PI2/360*(count%360)))*2,
2*PI*(count%340)/340,img_etc[2], TRUE);
DrawRotaGraphFdF(boss.dx+60*sin(PI2/153*(count%153)),
boss.dy+80*sin(PI2/120*(count%120)),
0.4+0.05*sin(PI2/120*(count%120)),
2*PI*(count%30)/30,img_etc[6], TRUE);
DrawRotaGraphFdF(boss.dx+60*sin(PI2/200*((count+20)%200)),
boss.dy+80*sin(PI2/177*((count+20)%177)),
0.3+0.05*sin(PI2/120*(count%120)),
2*PI*(count%35)/35,img_etc[6], TRUE);
SetDrawBlendMode( DX_BLENDMODE_NOBLEND, 0) ;
DrawRotaGraphFdF(boss.dx+60*sin(PI2/230*((count+40)%230)),
boss.dy+80*sin(PI2/189*((count+40)%189)),
0.6+0.05*sin(PI2/120*(count%120)),
2*PI*(count%40)/40,img_etc[6], TRUE);
}
void graph_boss(){
int i;
if(boss.flag==0)return;
graph_boss_effect();
DrawRotaGraphFdF(boss.dx,boss.dy,1.0f,0.0f,img_dot_rumya[0],TRUE);
if(boss.hp_max==0){printfDx("graph_boss内0割り\n");return;}
for(i=0;i<FMX*0.98*boss.hp/boss.hp_max;i++){
if(boss.back_knd[boss.knd]==1)
DrawGraphFd(3+i,2,img_etc[7],FALSE);
else
DrawGraphFd(3+i,2,img_etc[1],FALSE);
}
}
//自機描画
void graph_ch(){
double sx,sy,ny=(sin(2.0*PI*(count%50)/50)*3),ang=2.0*PI*(count%120)/120;
if(CheckStatePad(configpad.slow)>0)//低速移動中なら
sx=10,sy=-30+ny;//引き寄せる
else
sx=30,sy=0+ny;//普通の位置に
DrawRotaGraphFdF( ch.x-sx, ch.y+sy, 1.0f, ang, img_chetc[2], TRUE );
DrawRotaGraphFdF( ch.x+sx, ch.y+sy, 1.0f, -ang, img_chetc[2], TRUE );
if(ch.mutekicnt%2==0){//無敵中なら点滅
//自機表示
DrawRotaGraphFdF(ch.x,ch.y,1.0f,0.0f,img_ch[0][ch.img],TRUE);
if(CheckStatePad(configpad.slow)>0)//低速移動中なら当たり判定表示
DrawRotaGraphFdF( ch.x, ch.y, 1.0f, 2.0*PI*(count%120)/120, img_chetc[0], TRUE );
}
}
//自機ショット描画、少し透けて回転するショット
void graph_cshot(){
for(int i=0;i<CSHOT_MAX;i++){
if(cshot[i].flag>0){
ch.shot_cnta++;
SetDrawBlendMode( DX_BLENDMODE_ALPHA, 100 ); //ブレンドモードをα(128/255)に設定
DrawRotaGraph(cshot[i].x,cshot[i].y,1,2*PI*(ch.shot_cnta%100)/100,img_cshot[cshot[i].knd],TRUE,FALSE) ;
SetDrawBlendMode( DX_BLENDMODE_NOBLEND, 0 ); //ブレンドモードをオフ
}
}
}
void myDrawSquare(double x0, double y0,double x1, double y1,double x2, double y2,double x3, double y3){
DrawTriangle((int)x0,(int)y0,(int)x1,(int)y1,(int)x2,(int)y2,GetColor(255,0,0),TRUE);
DrawTriangle((int)x0,(int)y0,(int)x3,(int)y3,(int)x2,(int)y2,GetColor(255,0,0),TRUE);
}
void graph_lazer(){
int i;
SetDrawMode( DX_DRAWMODE_BILINEAR ) ;//線形補完描画
for(i=0;i<LAZER_MAX;i++){//敵の弾幕数分ループ
if(lazer[i].flag>0){//弾幕データがオンなら
SetDrawBlendMode( DX_BLENDMODE_ADD, 255) ;
DrawRotaGraphFdF(//発射位置のエフェクトを描画
lazer[i].startpt.x,lazer[i].startpt.y,1.0,0,
img_lazer_moto[lazer[i].knd][lazer[i].col],TRUE
);
DrawModiGraphFdF(//レーザーを描画
lazer[i].disppt[0].x, lazer[i].disppt[0].y,
lazer[i].disppt[1].x, lazer[i].disppt[1].y,
lazer[i].disppt[2].x, lazer[i].disppt[2].y,
lazer[i].disppt[3].x, lazer[i].disppt[3].y,
img_lazer[lazer[i].knd][lazer[i].col],TRUE
);
SetDrawBlendMode( DX_BLENDMODE_NOBLEND, 0) ;
/* myDrawSquare(//当たり判定範囲を表示
lazer[i].outpt[0].x,lazer[i].outpt[0].y,
lazer[i].outpt[1].x,lazer[i].outpt[1].y,
lazer[i].outpt[2].x,lazer[i].outpt[2].y,
lazer[i].outpt[3].x,lazer[i].outpt[3].y
);*/
}
}
}
void boss_assist_img(){
int j,eff;
double disp_angle;
if(boss_shot.flag > 0){//弾幕データがオンなら
for(j=0; j < 5; j++){//その弾幕が持つ弾の最大数分ループ
if(boss_shot.assist[j].flag != 0){//弾データがオンなら
//計算部//
boss_shot.assist[j].x += cos(boss_shot.assist[j].angle) * boss_shot.assist[j].spd;
boss_shot.assist[j].y += sin(boss_shot.assist[j].angle) * boss_shot.assist[j].spd;
boss_shot.assist[j].cnt ++;
//ここまで//
eff = 0;
if(boss_shot.assist[j].kaiten==1)
disp_angle = PI2*(boss_shot.assist[j].cnt%120)/120;
else
disp_angle = boss_shot.assist[j].angle+PI/2;
if(boss_shot.assist[j].eff == 1)
SetDrawBlendMode(DX_BLENDMODE_ADD, 255),eff = 1;
if(boss_shot.assist[j].eff == 2)
SetDrawBlendMode(DX_BLENDMODE_ADD, 255+GetRand(100)),eff = 1 ;
if(boss_shot.assist[j].c_flag == 0)
DrawRotaGraphFdF((float)boss_shot.assist[j].x, (float)boss_shot.assist[j].y, 1.0, disp_angle, img_bullet[boss_shot.assist[j].knd][boss_shot.assist[j].col], TRUE);
else
DrawRotaGraph2F((float)boss_shot.assist[j].x, (float)boss_shot.assist[j].y, (float)boss_shot.assist[j].cx, (float)boss_shot.assist[j].cy, 1.0, disp_angle, img_bullet[boss_shot.assist[j].knd][boss_shot.assist[j].col], TRUE);
if(eff == 1)
SetDrawBlendMode( DX_BLENDMODE_NOBLEND, 0) ;
}
}
}
return;
}
//弾丸の描画
void graph_bullet(){
int i,j,eff;
double disp_angle;
SetDrawMode( DX_DRAWMODE_BILINEAR ) ;//線形補完描画
for(i=0;i<SHOT_MAX;i++){//敵の弾幕数分ループ
if(shot[i].flag>0){//弾幕データがオンなら
for(j=0;j<SHOT_BULLET_MAX;j++){//その弾幕が持つ弾の最大数分ループ
if(shot[i].bullet[j].flag!=0){//弾データがオンなら
if(shot[i].bullet[j].eff==1)
SetDrawBlendMode( DX_BLENDMODE_ADD, 255) ;
if(bullet_info[shot[i].bullet[j].knd].kaiten==1)
disp_angle=PI2*(shot[i].bullet[j].cnt%120)/120;
else
disp_angle=shot[i].bullet[j].angle+PI/2;
DrawRotaGraphFdF(
shot[i].bullet[j].x, shot[i].bullet[j].y,
1.0, disp_angle,
img_bullet[shot[i].bullet[j].knd][shot[i].bullet[j].col],TRUE);
if(shot[i].bullet[j].eff==1)
SetDrawBlendMode( DX_BLENDMODE_NOBLEND, 0) ;
}
}
}
}
boss_assist_img();
//ボス
if(boss_shot.flag>0){//弾幕データがオンなら
for(j=0;j<BOSS_BULLET_MAX;j++){//その弾幕が持つ弾の最大数分ループ
if(boss_shot.bullet[j].flag!=0){//弾データがオンなら
eff=0;
if(boss_shot.bullet[j].kaiten==1)
disp_angle=PI2*(boss_shot.bullet[j].cnt%120)/120;
else
disp_angle=boss_shot.bullet[j].angle+PI/2;
if(boss_shot.bullet[j].eff_detail==1){//風雨にも負けず用弾エフェクト
SetDrawBlendMode( DX_BLENDMODE_ADD, 100+GetRand(155)),eff=1 ;
DrawRotaGraphFdF(
boss_shot.bullet[j].x, boss_shot.bullet[j].y,
1.3, disp_angle,
img_bullet[boss_shot.bullet[j].knd][boss_shot.bullet[j].col],TRUE);
}
if(boss_shot.bullet[j].eff==1)
SetDrawBlendMode( DX_BLENDMODE_ADD, 255),eff=1 ;
if(boss_shot.bullet[j].eff==2)
SetDrawBlendMode( DX_BLENDMODE_ADD, 255+GetRand(100)),eff=1 ;
DrawRotaGraphFdF(
boss_shot.bullet[j].x, boss_shot.bullet[j].y,
1.0, disp_angle,
img_bullet[boss_shot.bullet[j].knd][boss_shot.bullet[j].col],TRUE);
if(eff==1)
SetDrawBlendMode( DX_BLENDMODE_NOBLEND, 0) ;
}
}
}
SetDrawMode(DX_DRAWMODE_NEAREST);//描画形式を戻す
}
//タイトルの表示
void graph_stage_title(){
if(stage_title.flag>0){
SetDrawBlendMode( DX_BLENDMODE_ALPHA, stage_title.brt );
DrawGraph(155,170,stage_title.img,TRUE);
SetDrawBlendMode( DX_BLENDMODE_NOBLEND, 0 );
}
}
//スコアボード表示(41)
void graph_board_states(){
int i;
int score=ch.score;
int power=ch.power;
int graze=ch.graze;
int point=ch.point;
int bomn=ch.bomn;
for(i=0;i<9;i++){//スコア表示
DrawRotaGraph(625-15*i,64,1.0f,0.0f,img_num[0][score%10],TRUE);
DrawRotaGraph(625-15*i,88,1.0f,0.0f,img_num[0][score%10],TRUE);
score/=10;
}
for(i=0;i<ch.num;i++)//残機数表示
DrawGraph(499+16*i,123,img_etc[8],TRUE);
for(i=0;i<3;i++){//パワー表示
DrawRotaGraph(536-14*i,193,1.0f,0.0f,img_num[0][power%10],TRUE);
power/=10;
}
for(i=0;i<6;i++){//グレイズ表示
DrawRotaGraph(578-14*i,213,1.0f,0.0f,img_num[0][graze%10],TRUE);
graze/=10;
}
for(i=0;i<4;i++){//ポイント表示
DrawRotaGraph(550-14*i,233,1.0f,0.0f,img_num[0][point%10],TRUE);
point/=10;
}
for(i=0;i<ch.bomn;i++)//残機数表示
DrawGraph(499+16*i,145,img_etc[9],TRUE);
}
//ボード描画
void graph_board(){
DrawGraph( 0, 0,img_board[10],FALSE);
DrawGraph( 0, 16,img_board[11],FALSE);
DrawGraph( 0,464,img_board[12],FALSE);
DrawGraph(416, 0,img_board[20],FALSE);
graph_board_states();//(41章)
}
//フラッシュ描画(42)
void graph_flash(){
if(flash.flag>0){
SetDrawBlendMode( DX_BLENDMODE_ALPHA, (int)(flash.brt) );
DrawBox(FX,FY,FX+FMX,FY+FMY,color[0],TRUE);
SetDrawBlendMode( DX_BLENDMODE_NOBLEND, 0 );
}
}
void graph_develop(){
DrawFormatString(0,0,GetColor(255,255,255),"%d",stage_count);
}
void graph_main(){
if(bright_set.brt!=255)SetDrawBright(bright_set.brt,bright_set.brt,bright_set.brt);
graph_back_main();//背景描画メイン
graph_effect(0);//敵が死ぬエフェクト
if(bright_set.brt!=255)SetDrawBright(255,255,255);
graph_effect(4);//喰らいボムのエフェクト
if(bright_set.brt!=255)SetDrawBright(bright_set.brt,bright_set.brt,bright_set.brt);
graph_child();
graph_item();//アイテム描画
graph_boss();
graph_enemy();//敵の描画
graph_cshot();//自機ショットの描画
if(bright_set.brt!=255)SetDrawBright(255,255,255);
graph_ch();//自機の描画
if(bright_set.brt!=255)SetDrawBright(bright_set.brt,bright_set.brt,bright_set.brt);
graph_lazer();//レーザーの描画
graph_bullet();//弾の描画
if(bright_set.brt!=255)SetDrawBright(255,255,255);
graph_effect(1);//ボムのエフェクト
graph_effect(2);//ボム線のエフェクト
graph_effect(3);//ボムキャラのエフェクト
graph_stage_title();//タイトルの表示
graph_board();//ボードの描画
graph_flash();//フラッシュ描画
graph_develop();
draw_fps(0,465);//fps描画
draw_func_tm(450,250);//処理時間描画
}
Re: 自機ショットとタイトルの位置がずれました
「解決」ってなってるからホッとしちゃったじゃないですかw
ん~、ざっと見てみた感じ、それらしいところが一つだけありましたよ
ここら辺に
DrawRotaGraphFdFにするべき所がDrawRotaGraphになっちゃってます
これが原因でズレているのではないでしょうか?
ん~、ざっと見てみた感じ、それらしいところが一つだけありましたよ
ここら辺に
//自機ショット描画、少し透けて回転するショット
void graph_cshot(){
for(int i=0;i<CSHOT_MAX;i++){
if(cshot[i].flag>0){
ch.shot_cnta++;
SetDrawBlendMode( DX_BLENDMODE_ALPHA, 100 ); //ブレンドモードをα(128/255)に設定
DrawRotaGraph(cshot[i].x,cshot[i].y,1,2*PI*(ch.shot_cnta%100)/100,img_cshot[cshot[i].knd],TRUE,FALSE) ;
SetDrawBlendMode( DX_BLENDMODE_NOBLEND, 0 ); //ブレンドモードをオフ
}
}
}
これが原因でズレているのではないでしょうか?
♪僕たちは まだ森の中 抜け出そう 陽のあたる場所へ
-
PEACH-PIT
Re: 自機ショットとタイトルの位置がずれました
>「解決」ってなってるからホッとしちゃったじゃないですかw
お…?申し訳ないです。なんか無意識にチェック入れてたみたいですw
仰る通り該当箇所を修正したらちゃんとキャラの中心からショットが撃てるようになりました!
タイトルの描画も同じようなことになってたんで同じように修正したら直りました。
ん~、一度50章までコピペしてからアレンジしたほうがいいんですかね。
どうも、ありがとうございました。
お…?申し訳ないです。なんか無意識にチェック入れてたみたいですw
仰る通り該当箇所を修正したらちゃんとキャラの中心からショットが撃てるようになりました!
タイトルの描画も同じようなことになってたんで同じように修正したら直りました。
ん~、一度50章までコピペしてからアレンジしたほうがいいんですかね。
どうも、ありがとうございました。