rareanimals Posted October 6, 2016 Posted October 6, 2016 Dear members of Loverslab, Can anyone tell me how to change the facing direction of the male/female actor,not meaning the hotkeys like "k l ; ' "in sexlab settings, those just simply adjust the position in space... Sometimes I just found changing the facing direction somehow amazing , for example, using the male actor animation of cowgirl in reverse cowgirl, a different view of the female >_<~~~ Thanks first!
rahrahrah Posted October 6, 2016 Posted October 6, 2016 I do this quite often too you'll need to modify the script that calls whichever scene it is Here's a scene I built using mixed animations (the draugr cowgirl was just too good to be for draugr alone) : function leitoDraugrCowgirlReverse(int id) sslBaseAnimation Base = Create(id) Base.Name = "leito Draugr Cowgirl Reverse" Base.SetContent(Sexual) Base.SoundFX = Squishing int a1 = Base.AddPosition(Female, addCum=Vaginal) Base.AddPositionStage(a1, "leito_draugr_cowgirl_a1_s1", 0) Base.AddPositionStage(a1, "leito_draugr_cowgirl_a1_s2", 0) Base.AddPositionStage(a1, "leito_draugr_cowgirl_a1_s3", 0) Base.AddPositionStage(a1, "leito_draugr_cowgirl_a1_s4", 0) Base.AddPositionStage(a1, "leito_draugr_cowgirl_a1_s5", 0) int a2 = Base.AddPosition(Male) Base.AddPositionStage(a2, "leito_cowgirl_A2_S2", 0, rotate = 180) Base.AddPositionStage(a2, "leito_cowgirl_A2_S2", 0, rotate = 180) Base.AddPositionStage(a2, "leito_cowgirl_A2_S2", 0, rotate = 180) Base.AddPositionStage(a2, "leito_cowgirl_A2_S3", 0, rotate = 180) Base.AddPositionStage(a2, "leito_cowgirl_A2_S4", 0, rotate = 180) Base.SetStageSoundFX(5, none) Base.AddTag("Leito") Base.AddTag("Sex") Base.AddTag("Straight") Base.AddTag("Dirty") Base.AddTag("Cowgirl") Base.AddTag("Vaginal") Base.AddTag("MF") Base.Save(id)endFunction Note the rotate value on A2 (male). - If you had created your own scene it would need to be defined at the start of the script like all other scenes are. (I called this one- leitoDraugrCowgirlReverse) The script would then need to be saved and compiled. and in game you would need to reset animation library in sexlab's mcm cleanup section before being able to use it.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.