Installer Steam
log på
|
sprog
简体中文 (forenklet kinesisk)
繁體中文 (traditionelt kinesisk)
日本語 (japansk)
한국어 (koreansk)
ไทย (thai)
Български (bulgarsk)
Čeština (tjekkisk)
Deutsch (tysk)
English (engelsk)
Español – España (spansk – Spanien)
Español – Latinoamérica (spansk – Latinamerika)
Ελληνικά (græsk)
Français (fransk)
Italiano (italiensk)
Bahasa indonesia (indonesisk)
Magyar (ungarsk)
Nederlands (hollandsk)
Norsk
Polski (polsk)
Português (portugisisk – Portugal)
Português – Brasil (portugisisk – Brasilien)
Română (rumænsk)
Русский (russisk)
Suomi (finsk)
Svenska (svensk)
Türkçe (tyrkisk)
Tiếng Việt (Vietnamesisk)
Українська (ukrainsk)
Rapporter et oversættelsesproblem
Difficult bug to sort out. Btw, are you using default AK's animations?
btw,thanks for taking your time to help.
I had similar problem with my first shotgun mod. I based my qc to Desert eagle qc without knowing that primary weapons have more sequences and the gun acted just like yours.
Btw, did you get the qc from decompiled model or wrote it ground up?
$animation "ta_trans_run" "v_rifle_ak47_anims\ta_trans_run.smd" {
fps 38
loop
}
Or should there be a $sequence for it?
$sequence "idle" {
"ta_trans_run"
"ta_trans_idle"
"ta_trans_run"
activity "ACT_VM_IDLE" 1
blend "move_x" -1 1
blendwidth 3
fadein 0.2
fadeout 0.2
fps 12
loop
}
so something like this. You could also check that run animation is also looped
"ta_trans_run"
"ta_trans_idle"
"ta_trans_run"
activity "ACT_VM_IDLE" 1
blend "move_x" -1 1
blendwidth 3
fadein 0.2
fadeout 0.2
loop
fps 12
}
let me check on the sequence order. if it turns out to be in the wrong order,i'm such a fool.
"ta_trans_run"
"idle_delta"
"ta_trans_run"
activity "ACT_VM_IDLE" 1
blend "move_x" -1 1
blendwidth 3
fadein 0.2
fadeout 0.2
}