LDraw.org Discussion Forums
LDCad 1.6 Beta 2a (win+linux) - Printable Version

+- LDraw.org Discussion Forums (https://forums.ldraw.org)
+-- Forum: LDraw Programs (https://forums.ldraw.org/forum-7.html)
+--- Forum: LDraw Editors and Viewers (https://forums.ldraw.org/forum-11.html)
+--- Thread: LDCad 1.6 Beta 2a (win+linux) (/thread-22117.html)

Pages: 1 2


RE: LDCad 1.6 Beta 2a (win+linux) - Roland Melkert - 2017-05-24

(2017-05-24, 13:00)Merlijn Wissink Wrote: Take a look at the snap information for part 32555. It's not exactly right  Tongue

Thanks, I don't even know how that happened. Smile


RE: LDCad 1.6 Beta 2a (win+linux) - Merlijn Wissink - 2017-05-25

Another bit of missing/wrong meta information: part 2458 (and possibly other bricks with pin) doesn't mirror correctly.
I hope you don't mind me sending all of these things. Rolleyes
I'm working on a ~16k piece model (not mine, instructions for someone) so I just encounter them 'in the wild'.


RE: LDCad 1.6 Beta 2a (win+linux) - Roland Melkert - 2017-05-25

(2017-05-25, 19:03)Merlijn Wissink Wrote: Another bit of missing/wrong meta information: part 2458 (and possibly other bricks with pin) doesn't mirror correctly.
I hope you don't mind me sending all of these things. Rolleyes
I'm working on a ~16k piece model (not mine, instructions for someone) so I just encounter them 'in the wild'.

That's a fun one, it inherits the mirror info from the 1x2 brick which I modified to make many hinges work as the modification doesn't matter for the plain brick.

Thanks, any feedback is welcome Smile


RE: LDCad 1.6 Beta 2a (win+linux) - Merlijn Wissink - 2017-06-01

Maybe you already fixed this one on your local unreleased version, but part 2357 doesn't mirror correctly.


RE: LDCad 1.6 Beta 2a (win+linux) - Roland Melkert - 2017-06-01

(2017-06-01, 19:20)Merlijn Wissink Wrote: Maybe you already fixed this one on your local unreleased version, but part 2357 doesn't mirror correctly.

Thanks missed that one too.

Here's my current shadow lib as of 2 minutes ago Smile
http://www.melkert.net/action/download/offLibShadow.csl


RE: Last bug call LDCad 1.6 Beta 2a - Willy Tschager - 2018-01-09

(2017-05-10, 18:17)Roland Melkert Wrote: The sorting options can currently only be done by editing the pbg file of interest. pbg files are the configuration files used to build the bin content.

What and where do I have to add code to add "Headdress" to the "Hats and Hair" when listing the "Parts bin" by "Function"?

w.


RE: Last bug call LDCad 1.6 Beta 2a - Philippe Hurbain - 2018-01-09

A tricky one... problem is that "head" is in string "headdress" so simple include/exclude doesn't work (either you don't have headdress, or you also have all heads...)
This seems to work fine (file %AppData%\Roaming\LDCad\partBin\default\sorted minifigHatsHair.pbg)

Code:
[options]
kind=filter
caption=Hats and hair
description=Minifig hats and hair
picture=
mascot=3834.dat
sortOn=description
sortDesc=false
sortCaseInSens=true
sourceInv=parts


<rules>
include category minifig
include category minifig accessory
include category minifig headwear
exclude description ~*,_*,=*
exclude !description hat,helmet,hair,cap,headdress
keep description headdress
exclude description head,friend,torso,minifig shield,brush



RE: Last bug call LDCad 1.6 Beta 2a - Roland Melkert - 2018-01-09

(2018-01-09, 15:33)Philippe Hurbain Wrote: A tricky one... problem is that "head" is in string "headdress" so simple include/exclude doesn't work (either you don't have headdress, or you also have all heads...)
This seems to work fine (file %AppData%\Roaming\LDCad\partBin\default\sorted minifigHatsHair.pbg)

Thanks for this I noticed similar problems with the minifig accessories group. The problem comes from wanting to include some things which for some reason are in the "minifig" or "minifig accessory" category and not in the "minifig headwear" one (e.g. the iron man helmet)

If anyone has additional bin inconsistencies please post them as I'm currently working on tweaking the bin for 1701/1.6b anyway.