MIDITrail をピカピカにする。鍵盤方向自動切替・多ポート・歌詞対応等
Revisión | 96034437f448e7cb457ae015d6914b0f2437729c (tree) |
---|---|
Tiempo | 2019-12-22 14:31:05 |
Autor | yoshy <yoshy@user...> |
Commiter | yoshy |
[FIX] コンパイルエラー修正
@@ -135,7 +135,7 @@ int MTNoteBoxMod::Transform( | ||
135 | 135 | D3DXMatrixRotationX(&rotateMatrix, D3DXToRadian(rollAngle)); |
136 | 136 | |
137 | 137 | //移動行列 |
138 | - moveVector = m_NoteDesign.GetWorldMoveVector(); | |
138 | + moveVector = m_pNoteDesign->GetWorldMoveVector(); | |
139 | 139 | D3DXMatrixTranslation(&moveMatrix, moveVector.x, moveVector.y, moveVector.z); |
140 | 140 | |
141 | 141 | //行列の合成 |
@@ -177,7 +177,7 @@ void MTNoteDesignMod::GetActiveNoteBoxVirtexPos( | ||
177 | 177 | } |
178 | 178 | |
179 | 179 | bh = GetNoteBoxHeight() * curSizeRatio; |
180 | - bw = GetNoteBoxWidht() * curSizeRatio; | |
180 | + bw = GetNoteBoxWidth() * curSizeRatio; | |
181 | 181 | |
182 | 182 | *pVector0 = D3DXVECTOR3(center.x, center.y+(bh/2.0f), center.z+(bw/2.0f)); |
183 | 183 | *pVector1 = D3DXVECTOR3(center.x, center.y+(bh/2.0f), center.z-(bw/2.0f)); |
@@ -516,7 +516,7 @@ int MTNoteRippleMod::_SetVertexPosition( | ||
516 | 516 | pbSensitivity = m_pNotePitchBend->GetSensitivity(note.portNo, note.chNo); |
517 | 517 | |
518 | 518 | //ノートボックス中心座標取得 |
519 | - center = m_NoteDesign.GetNoteBoxCenterPosX( | |
519 | + center = m_pNoteDesign->GetNoteBoxCenterPosX( | |
520 | 520 | m_CurTickTime, |
521 | 521 | note.portNo, |
522 | 522 | note.chNo, |
@@ -566,7 +566,7 @@ int MTNoteRippleMod::_SetVertexPosition( | ||
566 | 566 | |
567 | 567 | //各頂点のディフューズ色 |
568 | 568 | for (i = 0; i < 6; i++) { |
569 | - color = m_NoteDesign.GetNoteBoxColor( | |
569 | + color = m_pNoteDesign->GetNoteBoxColor( | |
570 | 570 | note.portNo, |
571 | 571 | note.chNo, |
572 | 572 | note.noteNo |