|
Post by twistertwisted on Aug 27, 2014 23:21:46 GMT -3
First off , big thumbs up for all your hard work and sharing of your knowledge!
I have been the last couple of weeks playing around with animations and a bit of scripting (thanks to your tutorials) I figured out how te import and export and to bind the custom animation on a key. My goal is to place some Matrix Move`s in Gta IV.
The problem at the moment I keep stumbling upon is that Iam not able to play the animation and shoot/aim at the same time. I replaced the Swimming/Idle for my custom animation. I tried also the Gun@deagle/Fire , but same result and on top of that my animation aint working right. I hope sombody got a solution for me, seeing it can be done in several max payne scripts.
Greetings Frank
ps: Script that I use for the Animation:
Private Sub keyDown(ByVal sender As Object, ByVal e As GTA.KeyEventArgs) Handles MyBase.KeyDown
If e.Key = Keys.NumPad0 Then
Dim Animset As GTA.AnimationSet
Dim Animname As String = "idle"
Animset = New AnimationSet("swimming")
Player.Character.Animation.Play(Animset, Animname, 8)
End If
End Sub
|
|