Objects to not rotate in schedules
Anonymous
Not applicable
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2015-11-04 10:33 AM
2015-11-04
10:33 AM
for a while ago I hade problem that my objects that I've rotated is also rotated in Schedules this I solved with the code
if GLOB_CONTEXT = 2 then SYMB_ROTANGLE = 0 endifNow I also saw that my angle node is also showing "rotatade" on my schedules.
How do I get my objects to not rotate in schedules
2 REPLIES 2

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2015-11-05 02:47 AM
2015-11-05
02:47 AM
Is this version 19 by any chance?
If so then GLOB_CONTEXT can no longer be relied upon.
It should still work with the latest hotfix for 19 with just a warning error message when scripting the object.
But maybe it isn't work properly in 19 now.
It definitely will not work with version 20 next year.
GLOB_CONTEXT has gone and has been replaced with other commands (that aren't as good in my opinion) - which you can get information on here ...
http://gdl.graphisoft.com/gdl-docs/changes-in-ac19/
NOTE these new commands can not be used in the parameter or master scripts.
They will only work in the 2D and 3D scripts as far as I know.
I have yet to sit down and try to work this out myself yet.
Barry.
If so then GLOB_CONTEXT can no longer be relied upon.
It should still work with the latest hotfix for 19 with just a warning error message when scripting the object.
But maybe it isn't work properly in 19 now.
It definitely will not work with version 20 next year.
GLOB_CONTEXT has gone and has been replaced with other commands (that aren't as good in my opinion) - which you can get information on here ...
http://gdl.graphisoft.com/gdl-docs/changes-in-ac19/
NOTE these new commands can not be used in the parameter or master scripts.
They will only work in the 2D and 3D scripts as far as I know.
I have yet to sit down and try to work this out myself yet.
Barry.
One of the forum moderators.
Versions 6.5 to 27
i7-10700 @ 2.9Ghz, 32GB ram, GeForce RTX 2060 (6GB), Windows 10
Lenovo Thinkpad - i7-1270P 2.20 GHz, 32GB RAM, Nvidia T550, Windows 11
Versions 6.5 to 27
i7-10700 @ 2.9Ghz, 32GB ram, GeForce RTX 2060 (6GB), Windows 10
Lenovo Thinkpad - i7-1270P 2.20 GHz, 32GB RAM, Nvidia T550, Windows 11
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2015-11-05 05:32 AM
2015-11-05
05:32 AM
here is what i used, has worked so far. for v19
if GLOB_VIEW_TYPE = 9 then
script for schedule
else
script for 2d view
endif
if GLOB_VIEW_TYPE = 9 then
script for schedule
else
script for 2d view
endif