Jump to content

The general WIP thread for animators.


Guest Redabyss

Recommended Posts

Posted
1 hour ago, TheGamerBoy96 said:

Hi Guys! 
I tried to do an animation, but in the game the game does not see that the animation includes two people, and the action is available only for the first actor.

The XML seems right, any suggestions?

 


Sorry for any errors in my english, and thanks in advance!

You either didn't break down the animations into individual animations with only 1 actor per blend file in them or you made a mistake in the XML.

 

Animations with 2 actors means you make the animation with them both together doing the thing, then you save animation as "animation name BOTH" then you delete one of them and save as new file "animation name ACTOR 0" then open "animation name BOTH" and then delete the other actor and save as new file called "animation name ACTOR 1". then you import both of these ( animation name Actor 0 + Actor 1) into S4S package.

 

If you already did it like this then its definately a mistake in the XML.

Posted
59 minutes ago, Simite said:

You either didn't break down the animations into individual animations with only 1 actor per blend file in them or you made a mistake in the XML.

 

Animations with 2 actors means you make the animation with them both together doing the thing, then you save animation as "animation name BOTH" then you delete one of them and save as new file "animation name ACTOR 0" then open "animation name BOTH" and then delete the other actor and save as new file called "animation name ACTOR 1". then you import both of these ( animation name Actor 0 + Actor 1) into S4S package.

 

If you already did it like this then its definately a mistake in the XML.

Thanks for the answer!

Yes i did 2 blend file 1 for actor 0 with just one actor (the top one) and another with actor 1 (the reciving one).
Can you check my xlm? 

S4_7DF2169C_00000000_305CCF1984660BE6.xml

Posted
41 minutes ago, TheGamerBoy96 said:

Thanks for the answer!

Yes i did 2 blend file 1 for actor 0 with just one actor (the top one) and another with actor 1 (the reciving one).
Can you check my xlm? 

S4_7DF2169C_00000000_305CCF1984660BE6.xml

Okay you're right, your XML seems to be fine.

 

The receiving actor just t-pose when you try to use in game?

 

Did you import the actor 1 blend more then 1 time? (in which case it might have a new animation clip name assigned to it?)

 

I'd be happy to take a look at the package and see if I can spot the problem, I've seen and enjoyed your pose player poses and would be happy to help you get a working WW animation.

Posted
26 minutes ago, Simite said:

Okay you're right, your XML seems to be fine.

 

The receiving actor just t-pose when you try to use in game?

 

Did you import the actor 1 blend more then 1 time? (in which case it might have a new animation clip name assigned to it?)

 

I'd be happy to take a look at the package and see if I can spot the problem, I've seen and enjoyed your pose player poses and would be happy to help you get a working WW animation.

Thanks you for the compliment and for helping me, there is my package file.

if i select the sex action with the reciving actor my animation does not appear on the list .

provabuona.package

Posted

Hey! Can't say I'm keeping track of what's happening in this topic but here's an update for your related to WickedWhims. Note that this is not yet released but you can already add it to your animations.

 

The XML template for WW animations has been updated, and support for events has been added which includes visual effects.

http://wickedwhims.tumblr.com/post/147746195146/creating-wickedwhims-animation-xml-file

I hope the tutorial page is clear enough on how to use this.

 

Here's an example animation with events. This one adds the shower spray to the shower.

<T>
  <T n="animation_raw_display_name">Animation Name</T>
  <T n="animation_author">Author Name</T> 
  <T n="animation_locations">SHOWER</T>
  <T n="animation_category">VAGINAL</T>
  <T n="animation_loops">2</T>

  <T n="animation_actors_list">
    <T>
      <T n="actor_id">0</T>
      <T n="animation_name">ClipName_x</T>
      <T n="animation_type">VAGINAL</T>
      <T n="animation_genders">MALE</T>
      <T n="animation_naked_flags">ALL</T>
      <T n="actor_interactions">
        <T>
          <T n="receiving_actor_id">1</T>
          <T n="receiving_actor_category">VAGINAL</T>
          <T n="receiving_actor_cum_layers">VAGINA</T>
          <T n="receiving_actor_cum_inside">1</T>
        </T>
      </T>
    </T>

    <T>
      <T n="actor_id">1</T>
      <T n="animation_name">ClipName_y</T>
      <T n="animation_type">VAGINAL</T>
      <T n="animation_genders">FEMALE</T>
      <T n="animation_naked_flags">ALL</T>
      <T n="actor_interactions">
        <T>
          <T n="receiving_actor_id">0</T>
          <T n="receiving_actor_category">VAGINAL</T>
          <T n="receiving_actor_cum_layers">DISABLED</T>
          <T n="receiving_actor_cum_inside">0</T>
        </T>
      </T>
    </T>
  </T>
  
  <T n="animation_events_list">
    <T>
      <T n="event_type">EFFECT</T>
      <T n="event_start_timecode">0</T>
      <T n="event_end_timecode">999</T>
      <T n="event_target">o</T>
      <T n="effect_name">s40_obj_shower_spray</T>
      <T n="effect_joint_name">_FX_waterShower_0</T>
      <T n="dont_run_if">
        <T n="actor_has_condom">0</T>
      </T>
    </T>
  </T>
</T>

 

If you're wondering why would you need to add effects this way and not through the native effects within the clip - interruptible animations can't use all of the native event types so this is a way to go around it. This unfortunately has one downside and that is the lack of precision. Sync between rendering and game logic doesn't really exist and making it synced is not something I managed to figure out yet (although I think it's possible). Still, this is completely functional and for the most part will look visually correct, especially with effects like that shower spray.

With this you can add Sim effects and object effects to your animations. Things like the shower spray and visible cum are a thing now.

For adding custom effects, I can't say anything, I haven't researched that topic.

 

I hope it will be useful for you! ?

 

 

Posted
10 minutes ago, TURBODRIVER said:

Hey! Can't say I'm keeping track of what's happening in this topic but here's an update for your related to WickedWhims. Note that this is not yet released but you can already add it to your animations.

 

The XML template for WW animations has been updated, and support for events has been added which includes visual effects.

http://wickedwhims.tumblr.com/post/147746195146/creating-wickedwhims-animation-xml-file

I hope the tutorial page is clear enough on how to use this.

 

Here's an example animation with events. This one adds the shower spray to the shower.


<T>
  <T n="animation_raw_display_name">Animation Name</T>
  <T n="animation_author">Author Name</T> 
  <T n="animation_locations">SHOWER</T>
  <T n="animation_category">VAGINAL</T>
  <T n="animation_loops">2</T>

  <T n="animation_actors_list">
    <T>
      <T n="actor_id">0</T>
      <T n="animation_name">ClipName_x</T>
      <T n="animation_type">VAGINAL</T>
      <T n="animation_genders">MALE</T>
      <T n="animation_naked_flags">ALL</T>
      <T n="actor_interactions">
        <T>
          <T n="receiving_actor_id">1</T>
          <T n="receiving_actor_category">VAGINAL</T>
          <T n="receiving_actor_cum_layers">VAGINA</T>
          <T n="receiving_actor_cum_inside">1</T>
        </T>
      </T>
    </T>

    <T>
      <T n="actor_id">1</T>
      <T n="animation_name">ClipName_y</T>
      <T n="animation_type">VAGINAL</T>
      <T n="animation_genders">FEMALE</T>
      <T n="animation_naked_flags">ALL</T>
      <T n="actor_interactions">
        <T>
          <T n="receiving_actor_id">0</T>
          <T n="receiving_actor_category">VAGINAL</T>
          <T n="receiving_actor_cum_layers">DISABLED</T>
          <T n="receiving_actor_cum_inside">0</T>
        </T>
      </T>
    </T>
  </T>
  
  <T n="animation_events_list">
    <T>
      <T n="event_type">EFFECT</T>
      <T n="event_start_timecode">0</T>
      <T n="event_end_timecode">999</T>
      <T n="event_target">o</T>
      <T n="effect_name">s40_obj_shower_spray</T>
      <T n="effect_joint_name">_FX_waterShower_0</T>
      <T n="dont_run_if">
        <T n="actor_has_condom">0</T>
      </T>
    </T>
  </T>
</T>

 

If you're wondering why would you need to add effects this way and not through the native effects within the clip - interruptible animations can't use all of the native event types so this is a way to go around it. This unfortunately has one downside and that is the lack of precision. Sync between rendering and game logic doesn't really exist and making it synced is not something I managed to figure out yet (although I think it's possible). Still, this is completely functional and for the most part will look visually correct, especially with effects like that shower spray.

With this you can add Sim effects and object effects to your animations. Things like the shower spray and visible cum are a thing now.

For adding custom effects, I can't say anything, I haven't researched that topic.

 

I hope it will be useful for you! ?

 

 

Great news !

IS there  a list or peview of the effect we can use ?

Edit: the list is in the tutorial

Posted
1 hour ago, TheGamerBoy96 said:

Thanks for the answer!

Yes i did 2 blend file 1 for actor 0 with just one actor (the top one) and another with actor 1 (the reciving one).
Can you check my xlm? 

S4_7DF2169C_00000000_305CCF1984660BE6.xml

So it looks like you have done everything correctly, but your package name doesn't match that what the XML says, try rename your package too TheGamerBoy:WickedWhimsAnimations, I think then it should all appear in game.

Posted
1 hour ago, TURBODRIVER said:

 

I hope it will be useful for you! ?

 

Thanks for the update Turbo, great work! 

 

Does this mean new custom effects could be created and used for animations or only existing EA effects? (My bad I see you answered this in the post.)

Posted
45 minutes ago, Simite said:

So it looks like you have done everything correctly, but your package name doesn't match that what the XML says, try rename your package too TheGamerBoy:WickedWhimsAnimations, I think then it should all appear in game.

Nothing i also did everything from 0 following step by step but the animation appear only if my sim "blowjob xD" himself and the animation is the one for the first actor

Posted
42 minutes ago, TheGamerBoy96 said:

Nothing i also did everything from 0 following step by step but the animation appear only if my sim "blowjob xD" himself and the animation is the one for the first actor

Yeah I just tested it and got the exact same result, could only make it do a solo animation, there's a slight mistake in the way the XML is put together, needs to have actor list connected as part of the first animation. There's a </T> stray in the middle that is closing the animation as a 1 actor animation.

 

You can fix this quickly by moving that </T> in the middle too line 69. (Testing it now)

 

Edit: This fixed it for me, now works with both actors.

Posted
10 minutes ago, Simite said:

Yeah I just tested it and got the exact same result, could only make it do a solo animation, there's a slight mistake in the way the XML is put together, needs to have actor list connected as part of the first animation. There's a </T> stray in the middle that is closing the animation as a 1 actor animation.

 

You can fix this quickly by moving that </T> in the middle too line 69. (Testing it now)

Yeah it works now!

Thank you very very much for your precious help!

Posted
12 minutes ago, TheGamerBoy96 said:

Yeah it works now!

Thank you very very much for your precious help!

You're very welcome, I look forwards to seeing your animations and don't hesitate to ask for help if you need it again. :)

?

Posted

Hello!
I was wondering how to animate objects? I'm pretty sure this was answered before but I can't find it.
I'll try a few things but any help would be greatly appreciated!

Posted

I'm sorry for the double post, but I ran into an Issue. I tried to make an animation with the Pirate Jungle Gym. It does appear in game, but my Sim can't reach the destination, so the animation doesn't start. Any workaround ?

Posted
Just now, LittleDoxy said:

I'm sorry for the double post, but I ran into an Issue. I tried to make an animation with the Pirate Jungle Gym. It does appear in game, but my Sim can't reach the destination, so the animation doesn't start. Any workaround ?

There's a WW setting to directly teleport on the sex place. It isn't a issue related to your animation itself.

Posted
4 minutes ago, Redabyss said:

There's a WW setting to directly teleport on the sex place. It isn't a issue related to your animation itself.

Oh thank you, I forgot about this ! It's working. 

Posted
On 10/22/2018 at 10:49 AM, LittleDoxy said:

Hello!
I was wondering how to animate objects? I'm pretty sure this was answered before but I can't find it.
I'll try a few things but any help would be greatly appreciated!

Like the human, objects have a skeleton.

You animate them in blender, then make a separate save with only the object, import it like a human animation.

The only difference is in the xml: 

> 4.4.6. Variable 'object_animation_clip_name’ is the clip name of your object animation CLIP (ClipName). [OPTIONAL]

 

http://wickedwhims.tumblr.com/post/149598794456/exporting-objects-from-the-sims-4 for exporting objects.

 

Posted
2 hours ago, doan77 said:

Like the human, objects have a skeleton.

You animate them in blender, then make a separate save with only the object, import it like a human animation.

The only difference is in the xml: 

> 4.4.6. Variable 'object_animation_clip_name’ is the clip name of your object animation CLIP (ClipName). [OPTIONAL]

 

http://wickedwhims.tumblr.com/post/149598794456/exporting-objects-from-the-sims-4 for exporting objects.

 

I went through this twice, and it look like I missed it ... twice. Well thank you !

Posted

Hi!

Well, tried something new, Aaaaaaaand something messed my xml... Again!

(could be the lack of sleep, and million other things in mind at the same time, but...)

I made solo animation, tested it with success, Added couple animation and WW doesn't find my Animations any more...

XML:

Spoiler

<!-- Dresser Fak 3 Stages 1.0.8 b -->
<!-- Bethween Ties Teaser -->
<T>
    
        <T n="animation_display_name">0xA2292FDD</T>
        <T n="animation_author">Artista De Bastardo</T>
        <T n="animation_locations"></T> 
        <T n="animation_custom_locations">3909456232,19165697,1952088744,796088854,3134912693,4159204070,2002636134</T> 
        <T n="object_animation_clip_name"></T>
      
      <T n="animation_category">TEASING</T> 
      <T n="animation_length">24</T> 
 
        <T n="animation_stage_name">DresFak1</T> 
        <T n="animation_next_stages">DresFak2</T> 
 
      <T n="animation_actors_list">
        <T>
          <T n="actor_id">0</T>
          <T n="animation_clip_name">ArtistaDeBastardo:PosePack_201810290805414449_set_1</T> 
          <T n="animation_type">TEASING</T> 
          <T n="animation_genders">BOTH</T> 
          <T n="animation_pref_gender">MALE</T>
          <T n="animation_naked_flags">BOTTOM</T> 
          <T n="animation_force_nude_feet">0</T>
          <T n="animation_allow_strapon">1</T> 
          
          <T n="actor_interactions"> <!-- List of this actor interactions with other actors -->
            <T>
              <T n="receiving_actor_id">1</T> 
              <T n="receiving_actor_category">VAGINAL</T> 
              <T n="receiving_actor_cum_layers">VAGINA</T> 
              <T n="receiving_actor_cum_inside">0</T> 
            </T>
          </T>
        </T>

        <T>
          <T n="actor_id">1</T> 
          <T n="animation_clip_name">ArtistaDeBastardo:PosePack_201810290805414449_set_2</T> 
          <T n="animation_type">TEASING</T> 
          <T n="animation_genders">FEMALE</T> 
          <T n="animation_pref_gender"></T> 
          <T n="animation_naked_flags">BOTTOM</T> 
          <T n="animation_force_nude_feet">0</T> 
          <T n="animation_allow_strapon">0</T> 
          
          <T n="actor_interactions"> <!-- List of this actor interactions with other actors -->
            <T>
              <T n="receiving_actor_id">0</T> 
              <T n="receiving_actor_category">VAGINAL</T> 
              <T n="receiving_actor_cum_layers">NONE</T>
              <T n="receiving_actor_cum_inside">0</T>
          </T>
        </T>

      </T>
    </T>                    
    
<!-- Bethween Ties Vaginal 1 -->
<T>
    
        <T n="animation_display_name">0x9F292B24</T>
        <T n="animation_author">Artista De Bastardo</T>
        <T n="animation_locations"></T> 
           <T n="animation_custom_locations">3909456232,19165697,1952088744,796088854,3134912693,4159204070,2002636134</T> 
        <T n="object_animation_clip_name"></T>
      
      <T n="animation_category">VAGINAL</T> 
      <T n="animation_length">24</T> 
 
        <T n="animation_stage_name">DresFak2</T> 
        <T n="animation_next_stages">DresFak3</T> 
 
      <T n="animation_actors_list">
        <T>
          <T n="actor_id">0</T>
          <T n="animation_clip_name">ArtistaDeBastardo:PosePack_201810290805414449_set_3</T> 
          <T n="animation_type">VAGINAL</T> 
          <T n="animation_genders">BOTH</T> 
          <T n="animation_pref_gender">MALE</T>
          <T n="animation_naked_flags">BOTTOM</T> 
          <T n="animation_force_nude_feet">0</T>
          <T n="animation_allow_strapon">1</T> 
          
          <T n="actor_interactions"> <!-- List of this actor interactions with other actors -->
            <T>
              <T n="receiving_actor_id">1</T> 
              <T n="receiving_actor_category">VAGINAL</T> 
              <T n="receiving_actor_cum_layers">VAGINA</T> 
              <T n="receiving_actor_cum_inside">0</T> 
            </T>
          </T>
        </T>

        <T>
          <T n="actor_id">1</T> 
          <T n="animation_clip_name">ArtistaDeBastardo:PosePack_201810290805414449_set_4</T> 
          <T n="animation_type">VAGINAL</T> 
          <T n="animation_genders">FEMALE</T> 
          <T n="animation_pref_gender"></T> 
          <T n="animation_naked_flags">BOTTOM</T> 
          <T n="animation_force_nude_feet">0</T> 
          <T n="animation_allow_strapon">0</T> 
          
          <T n="actor_interactions"> <!-- List of this actor interactions with other actors -->
            <T>
              <T n="receiving_actor_id">0</T> 
              <T n="receiving_actor_category">VAGINAL</T> 
              <T n="receiving_actor_cum_layers">NONE</T>
              <T n="receiving_actor_cum_inside">0</T>
          </T>
        </T>

      </T>
    </T>                    
    
<!-- Bethween Ties Vaginal 2 -->
<T>
    
        <T n="animation_display_name">0xA0292CB7</T>
        <T n="animation_author">Artista De Bastardo</T>
        <T n="animation_locations"></T> 
           <T n="animation_custom_locations">3909456232,19165697,1952088744,796088854,3134912693,4159204070,2002636134</T> 
        <T n="object_animation_clip_name"></T>
      
      <T n="animation_category">VAGINAL</T> 
      <T n="animation_length">25</T> 
 
        <T n="animation_stage_name">DresFak3</T> 
        <T n="animation_next_stages"></T> 
 
      <T n="animation_actors_list">
        <T>
          <T n="actor_id">0</T>
          <T n="animation_clip_name">ArtistaDeBastardo:PosePack_201810290805414449_set_5</T> 
          <T n="animation_type">VAGINAL</T> 
          <T n="animation_genders">BOTH</T> 
          <T n="animation_pref_gender">MALE</T>
          <T n="animation_naked_flags">BOTTOM</T> 
          <T n="animation_force_nude_feet">0</T>
          <T n="animation_allow_strapon">1</T> 
          
          <T n="actor_interactions"> <!-- List of this actor interactions with other actors -->
            <T>
              <T n="receiving_actor_id">1</T> 
              <T n="receiving_actor_category">VAGINAL</T> 
              <T n="receiving_actor_cum_layers">VAGINA</T> 
              <T n="receiving_actor_cum_inside">0</T> 
            </T>
          </T>
        </T>

        <T>
          <T n="actor_id">1</T> 
          <T n="animation_clip_name">ArtistaDeBastardo:PosePack_201810290805414449_set_6</T> 
          <T n="animation_type">VAGINAL</T> 
          <T n="animation_genders">FEMALE</T> 
          <T n="animation_pref_gender"></T> 
          <T n="animation_naked_flags">BOTTOM</T> 
          <T n="animation_force_nude_feet">0</T> 
          <T n="animation_allow_strapon">0</T> 
          
          <T n="actor_interactions"> <!-- List of this actor interactions with other actors -->
            <T>
              <T n="receiving_actor_id">0</T> 
              <T n="receiving_actor_category">VAGINAL</T> 
              <T n="receiving_actor_cum_layers">NONE</T>
              <T n="receiving_actor_cum_inside">0</T>
          </T>
        </T>

      </T>
    </T>                    
        

 Before these lines were added ALL worked, so mistake must be in these line, but is it the "custom_Location" I'm trying to get animations for dressers, and the WWID's are collected from game... (those should be around same size, so no clipping expected...), or is DRESSER an valid location, without WWID needed?

 

Spoiler

DresserTease.gif.c32b5bdeccc2df60d44a64c5e21f3ad0.gif

DresserVag1.gif.cbffbcac943bf7ad804adb7421abf2eb.gif

DresserVag2.gif.f93c594728d670e73a2b0a7693cc0994.gif

 

Gratzie in advance!

Posted
17 hours ago, HKo_83 said:

Hi!

Well, tried something new, Aaaaaaaand something messed my xml... Again!

(could be the lack of sleep, and million other things in mind at the same time, but...)

I made solo animation, tested it with success, Added couple animation and WW doesn't find my Animations any more...

XML:

  Reveal hidden contents

<!-- Dresser Fak 3 Stages 1.0.8 b -->
<!-- Bethween Ties Teaser -->
<T>
    
        <T n="animation_display_name">0xA2292FDD</T>
        <T n="animation_author">Artista De Bastardo</T>
        <T n="animation_locations"></T> 
        <T n="animation_custom_locations">3909456232,19165697,1952088744,796088854,3134912693,4159204070,2002636134</T> 
        <T n="object_animation_clip_name"></T>
      
      <T n="animation_category">TEASING</T> 
      <T n="animation_length">24</T> 
 
        <T n="animation_stage_name">DresFak1</T> 
        <T n="animation_next_stages">DresFak2</T> 
 
      <T n="animation_actors_list">
        <T>
          <T n="actor_id">0</T>
          <T n="animation_clip_name">ArtistaDeBastardo:PosePack_201810290805414449_set_1</T> 
          <T n="animation_type">TEASING</T> 
          <T n="animation_genders">BOTH</T> 
          <T n="animation_pref_gender">MALE</T>
          <T n="animation_naked_flags">BOTTOM</T> 
          <T n="animation_force_nude_feet">0</T>
          <T n="animation_allow_strapon">1</T> 
          
          <T n="actor_interactions"> <!-- List of this actor interactions with other actors -->
            <T>
              <T n="receiving_actor_id">1</T> 
              <T n="receiving_actor_category">VAGINAL</T> 
              <T n="receiving_actor_cum_layers">VAGINA</T> 
              <T n="receiving_actor_cum_inside">0</T> 
            </T>
          </T>
        </T>

        <T>
          <T n="actor_id">1</T> 
          <T n="animation_clip_name">ArtistaDeBastardo:PosePack_201810290805414449_set_2</T> 
          <T n="animation_type">TEASING</T> 
          <T n="animation_genders">FEMALE</T> 
          <T n="animation_pref_gender"></T> 
          <T n="animation_naked_flags">BOTTOM</T> 
          <T n="animation_force_nude_feet">0</T> 
          <T n="animation_allow_strapon">0</T> 
          
          <T n="actor_interactions"> <!-- List of this actor interactions with other actors -->
            <T>
              <T n="receiving_actor_id">0</T> 
              <T n="receiving_actor_category">VAGINAL</T> 
              <T n="receiving_actor_cum_layers">NONE</T>
              <T n="receiving_actor_cum_inside">0</T>
          </T>
        </T>

      </T>
    </T>                    
    
<!-- Bethween Ties Vaginal 1 -->
<T>
    
        <T n="animation_display_name">0x9F292B24</T>
        <T n="animation_author">Artista De Bastardo</T>
        <T n="animation_locations"></T> 
           <T n="animation_custom_locations">3909456232,19165697,1952088744,796088854,3134912693,4159204070,2002636134</T> 
        <T n="object_animation_clip_name"></T>
      
      <T n="animation_category">VAGINAL</T> 
      <T n="animation_length">24</T> 
 
        <T n="animation_stage_name">DresFak2</T> 
        <T n="animation_next_stages">DresFak3</T> 
 
      <T n="animation_actors_list">
        <T>
          <T n="actor_id">0</T>
          <T n="animation_clip_name">ArtistaDeBastardo:PosePack_201810290805414449_set_3</T> 
          <T n="animation_type">VAGINAL</T> 
          <T n="animation_genders">BOTH</T> 
          <T n="animation_pref_gender">MALE</T>
          <T n="animation_naked_flags">BOTTOM</T> 
          <T n="animation_force_nude_feet">0</T>
          <T n="animation_allow_strapon">1</T> 
          
          <T n="actor_interactions"> <!-- List of this actor interactions with other actors -->
            <T>
              <T n="receiving_actor_id">1</T> 
              <T n="receiving_actor_category">VAGINAL</T> 
              <T n="receiving_actor_cum_layers">VAGINA</T> 
              <T n="receiving_actor_cum_inside">0</T> 
            </T>
          </T>
        </T>

        <T>
          <T n="actor_id">1</T> 
          <T n="animation_clip_name">ArtistaDeBastardo:PosePack_201810290805414449_set_4</T> 
          <T n="animation_type">VAGINAL</T> 
          <T n="animation_genders">FEMALE</T> 
          <T n="animation_pref_gender"></T> 
          <T n="animation_naked_flags">BOTTOM</T> 
          <T n="animation_force_nude_feet">0</T> 
          <T n="animation_allow_strapon">0</T> 
          
          <T n="actor_interactions"> <!-- List of this actor interactions with other actors -->
            <T>
              <T n="receiving_actor_id">0</T> 
              <T n="receiving_actor_category">VAGINAL</T> 
              <T n="receiving_actor_cum_layers">NONE</T>
              <T n="receiving_actor_cum_inside">0</T>
          </T>
        </T>

      </T>
    </T>                    
    
<!-- Bethween Ties Vaginal 2 -->
<T>
    
        <T n="animation_display_name">0xA0292CB7</T>
        <T n="animation_author">Artista De Bastardo</T>
        <T n="animation_locations"></T> 
           <T n="animation_custom_locations">3909456232,19165697,1952088744,796088854,3134912693,4159204070,2002636134</T> 
        <T n="object_animation_clip_name"></T>
      
      <T n="animation_category">VAGINAL</T> 
      <T n="animation_length">25</T> 
 
        <T n="animation_stage_name">DresFak3</T> 
        <T n="animation_next_stages"></T> 
 
      <T n="animation_actors_list">
        <T>
          <T n="actor_id">0</T>
          <T n="animation_clip_name">ArtistaDeBastardo:PosePack_201810290805414449_set_5</T> 
          <T n="animation_type">VAGINAL</T> 
          <T n="animation_genders">BOTH</T> 
          <T n="animation_pref_gender">MALE</T>
          <T n="animation_naked_flags">BOTTOM</T> 
          <T n="animation_force_nude_feet">0</T>
          <T n="animation_allow_strapon">1</T> 
          
          <T n="actor_interactions"> <!-- List of this actor interactions with other actors -->
            <T>
              <T n="receiving_actor_id">1</T> 
              <T n="receiving_actor_category">VAGINAL</T> 
              <T n="receiving_actor_cum_layers">VAGINA</T> 
              <T n="receiving_actor_cum_inside">0</T> 
            </T>
          </T>
        </T>

        <T>
          <T n="actor_id">1</T> 
          <T n="animation_clip_name">ArtistaDeBastardo:PosePack_201810290805414449_set_6</T> 
          <T n="animation_type">VAGINAL</T> 
          <T n="animation_genders">FEMALE</T> 
          <T n="animation_pref_gender"></T> 
          <T n="animation_naked_flags">BOTTOM</T> 
          <T n="animation_force_nude_feet">0</T> 
          <T n="animation_allow_strapon">0</T> 
          
          <T n="actor_interactions"> <!-- List of this actor interactions with other actors -->
            <T>
              <T n="receiving_actor_id">0</T> 
              <T n="receiving_actor_category">VAGINAL</T> 
              <T n="receiving_actor_cum_layers">NONE</T>
              <T n="receiving_actor_cum_inside">0</T>
          </T>
        </T>

      </T>
    </T>                    
        

 Before these lines were added ALL worked, so mistake must be in these line, but is it the "custom_Location" I'm trying to get animations for dressers, and the WWID's are collected from game... (those should be around same size, so no clipping expected...), or is DRESSER an valid location, without WWID needed?

 

  Reveal hidden contents

DresserTease.gif.c32b5bdeccc2df60d44a64c5e21f3ad0.gif

DresserVag1.gif.cbffbcac943bf7ad804adb7421abf2eb.gif

DresserVag2.gif.f93c594728d670e73a2b0a7693cc0994.gif

 

Gratzie in advance!

I can't see any obvious mistakes in the XML, I think for Dressers you will need to use the WWID's like you already did.

I can only assume that possibly the mistake is made when you paste into your existing XML, if you send me the entire XML with this part in it, I can better check for mistakes.

Posted
On 10/29/2018 at 8:41 AM, HKo_83 said:

Hi!

Well, tried something new, Aaaaaaaand something messed my xml... Again!

(could be the lack of sleep, and million other things in mind at the same time, but...)

I made solo animation, tested it with success, Added couple animation and WW doesn't find my Animations any more...

XML:

  Reveal hidden contents

<!-- Dresser Fak 3 Stages 1.0.8 b -->
<!-- Bethween Ties Teaser -->
<T>
    
        <T n="animation_display_name">0xA2292FDD</T>
        <T n="animation_author">Artista De Bastardo</T>
        <T n="animation_locations"></T> 
        <T n="animation_custom_locations">3909456232,19165697,1952088744,796088854,3134912693,4159204070,2002636134</T> 
        <T n="object_animation_clip_name"></T>
      
      <T n="animation_category">TEASING</T> 
      <T n="animation_length">24</T> 
 
        <T n="animation_stage_name">DresFak1</T> 
        <T n="animation_next_stages">DresFak2</T> 
 
      <T n="animation_actors_list">
        <T>
          <T n="actor_id">0</T>
          <T n="animation_clip_name">ArtistaDeBastardo:PosePack_201810290805414449_set_1</T> 
          <T n="animation_type">TEASING</T> 
          <T n="animation_genders">BOTH</T> 
          <T n="animation_pref_gender">MALE</T>
          <T n="animation_naked_flags">BOTTOM</T> 
          <T n="animation_force_nude_feet">0</T>
          <T n="animation_allow_strapon">1</T> 
          
          <T n="actor_interactions"> <!-- List of this actor interactions with other actors -->
            <T>
              <T n="receiving_actor_id">1</T> 
              <T n="receiving_actor_category">VAGINAL</T> 
              <T n="receiving_actor_cum_layers">VAGINA</T> 
              <T n="receiving_actor_cum_inside">0</T> 
            </T>
          </T>
        </T>

        <T>
          <T n="actor_id">1</T> 
          <T n="animation_clip_name">ArtistaDeBastardo:PosePack_201810290805414449_set_2</T> 
          <T n="animation_type">TEASING</T> 
          <T n="animation_genders">FEMALE</T> 
          <T n="animation_pref_gender"></T> 
          <T n="animation_naked_flags">BOTTOM</T> 
          <T n="animation_force_nude_feet">0</T> 
          <T n="animation_allow_strapon">0</T> 
          
          <T n="actor_interactions"> <!-- List of this actor interactions with other actors -->
            <T>
              <T n="receiving_actor_id">0</T> 
              <T n="receiving_actor_category">VAGINAL</T> 
              <T n="receiving_actor_cum_layers">NONE</T>
              <T n="receiving_actor_cum_inside">0</T>
          </T>
        </T>

      </T>
    </T>                    
    
<!-- Bethween Ties Vaginal 1 -->
<T>
    
        <T n="animation_display_name">0x9F292B24</T>
        <T n="animation_author">Artista De Bastardo</T>
        <T n="animation_locations"></T> 
           <T n="animation_custom_locations">3909456232,19165697,1952088744,796088854,3134912693,4159204070,2002636134</T> 
        <T n="object_animation_clip_name"></T>
      
      <T n="animation_category">VAGINAL</T> 
      <T n="animation_length">24</T> 
 
        <T n="animation_stage_name">DresFak2</T> 
        <T n="animation_next_stages">DresFak3</T> 
 
      <T n="animation_actors_list">
        <T>
          <T n="actor_id">0</T>
          <T n="animation_clip_name">ArtistaDeBastardo:PosePack_201810290805414449_set_3</T> 
          <T n="animation_type">VAGINAL</T> 
          <T n="animation_genders">BOTH</T> 
          <T n="animation_pref_gender">MALE</T>
          <T n="animation_naked_flags">BOTTOM</T> 
          <T n="animation_force_nude_feet">0</T>
          <T n="animation_allow_strapon">1</T> 
          
          <T n="actor_interactions"> <!-- List of this actor interactions with other actors -->
            <T>
              <T n="receiving_actor_id">1</T> 
              <T n="receiving_actor_category">VAGINAL</T> 
              <T n="receiving_actor_cum_layers">VAGINA</T> 
              <T n="receiving_actor_cum_inside">0</T> 
            </T>
          </T>
        </T>

        <T>
          <T n="actor_id">1</T> 
          <T n="animation_clip_name">ArtistaDeBastardo:PosePack_201810290805414449_set_4</T> 
          <T n="animation_type">VAGINAL</T> 
          <T n="animation_genders">FEMALE</T> 
          <T n="animation_pref_gender"></T> 
          <T n="animation_naked_flags">BOTTOM</T> 
          <T n="animation_force_nude_feet">0</T> 
          <T n="animation_allow_strapon">0</T> 
          
          <T n="actor_interactions"> <!-- List of this actor interactions with other actors -->
            <T>
              <T n="receiving_actor_id">0</T> 
              <T n="receiving_actor_category">VAGINAL</T> 
              <T n="receiving_actor_cum_layers">NONE</T>
              <T n="receiving_actor_cum_inside">0</T>
          </T>
        </T>

      </T>
    </T>                    
    
<!-- Bethween Ties Vaginal 2 -->
<T>
    
        <T n="animation_display_name">0xA0292CB7</T>
        <T n="animation_author">Artista De Bastardo</T>
        <T n="animation_locations"></T> 
           <T n="animation_custom_locations">3909456232,19165697,1952088744,796088854,3134912693,4159204070,2002636134</T> 
        <T n="object_animation_clip_name"></T>
      
      <T n="animation_category">VAGINAL</T> 
      <T n="animation_length">25</T> 
 
        <T n="animation_stage_name">DresFak3</T> 
        <T n="animation_next_stages"></T> 
 
      <T n="animation_actors_list">
        <T>
          <T n="actor_id">0</T>
          <T n="animation_clip_name">ArtistaDeBastardo:PosePack_201810290805414449_set_5</T> 
          <T n="animation_type">VAGINAL</T> 
          <T n="animation_genders">BOTH</T> 
          <T n="animation_pref_gender">MALE</T>
          <T n="animation_naked_flags">BOTTOM</T> 
          <T n="animation_force_nude_feet">0</T>
          <T n="animation_allow_strapon">1</T> 
          
          <T n="actor_interactions"> <!-- List of this actor interactions with other actors -->
            <T>
              <T n="receiving_actor_id">1</T> 
              <T n="receiving_actor_category">VAGINAL</T> 
              <T n="receiving_actor_cum_layers">VAGINA</T> 
              <T n="receiving_actor_cum_inside">0</T> 
            </T>
          </T>
        </T>

        <T>
          <T n="actor_id">1</T> 
          <T n="animation_clip_name">ArtistaDeBastardo:PosePack_201810290805414449_set_6</T> 
          <T n="animation_type">VAGINAL</T> 
          <T n="animation_genders">FEMALE</T> 
          <T n="animation_pref_gender"></T> 
          <T n="animation_naked_flags">BOTTOM</T> 
          <T n="animation_force_nude_feet">0</T> 
          <T n="animation_allow_strapon">0</T> 
          
          <T n="actor_interactions"> <!-- List of this actor interactions with other actors -->
            <T>
              <T n="receiving_actor_id">0</T> 
              <T n="receiving_actor_category">VAGINAL</T> 
              <T n="receiving_actor_cum_layers">NONE</T>
              <T n="receiving_actor_cum_inside">0</T>
          </T>
        </T>

      </T>
    </T>                    
        

 Before these lines were added ALL worked, so mistake must be in these line, but is it the "custom_Location" I'm trying to get animations for dressers, and the WWID's are collected from game... (those should be around same size, so no clipping expected...), or is DRESSER an valid location, without WWID needed?

 

  Reveal hidden contents

DresserTease.gif.c32b5bdeccc2df60d44a64c5e21f3ad0.gif

DresserVag1.gif.cbffbcac943bf7ad804adb7421abf2eb.gif

DresserVag2.gif.f93c594728d670e73a2b0a7693cc0994.gif

 

Gratzie in advance!

upload your xml file, it's easier to spot an error with notepad++, than reading it like this.

What text editor do you use ?

Posted
On 10/30/2018 at 3:04 AM, Simite said:

I can't see any obvious mistakes in the XML, I think for Dressers you will need to use the WWID's like you already did.

I can only assume that possibly the mistake is made when you paste into your existing XML, if you send me the entire XML with this part in it, I can better check for mistakes.

 

20 hours ago, doan77 said:

upload your xml file, it's easier to spot an error with notepad++, than reading it like this.

What text editor do you use ?

 

I'm using notepad++ and everything looks there ok. ( only existing XML is in my package... and at the moment this part is removed from there... / on latest LL update I did not have these animations done yet..  ). 

And I don't believe it's the actual XML, because only extracting these lines enables the animations appear again into the game, If I remember correctly I had a similar problem some time ago, and eventually just removing empty lines cured the problem back then... Have to read back this treat if I'll find it again... and try to dol the same fix again.

I'm still using the 1st or 2nd xml template released but as Turbodriver advised me there should be no problem if I don't mix the latest and what I'm using... There for the mistake might be the custom location line as I don't have it in any other animation...

 

XML inside: [ edit: the last 3 animations included in this xml ]

 

[EDIT 2nd time - While on it I readed the animations and foud difference towards working animation lines]

I think I've found the error in some part making the xml I think I've lost same lines:

Spoiler

Error.jpg.ad6f13513415a8847790d9689edea76c.jpg

So to me it looks like I'm missing a closure of something in all three sets of animations...  

Posted

WOOOOP DI FAKIN DOODAA! I got it right, and working!!!

Spoiler

808530233_Collisionnotice.jpg.f328ef33186dd92307828c9c80059317.jpg Thou, this one appeared but broke nothing, may have somethign to do with multiple custom locations?

 

 

 

[edit:]

In case you want to use the locations pleas copy them freely, they are "all" the dressers around same size in height and width being mainly every 2x1 sized dressers

 

Posted
On 10/31/2018 at 6:18 AM, HKo_83 said:

WOOOOP DI FAKIN DOODAA! I got it right, and working!!!

  Reveal hidden contents

808530233_Collisionnotice.jpg.f328ef33186dd92307828c9c80059317.jpg Thou, this one appeared but broke nothing, may have somethign to do with multiple custom locations?

 

 

 

[edit:]

In case you want to use the locations pleas copy them freely, they are "all" the dressers around same size in height and width being mainly every 2x1 sized dressers

 

I'm glad you where able to spot the problem, just to be sure about that message I would check you don't have multiple versions of your own package in your mods folder.

Posted
23 hours ago, Simite said:

I'm glad you where able to spot the problem, just to be sure about that message I would check you don't have multiple versions of your own package in your mods folder.

I found that one too after multi checking the xml, I had last animation doubled, fixed and added all dressers of same height and width as custom locations, so mainly all bigger are now included.

Going to make few more M+F & F+F and small variants for M+M rigs to have something to publish... And I finally learned how to make the animations so that facial expressions and small body movements are easier to fill in...

Spoiler

Old way; As I made the the two main poses and AA+LocRot and saved all the bones, then copy pasted it in timeline for desired speed...

967335314_Oldhabits.png.5c2b237dd4bf833f6c5ff9159dddf33e.png

Spoiler

New way leaves everything un-moved free for later tweaking... took only 2 years to learn not to hit AA, but instead I+LocRot everytime some bone was moved

1297055500_newway.png.df332c2b47eb5fd37ca994aa4673e3a8.png

 

 

 

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...