Jump to content

klinzey

Vectorworks, Inc Employee
  • Posts

    2,550
  • Joined

  • Last visited

Posts posted by klinzey

  1. Also, remember Vectorworks does have white balance setting. View>Set Lighting Options...

    By default Vectorworks is white balanced at Indoor (3400K), I think Vision is set for something closer to 5500K.

     

    By default, the 3200K light will look "whiter" leaning toward blue in Vectorworks than it does in Vision but if you adjust the white balance in Vectorowks to 5500K it will look more amber. If you want to experiment in Vectorworks, Viewports have their own individual White Color Temperature setting and it's rather sticking to see the difference changing the white balance makes.

  2. We did not make the fixture profiles for EOS. Not sure who did.

    I pulled up the profile, it looks like an old profile because there is not "Dead" space at the bottom or middle of the range.

    The ETC profile lists only 3 ranges from 0-31794 (0 to -270), 31795-64886 (0 to 270)  and 64886-65535 (Off)

    (Zoom looks right but all the other ones look incorrect.)

     

    There should be 5 ranges:

    0-0288h

    0289h-7C32h (0 to -270)

    7C33h-83CCh

    83CDh-FD78h (0 to 270)

    FD77h-FFFFh;

    If you edit the profile you should be able to use the relative camera.

    (You should be able to copy the range values from the zoom parameter.)

     

    EOS is limited to a 16bit parameter. It's more work but to get the control you need you can just use 3-8bit parameters or 1-8bit and 1-16bit. This will give you full control. Depending on the size of your scene and the level of control you need may determine if the 16bit parameters need the be the MSB or the LSB.

  3. Try this:

     

    Procedure ASDF;
    
    Var
    vwMode : LongInt;
    ModeCheck : Boolean;
    
    
    FUNCTION BitCheck(largeNum, smallNum :LONGINT) :BOOLEAN;
    {Returns true if smallNum is a power of 2 present in largeNum.}
    
    VAR
    bit :INTEGER;
    BEGIN
    BitCheck := FALSE;
    bit := 15;
    while bit > -1 do BEGIN
    if largeNum >= (2 ^ bit) then BEGIN
    largeNum := largeNum - (2 ^ bit);
    IF (2 ^ bit) = smallNum THEN BEGIN
    BitCheck := TRUE;
    bit := 0;
    END;
    END;
    bit := bit - 1;
    END;
    END;
    
    Begin
    vwMode := GetCurrentMode;
    {vwMode := 456;}
    ModeCheck := (BitCheck(vwMode, 4)) | (BitCheck(vwMode, 8));
    {ModeCheck := (BitCheck(vwMode,1));}
    AlrtDialog(Concat(vwMode,':',ModeCheck));
    End;
    
    Run(ASDF);

     

  4. The symbols must be in the active document in order for VS to get any info about them other than than the name, so you will have to import them into the document in order to get any record information form the symbol. You should also look at using BeginContext() and EndContext() rather than just deleting the objects, it works better with the undo system and project sharing.

  5. We no longer require lighting devices to be named and the field is now editable by the user. We used to use the name for tracking and detecting duplicated lighting devices but that is no longer necessary.

    The name shown in the Visualization palette is the name of the internal light object inside of the lighting device. It must be unique and is automatically assigned by the lighting device as Channel Purpose Instrument Type #.NNA-#. The user can edit the name if desired but each light must be assigned a unique name.

    • Like 2
  6. The UniversalName required by the function is the Universal Parameter name field, in this case "Symbol Name".

    We use the same filed names as the lighting device for accessories and cells.

    SymbolName  := LDevice_GetParamStr(handle, cellIndex, accessoryIndex, 'Symbol Name')

  7. @e26Design_marc j Can you post your file? I tried a simplified example with only a few lights and I could not reproduce the issue in SP3.

    It's likely that the lights on the ladder were not properly associated with the ladder and when it was moved the lights found the truss and were automatically associated with the truss.

    You can control this in the Spotlight Preferences. In your situation you may want to turn off the option "Enable auto positioning when moved" and/or make the pick radius smaller.

  8. If you can't upgrade to 2021, the first thing to do is to try deleting your user folder since others are not having the same problem.

    Reset Vectorworks User Preferences Folder

     

    Also, make sure you are starting with a new blank file and not a template.

    Check your templates folder for a default.sta file. If it's there delete otherwise a new document will use this template file rather than a true blank file.

  9. LW should only require the unit number and position for a static accessory. The channel number is not needed for a static accessory e.g. barndoor.

    For an accessory e.g. scroller you should manually enter a channel number in the accessory as it should be a different channel than the light.

     

  10. This depends on your seating section layout. When you create the seating section you define the direction the seats should face. You can change the "Angle of Seating" parameter to make the seats face a different direction.

    Depending on your layout you may be able to change the direction but if that does not solve your problem you will probably need to modify or duplicate and modify the symbol.

    All default content for use with the seating section is supplied with the seat facing to top of the page.

     

    • Like 2
  11. Start with the basics.

    Make sure the file is saved to your local machine that is not a shared folder like Dropbox. (Use a simple name for the Vectorworks file.)

    Make sure there are lighting devices placed in the document with data.

    In the Spotlight Preferences make sure "Use automatic Lightwright data exchange" is turned on.

    File Path is "Same location as the file"

    Check, "Perform a complete export on exit"

    Make sure there are field shown in the "Export Fields" list.

    Click OK.

    Select a light and change one of the fields that you are exporting. (Should not be necessary but it's another way to make sure it exports.)

     

    You should see an xml next to the Vectorworks file.

    If you still don't see it it would be useful to know the full path and file name of the Vectorworks file.

×
×
  • Create New...