Walk view: Difference between revisions

Jump to navigation Jump to search
849 bytes added ,  14 September 2016
m (typos)
Line 263: Line 263:


To add the Walker to your Aircraft replace the <PropertyList> Entry at the top of your -set file with this:
To add the Walker to your Aircraft replace the <PropertyList> Entry at the top of your -set file with this:
         
<syntaxhighlight lang="xml">         
<PropertyList include="Aircraft/Generic/Human/Include/walker-include.xml">
<PropertyList include="Aircraft/Generic/Human/Include/walker-include.xml">
 
</syntaxhighlight>
This includes all Properties for the Walker, Key Bindings and a Menubar Entry. The Keys "a", "A" and "s" have their normal Binding when not in Walk View or Walker Orbit View.
This includes all Properties for the Walker, Key Bindings and a Menubar Entry. The Keys "a", "A" and "s" have their normal Binding when not in Walk View or Walker Orbit View.


To have a custom Exit Point add the following Properties to the <model> section in your Aircrafts -set file:
To have a custom Exit Point add the following Properties to the <model> section in your Aircraft's -set file:
  <map>
  <map>
   <default_exit>
   <default_exit>
Line 285: Line 285:


The following properties control the appearance of the pilot and co-pilot. They are located in the /sim/model/ section of the -set file:
The following properties control the appearance of the pilot and co-pilot. They are located in the /sim/model/ section of the -set file:
 
<syntaxhighlight lang="xml">
  <crew>
  <crew>
   <pilot n="0">
   <pilot n="0">
Line 300: Line 300:
   </pilot>
   </pilot>
  </crew>
  </crew>
</syntaxhighlight>
here is an example with one pilot and 2 passengers "npc0" and "npc1" (non player character):
<syntaxhighlight lang="xml">
<crew>
  <pilot n="0">
  <pose include = "Include/ju52_pilot.xml"></pose>
  <gender>0</gender>
  <character>0</character>
  <outfit>2</outfit>
  </pilot>
</crew>
<npc n="0">
    <pose include = "Include/ju52_pilot.xml"></pose>
    <gender>0</gender>
    <character>1</character>
    <outfit>0</outfit>
    <hair>2</hair>
</npc>
<npc n="1">
    <pose include = "Include/walker_sit.xml"></pose>
    <gender>0</gender>
    <character>0</character>
    <outfit>0</outfit>
    <headgear>1</headgear>
    <eyewear>0</eyewear>
    <mask>0</mask>
    <hair>1</hair>
    <toolr>1</toolr>
</npc>
</syntaxhighlight>


=== Custom movements ===
=== Custom movements ===
476

edits

Navigation menu