Renerabbitt

Members
  • Posts

    4620
  • Joined

  • Last visited

Everything posted by Renerabbitt

  1. is that a section of wall or is that a backsplash? share a video or 3d view or plan file please
  2. I am curious as to why you are needing to reference the layers at all? set it and forget it? Alternatively, just label the layers you need with a prefix and then put that prefix in the search bar..there is your filtered results
  3. totally scene dependent and can be from a great number of different reasons. Do you have a roof on the building, what direction is your sun, do you have enough lights in the scene? plenty more questions to be asked as well..are you using a backdrop.
  4. See photo...can we do this with out current window dbx options? Not in front of computer to try it out
  5. this is all within my pro plan template which I sell. It does auto labeling of the box itself and also does the schedule detail. Utilizes some macros that I created. It integrates with the Kitchen Tools that I sell as well. Someone here might offer up their own code for that for free if you post it in a thread
  6. Just curious why you would be using such a scale ? Why not draw your dimensions manually for that view...assuming it is a site plan. Otherwise use match lines at a lower scale
  7. Gonna be a couple years likely… games moving to pathtracing now… hopefully they find a way to catch up. in the meantime, just remotely rent a machine when you need an rtrt
  8. Chief cannot do cut lists etc automatically either if needed ........... but macros may be workable? Yes can do it with macros thankfully
  9. You would need to either manual price everything out...or build a system based on macros that can auto calc pricing...or price your cabinets and save to your library to be used later. Its about the only place that 2020 accels in, but you wont want to switch back once you start using Chief
  10. why not do it yourself? Or are you needing a load calc?
  11. POST 107 #freesymbolfriday for you Macro Gurus Direct Download: Link Click to navigate to the Discord Server CLICK ME TO GO BACK TO THE INDEX!!!
  12. I have a detail system that is lightning fast in my Pro Plan: , but aside from that you can pull a cross section view and use auto-detail and then use the trim tool to section and annotate etc.
  13. thats a bit more difficult. Panels are a collection. You'd have to know which panel you are referencing, say panel 0 for instance, then panels[0].formatted_size reports a string value of both width by height such as "23 7/8"x24 5/16"" for which you would need to split or index and convert to create your calcs. I have a system that prices out cabinets on the fly very accurately but its expensive...takes number of plywood sheets into account, panel sq ft, finish options, variables and a bunch more...can get pretty complex. You could write this macro and input it into your count. It totals all panels but has no conditional statements for false panels or slab vs shaker etc. # Copyright Rabbitt Design 2023 # INITIALIZE TOTAL SQUARE FOOTAGE VARIABLE total_sq_ft = 0.0 panels.each do |panel| # EXTRACT WIDTH AND HEIGHT FROM FORMATTED SIZE w, h = panel.formatted_size.split("x").map { |dim| dim.to_i } # CONVERT DIMENSIONS TO SQUARE FEET AND CALCULATE SQUARE FOOTAGE FOR EACH PANEL sq_ft = (w * h) / 144.0 # ACCUMULATE TOTAL SQUARE FOOTAGE total_sq_ft += sq_ft end # REPORT TOTAL SQUARE FOOTAGE total_sq_ft
  14. I don't see what question you are addressing with your question. Can you eloborate?
  15. its a bug, I just reported it and already heard back from Carrie
  16. You can do this in twinmotion utilizing phases but it would be ver complicated to achieve depending on how specific you wanted to get about what displays and when
  17. your signature says X15...you wouldnt have access to that anymore.
  18. the condition you show doesnt allow for that unless you change overhangs or plate heights