Instalar Steam
iniciar sesión
|
idioma
简体中文 (chino simplificado)
繁體中文 (chino tradicional)
日本語 (japonés)
한국어 (coreano)
ไทย (tailandés)
Български (búlgaro)
Čeština (checo)
Dansk (danés)
Deutsch (alemán)
English (inglés)
Español de Hispanoamérica
Ελληνικά (griego)
Français (francés)
Italiano
Bahasa Indonesia (indonesio)
Magyar (húngaro)
Nederlands (holandés)
Norsk (noruego)
Polski (polaco)
Português (Portugués de Portugal)
Português-Brasil (portugués de Brasil)
Română (rumano)
Русский (ruso)
Suomi (finés)
Svenska (sueco)
Türkçe (turco)
Tiếng Việt (vietnamita)
Українська (ucraniano)
Comunicar un error de traducción
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
}