I made two animations which need to be played simultanously. I already got these to work with PlayIdle, but they are off by 1-3 frames quite often which totally destroys the believability. So I found PlaySyncedAnimationSS in the scripting reference but instead of playing the idle, the actors just stand around. Does anybody know how to get it to work?
Scriptname RMDibellaShrine extends ObjectReferenceIdle Property RMKissingFemale AutoIdle Property RMKissingMale AutoObjectReference Property RMKissingIdleMarker AutoActor Property RMKissingPartnerMale AutoActor Property RMKissingPartnerFemale AutoEvent OnActivate(ObjectReference akActivator); == DOES NOT WORK - Simultanous not possible ???? ==RMKissingPartnerMale.PlaySyncedAnimationSS(RMKissingMale, RMKissingPartnerFemale, RMKissingFemale); == The following two lines work ==; RMKissingPartnerMale.PlayIdle(RMKissingMale); RMKissingPartnerFemale.PlayIdle(RMKissingFemale)RMKissingPartnerMale.MoveTo(RMKissingIdleMarker)RMKissingPartnerFemale.MoveTo(RMKissingPartnerMale)RMKissingPartnerMale.SetRestrained()RMKissingPartnerFemale.SetRestrained()EndEvent