Instalează Steam
conectare
|
limbă
简体中文 (chineză simplificată)
繁體中文 (chineză tradițională)
日本語 (japoneză)
한국어 (coreeană)
ไทย (thailandeză)
български (bulgară)
Čeština (cehă)
Dansk (daneză)
Deutsch (germană)
English (engleză)
Español - España (spaniolă - Spania)
Español - Latinoamérica (spaniolă - America Latină)
Ελληνικά (greacă)
Français (franceză)
Italiano (italiană)
Bahasa Indonesia (indoneziană)
Magyar (maghiară)
Nederlands (neerlandeză)
Norsk (norvegiană)
Polski (poloneză)
Português (portugheză - Portugalia)
Português - Brasil (portugheză - Brazilia)
Русский (rusă)
Suomi (finlandeză)
Svenska (suedeză)
Türkçe (turcă)
Tiếng Việt (vietnameză)
Українська (ucraineană)
Raportează o problemă de traducere
I'd suggest setting it up to trigger the animation either through entity logic or a script instead.
I've never used the Source engine before let alone Source 2 so this is a bit of a baptism of fire for me. However, I'm impressed with the performance in VR as I've put quite a complex scene together and it's handling it very well. The Hammer Editor seems very intuitive too.
I'll follow your suggestion and take a look at triggering animations through code.
The random animation switch only considers sequences tagged with "ACT_IDLE"
From the Documentation:
Note: Will only select from animation $sequences linked with ACT_IDLE if they exist.
Using SourceOps in Blender, the exported sequences were tagged ACT_VM_IDLE, so my animations were ignored.
So, make sure your sequence have the correct activity assigned, like this:
$sequence "dying" {
"anims/dying.SMD"
fps 24
frames 0 130
loop
activity "ACT_IDLE" 1
}