RE: LEGO 2 LDraw 2 BL
2019-04-07, 18:40 (This post was last modified: 2019-04-07, 18:41 by Roland Melkert.)
2019-04-07, 18:40 (This post was last modified: 2019-04-07, 18:41 by Roland Melkert.)
(2019-04-07, 12:05)Willy Tschager Wrote: How would an information like this treated in an editor? Would it show also the alternate number or just jump to the right part is an element number is entered say in a search?
Could be as simple as XML:
Code:
<items>
<item src="6228b" dst="6228"/>
</items>
or JSON:
Code:
[{src: '6228b', dst: '6228'}]
or even CSV
Code:
6228b,6228
An editor would use it as a translation table.
Any format could be generated if the 3rd party names would be stored in the parts tracker as metadata.
We could also introduce a new LDraw meta for this, and add it to the parts themselves. Eliminating the need for an index file altogether.