2019-11-12 04:41 PM
2019-11-12 08:13 PM
2019-11-13 02:59 AM
zofa wrote:
I made a parametrical object in which change the size by using hotspots and a custom parameter.
2019-11-13 03:09 AM
AC22-23 AUS 7000 | Help Those Help You - Add a Signature |
Self-taught, bend it till it breaks | Creating a Thread |
Win11 | i9 10850K | 64GB | RX6600 | Win10 | R5 2600 | 16GB | GTX1660 |
2019-11-13 03:20 AM
Lingwisyer wrote:Don't forget if you do this synchronising of variables you also need to change the values displayed.
If glob_modpar_name = x then A = x
If glob_modpar_name = y then B = y
If glob_modpar_name = z then ZZYZX = z
If glob_modpar_name = A then x = A
If glob_modpar_name = B then y = B
If glob_modpar_name = ZZYZX then z = ZZYZX
PARAMETERS A=A, B=B, ZZYZX=ZZYZX, x=x, y=y, z=zOtherwise you are changing the values of the variable for future calculations, but are not updating what the user sees in the parameter list.
2019-11-13 11:35 AM
2019-11-13 01:41 PM
2019-11-14 02:28 AM
AC22-23 AUS 7000 | Help Those Help You - Add a Signature |
Self-taught, bend it till it breaks | Creating a Thread |
Win11 | i9 10850K | 64GB | RX6600 | Win10 | R5 2600 | 16GB | GTX1660 |
2019-11-14 03:18 AM
zofa wrote:This will work but as Ling mentioned, does not help if someone adjusts A.
Just adding "PARAMETERS A=HOR" in the parameter script solved it.
Thank you all voor replying.
Hans
if GLOB_MODPAR_NAME = "A" then HOR = A PARAMETERS HOR = HOR endif