Author Topic: Crew member sizes  (Read 1479 times)

Offline Lurok91

  • Posts: 1309
  • Cookies: 2062
  • SPMod Developer (Retired)
    • Lurok91 Mods
Crew member sizes
« on: April 21, 2010, 03:27:29 PM »
Sorry to post if obvious answers, or only Excalibur lot can answer (have emailed and pm'd Mark, but no response yet).  As develop bridge skills these sort of questions pop up  :)

Are the crew member sizes fixed?   It seems:
Saffi & Felix - Large
Kiska - Medium
Brex & Miguel - Small

But this changes on some bridges.

And can anims from one size be applied to another?  e.g., can Brex use Felix animations? 





Offline Morgan

  • Moderator
  • Posts: 1340
  • Cookies: 65535
Re: Crew member sizes
« Reply #1 on: April 21, 2010, 04:11:35 PM »
If I remember correctly I think animations plays a part in crew size. I base this off of the canon crew fix for the Sovereign bridge. When Kiska was moved to Felix's position and Miguel to Kiska's, their sizes changed because they used the formers animations in those spots.

So with that said animations can obviously be switched between characters, but they just look a little funny afterwords.

I don't know if there are other factors in crew size, besides animations. If there are the Excalibur team should know.

Offline JimmyB76

  • Posts: 6423
  • Cookies: 421
Re: Crew member sizes
« Reply #2 on: April 21, 2010, 04:57:36 PM »
crew member sizes can be anything really...
there was once a funny shot where mark (i think) made saffi very small, and also Sovvy just posted a screenshot of a very huge saffi...
http://bc-central.net/forums/index.php/topic,6041.msg143188.html#msg143188
(you may want to PM Sovvy and ask how he did it)

as far as animations, i dont think they could be interchanged; however, perhaps like-animations (large-large, medium-medium, etc) could, so it might be one of those trial and error things...

Offline Mario

  • Senior Software Developer
  • Administrator
  • Posts: 2200
  • Cookies: 1707
  • Life is life
Re: Crew member sizes
« Reply #3 on: April 21, 2010, 08:08:58 PM »
Quote
Sorry to post if obvious answers, or only Excalibur lot can answer (have emailed and pm'd Mark, but no response yet).

Any scripter who knows what he's doing should be able to answer these. This is more of a scripting question.

Quote
Are the crew member sizes fixed?   It seems:
Saffi & Felix - Large
Kiska - Medium
Brex & Miguel - Small

No, these are defined in the character configuration scripts. Each bridge (for a very long time I didn't download a bridge mod) used to have its own configuration scripts for each character.

Char sizs is i.e. defined by something like this
Code: [Select]
pChar.SetSize(App.CharacterClass.SMALL)
pChar.SetSize(App.CharacterClass.MEDIUM)
pChar.SetSize(App.CharacterClass.LARGE)

and you can also set the characters scale using
Code: [Select]
pChar.SetScale(1.0) # float value

Quote
But this changes on some bridges.

As I said each bridge has different config settings, each unique scripts (of course some bridges reuse existing scripts but you can write new ones).

Quote
And can anims from one size be applied to another?  e.g., can Brex use Felix animations? 

Animations are also defined in these scripts, one by one. You also define random animation chance, blink rate etc.

Just trying to give you some kind of prespective.

But remember that 3rd era had a scripter to help them in certain areas (they had Mleo, then later on Lost_Jedi or LJ now).

Oh and BTW if you switch sizes you can then switch from using i.e. you had a character which was small then switched to large you can just swap to use the large animation types then (mind that some animations are considered common).

That should have you covered.
Acta, non verba.
aka USS Sovereign

Offline Lurok91

  • Posts: 1309
  • Cookies: 2062
  • SPMod Developer (Retired)
    • Lurok91 Mods
Re: Crew member sizes
« Reply #4 on: April 21, 2010, 08:21:04 PM »
Thanks Sovereign. Discovering lot of this thru experimentation, but nice to have in b&w  :)   Thanks again. Very useful.

Offline Mario

  • Senior Software Developer
  • Administrator
  • Posts: 2200
  • Cookies: 1707
  • Life is life
Re: Crew member sizes
« Reply #5 on: April 21, 2010, 08:26:02 PM »
Feel free to ask anymore questions here or at BCS-TNG. Although I'm more frequent at BCS-TNG and will always sooner reply there.
Acta, non verba.
aka USS Sovereign