-
Posts
4343 -
Joined
-
Last visited
Content Type
Profiles
Forums
Gallery
Everything posted by Renerabbitt
-
Does anyone know if you can use Enscape with Chief?
Renerabbitt replied to emily_kohn's topic in General Q & A
In terms of focusing on interior design I would just fully commit to Chief Architect unless you plan on working for a larger architectural firm. Cost of software product for the suite of tools to do renderings in autodesk based products is not really sustainable in North America. Chief's built in rendering capabilities are up to par with most commercial grade rendering products, though not as robust as endscape. Ultimately though, chief is far more efficient as rendering is far more dynamic then a third party plugin renderer. I have been a rendering artist since 1999. Chief rendering for context:- 1 reply
-
- 2
-
how to keep CAD block from changing when changing fixture
Renerabbitt replied to westvale's topic in General Q & A
You would open the symbol on click on "never" before you resized it -
You can restrictively select material regions by having material regions as the active tool and shift marquee over your entire plan in a plan view and you can use transform replicate to uniformly raise all of them in the z delta.
-
Training Video Suggestions please ...
Renerabbitt replied to SueKurtzInterior's topic in General Q & A
Assuming you've tried going through chiefs video archive and reading the interactive help? You can checkout my video shorts and other tips and tricks: -
-
Services Offered: BIG Project and need a FAST turnaround?
Renerabbitt replied to Renerabbitt's topic in Offering Services
Professional plansets. Let me know if you'd like a quote for drafting your next project- 17 replies
-
- elevations
- plan
- (and 6 more)
-
or just use an opacity map in X16
-
sent you an email
-
Did you change the vector color of your glass material?
-
you cannot denoise a view that is already denoised
-
thats essentially what I am doing. I am assigning an initial value in leau of have a nil condition or error, but that doesnt change the fact that I still need to open the row object to initialize a change based on schedule number unfortunately. Same thing happens if you use a text box to reference a schedule number from a note, you still have to open the text in order for it to initalize a change even though the text box itself confirms the change before you ever open it when the schedule number is changed. So something with the way it is accessing the info
-
same problem if you use component_code
-
the basis of mine: $wall_framing2 ||= '2"X4" DF#2 @ 16" O.C.' # UPDATE GLOBAL VARIABLES BASED ON 'schedule_number' AND 'type' begin if schedule_number.include?("01") && type.downcase.include?("wall framing") $wall_framing = custom_fields["Macro Input 1"] end and yes its very frustrating
-
I have a system that designates a global macro value based on it being in the schedule number 1 position, as in a note schedule where the note checks schedule number and defines the macro based on a custom field within the note. This macro in its current state can only be initialized by opening the row object or directly opening the object. Is there someway to get this to work where I do not need to open the row object, so that as soon as I move something into schedule 1 position it initializes? The value updates but they macro will not update unless the object is opened
-
There is a close polyline tool in your edit menu with the polyline selected
-
Polyline labels with transparent background?
Renerabbitt replied to Michael_Gia's topic in General Q & A
yet another reason we need layer based fill styles -
# Copyright Rabbitt Design 2024 # This script calculates the final height by conditionally subtracting countertop thickness and toekick height. # Define the initial variables. These should be publisher variables with types defined as Measurement class objects. # Assume `height`, `countertop_thickness`, and `toekick_height` are measurements in default units. # Variables and conditions for the calculation final_height = height # Start with the initial height # Check if the countertop should be subtracted based on the presence of countertop or custom countertop if has_countertop || has_custom_countertop final_height -= countertop_thickness # Subtract countertop thickness if has_countertop or has_custom_countertop is true end # Check if the toekick should be subtracted based on the presence of toekick if has_toekick final_height -= toekick_height # Subtract toekick height if has_toekick is true end # Output the calculated final height final_height