Difference between revisions of "Shipdata structure"

From Elite Wiki
m
m
Line 20: Line 20:
  
 
'''[[shipdata.plist|BACK]]'''
 
'''[[shipdata.plist|BACK]]'''
 +
 +
[[Category:Oolite]]

Revision as of 14:22, 12 July 2006

Every entity is defined by a title-key, followed by a <dict>ionary of the object's properties. Do not use '-'(minus symbol) in the entity title.

The structure of the shipdata.plist is as follows:
***usual XML-Header info***
<plist>
<dict>
  <key>my_object</key>
  <dict>
    (all relevant property entries)
  </dict>
  <!-- between these everything will be ignored, convenient for selfcomments --> 
  <key>my_second_object</key>
  <dict>
    (all relevant property entries)
  </dict>
</dict>
</plist>

BACK