LDCad 1.6 suggestions/plans


Re: LDCad 1.6 suggestions/plans
#58
Milan Vančura Wrote:This reminds me a feature I wish so long time I forgot to ask Smile
Roland, please, can you add a slider to set selection or group opacity/transparency?
To be able to create pictures or videos similar to this image.

And, a following feature request: to be able to set a temporary color for a/each group and to be able to save such setting and turn it on and off as needed. I mean: to build whole model as usual but, when needed, to be able to switch to this kind of view.
This might become, partly, possible using scripts too. You can already experiment with it in 1.5 using the animation scripts. Short example:

Code:
function register()

  local ani=ldc.animation('test')
  ani:setLength(10)  
  ani:setEvent('frame', 'onFrame')
end

function onFrame()

  local sf=ldc.subfile()
  local grp=sf:getGroup('Group 1')
  local ani=ldc.animation.getCurrent()
  local col=ani:getFrameTime()
  grp:setColor(col)
end

register()

This will change the color of 'group 1' to the playback second's color number.

While pausing the animation you can export the OpenGL rendering (and thus the model in alternative colors).
Reply
« Next Oldest | Next Newest »



Messages In This Thread
Re: LDCad 1.6 suggestions/plans - by Roland Melkert - 2016-01-12, 17:49
Re: LDCad 1.6 ROTSTEP feedback - by TestOne - 2016-02-25, 22:56
RE: LDCad 1.6 suggestions/plans - by Kai - 2016-05-23, 18:48
RE: LDCad 1.6 suggestions/plans - by Art - 2016-08-11, 12:56
RE: LDCad 1.6 suggestions/plans - by Art - 2016-08-12, 7:29
RE: LDCad 1.6 suggestions/plans - by Karen M - 2017-10-24, 10:28

Forum Jump:


Users browsing this thread: 10 Guest(s)