• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Revisióna41c7fa42870332f43f15c915621c9265303a691 (tree)
Tiempo2017-03-20 17:06:41
AutorSUEHIRO <supersuehiro@user...>
CommiterSUEHIRO

Log Message

画面端ぴったりでないとcornerpushが効かないのを修正

Cambiar Resumen

Diferencia incremental

--- a/ssz/char.ssz
+++ b/ssz/char.ssz
@@ -6117,8 +6117,12 @@ public void PlayerList!&Char?::clsn(&.Char pyr=, bool pro)
61176117 `pyr.getcombo += hit.numhits*numHits;
61186118 if(
61196119 hitting > 0 && pro == 0 && `pyr.ls(.lsSCREENBOUND) && (
6120- (by.facing < 0 && `pyr.sysfvar[.fX] <= `pxmi)
6121- || (by.facing > 0 && `pyr.sysfvar[.fX] >= `pxma))
6120+ (
6121+ by.facing < 0 && `pyr.sysfvar[.fX]
6122+ <= `pxmi + ((float)(by.stMver0() != 1) + 1.0) * 2.0)
6123+ || (
6124+ by.facing > 0 && `pyr.sysfvar[.fX]
6125+ >= `pxma - ((float)(by.stMver0() != 1) + 1.0) * 2.0))
61226126 ) switch(`pyr.stVal.typ)
61236127 {
61246128 case .StTy::S, .StTy::C:
@@ -6131,8 +6135,12 @@ public void PlayerList!&Char?::clsn(&.Char pyr=, bool pro)
61316135 else:
61326136 if(
61336137 hitting > 0 && pro == 0 && `pyr.ls(.lsSCREENBOUND) && (
6134- (by.facing < 0 && `pyr.sysfvar[.fX] <= `pxmi)
6135- || (by.facing > 0 && `pyr.sysfvar[.fX] >= `pxma))
6138+ (
6139+ by.facing < 0 && `pyr.sysfvar[.fX]
6140+ <= `pxmi + ((float)(by.stMver0() != 1) + 1.0) * 2.0)
6141+ || (
6142+ by.facing > 0 && `pyr.sysfvar[.fX]
6143+ >= `pxma - ((float)(by.stMver0() != 1) + 1.0) * 2.0))
61366144 ) switch(`pyr.stVal.typ)
61376145 {
61386146 case .StTy::S, .StTy::C: