I have converted my 6.3 project into 6.5 in VB2010... yet it wont detect my key inputs... it is driving me mad.
Is there something special I need to do. I have declared and set the input engine up as I have done in other 6.5 apps.
Have I missed a step:
1.
Dim TV As MTV3D65.TVEngine
Dim Scr As MTV3D65.TVScreen2DImmediate
Dim Inp As MTV3D65.TVInputEngine
Dim TexFactory As MTV3D65.TVTextureFactory
2.
TV = New MTV3D65.TVEngine
Scr = New MTV3D65.TVScreen2DImmediate
Inp = New MTV3D65.TVInputEngine
TexFactory = New MTV3D65.TVTextureFactory
3.
If Inp.IsKeyPressed(MTV3D65.CONST_TV_KEY.TV_KEY_UP) = True Then
mblnUpKey = True
End If
The 6.3 code works perfectly. All i have done is remove the 6.3 reference, added the 6.5 reference and changed the required variables....