Please login or register.

Login with username, password and session length
Advanced search  

News:

IRC channel - server: waelisch.de  channel: #wme (read more)

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Messages - FogGobbler

Pages: 1 [2] 3 4 ... 16
16
Technical forum / Animation judder
« on: February 25, 2009, 08:23:57 AM »
Hi, again!

I need your help again, sorry, guys.

I want my character to drink something, then hold the glas at his mouth, say "This is nice..." and then drop the hand with the glas.

So I´ve got three animations defined in my X file

drinkCoffee 0-30
holdCoffee 30-30 (looped = true)
dropCoffee 31-60

This is the code:

Code: WME Script
  1. actor.PlayAnim("drinkCoffee"); // move glas to mouth
  2. actor.PlayAnimAsync("holdCoffee"); // hold glas at mouth position
  3. Sleep(300);
  4. actor.Talk("Ahh");
  5. Sleep(2000);
  6. actor.PlayAnim("dropCoffee"); // drop hand

It works, but I get a nasty judder between the animations. Setting the transition doesn´t help  :(

17
Technical forum / Re: Talking and playing an animation at the same time...
« on: February 25, 2009, 08:16:12 AM »
Yes, I´ve tried that, too. The problem with this is that the animation is repeated as long as the character talks.
I just want to play a certain animation once whilst he is talking.

18
Technical forum / Talking and playing an animation at the same time...
« on: February 24, 2009, 11:10:19 PM »
Hi!

I want to play a certain animation when my character talks something, but I don´t want ot use the standard "talk" animation, because it´s too random, if you know what I mean.

I´ve tried:

Code: WME Script
  1. actor.PlayAnimAsync("talkGesture02");
  2. actor.Talk("I now am talking something. I don´t really know what to say. I´m really quite dumb.");

But my animation gets cut off as soon as my character starts to talk.

I thought thiswould work..

Code: WME Script
  1. actor.TalkAsync("I now am talking something. I don´t really know what to say. I´m really quite dumb.");
  2. actor.PlayAnim("talkGesture02");
  3.  

.. but he doesn´t want to talk to me.

Then I tried this..

Code: WME Script
  1. actor.PlayAnimChannelAsync(1,"talkGesture02");
  2. actor.Talk("I now am talking something. I don´t really know what to say. I´m really quite dumb.");

.. and that works, but after playing the animation it "jumps" back to the idle animation. Setting the transitiontime didn´t work, because of the different channels (?).

Thankful for any help,
Oli

19
Technical forum / Re: Urgent question : actor in region
« on: February 10, 2009, 04:55:29 PM »
Thank you very much!  :)

20
Technical forum / Urgent question : actor in region
« on: February 10, 2009, 02:45:58 PM »
Hi!

Sorry, but I have an urgent question..

How can I see which actor is in a region? I´ve got two 3D actors, one named "actor" and the other "dog". Now I´ve set up a trigger zone with the "ActorEntry" event, but I only want the dog to trigger the event, not the main character called actor.

Thanks,
Oli

21
Done / Ambient light for specific 3D actors
« on: February 06, 2009, 06:03:49 PM »
Hi!

Well I´ve solved the problem with the sky-3D-actor (http://forum.dead-code.org/index.php?topic=3421.0).

The problem was that it wasn´t lit up properly, causing verys strange black patches on the sky actor  ::slug

So that´s why I come up with my feature request.

Would it be possible to add something like 
Code: [Select]
actor.ambientlight = makeRGB(r,g,b,a)so that a specific actor has a "global" light, but doesn´t affect the other 3D actors.

That would be very useful, because I could use that to light up the sky actor, without affecting the other 3D actors.

22
Technical forum / Re: "3D Sky actor" making problems..
« on: February 06, 2009, 10:25:14 AM »
Does the scene cam have to inside the rotating cylinder or does it have to be outside?
Another very strange thing is that the rotation speed alters. It starts of slowly and speeds up  ::slug
Perhaps it´s a positioning problem, could that be the problem..

Very puzzled Oli

EDIT: Solved :-)) see http://forum.dead-code.org/index.php?topic=3425.0

23
Not a bug / Re: Right/Left double click on 3D actors
« on: February 06, 2009, 06:56:28 AM »
Well, that´s strange, because I´ve taken the WME 3D demo as a starting point. Anyway, I´ll have a look at the scripts again.

Thanks,
Oli

24
Not a bug / Re: Right/Left double click on 3D actors
« on: February 05, 2009, 06:03:54 PM »
Hmm, well I added the code to the game.script, but I still can´t get the doubleclick to work on 3D actors. Otherwise the doubleclick works on "normal" region entities.

25
Technical forum / Re: "3D Sky actor" making problems..
« on: February 04, 2009, 09:21:47 PM »
yep.

26
Technical forum / "3D Sky actor" making problems..
« on: February 04, 2009, 02:32:32 PM »
Hi!

I´m using a "3D sky actor" for my ..ehm.. sky.

I just use a cylinder that slowly rotates round the scene. At the beginning everything is fine:




But after a while the sky vanishes, leaving behind a "black hole" ;-)) . After a while it turns up again...



I´ve turned on drawbackfaces and fiddled with the normals, but nothing works :-(

27
Game design / Re: Channel animation problem in Max
« on: February 02, 2009, 06:02:07 PM »
Hi!

Thanks for your reply. I´m using a character studio biped and say I want to wave the left arm I select all other bones and delete their tracks. So I´ve only got the left arm moving (shoulder, arm and fingers)

If I select all non-moving bones I can´t see any keyframes anymore.

Now I´ve exported as you suggested, but strangely enough if I look at the keyframes in fragMotion I still can see a keyframe at the beginning of my animation and at the end for these non-moving bones.

I tried all other settings, but that didn´t turn out either.
Any ideas?

28
Game design / Channel animation problem in Max
« on: January 31, 2009, 10:29:22 AM »
Hi!

I´m using max for character animation, but I´ve got problem with the "PlayAnimChannelAsync" - animations.

I know that the "channel" animations should only have keyframes on the parts of the body the animation uses and none on all the rest so thatonly the channel animation overrides the "normal" animation. I hope you know what I mean..

Now in max I´ve deleted all keyframes of the rest of the body, but if I look at the file in fragMotion there are keyframes everywhere. If I delete them in fragMotion, everything works fine, but that isn´t very good for my workflow.

It sounds stupid, but how can I delete all (but the ones needed) keyframes in max?

Thanks,
Oli

29
Not a bug / Right/Left double click on 3D actors
« on: January 31, 2009, 12:41:41 AM »
Hi!

I´ve noticed a possible bug.

The "RightDoubleClick" and "LeftDoubleClick" events don´t seem to work on 3D actors.

30
Technical forum / Turning animation
« on: January 29, 2009, 02:34:06 AM »
Hi!

Still having problems with my turn animation. This time a technical problem  ::slug

Since a can´t make a loopable turning animation I´ve set is to loop=false.

Now the character turns nicely, but if it turns more than a quarter circle, the animation starts to jerk/flicker, and sometimes you can see the "Da Vinci" pose of the character for a millisecond.

Please give me some advice...
Thanks,
Oli

Pages: 1 [2] 3 4 ... 16

Page created in 0.079 seconds with 20 queries.