Mindphazer wrote: Sat Oct 18, 2025 9:35 am
No circles here neither (MacOS M4)
And the switch button is grey and stays grey even when clicked
Is that with version 0.2.6a?
here is what it should look like
https://atomicwebserver.com/avgscenegraph.mp4
and the latest version 0.2.7a
I've changed how it does grouped objects so the offset is relative to the parent, so this
Global switchID = AVGCreateObject(*scene,112,480,"Switch")
Global knobID = AVGCreateObject(*scene,23,25,"SwitchKnob", switchID)
vs
Global switchID = AVGCreateObject(*scene,112,480,"Switch")
Global knobID = AVGCreateObject(*scene,-89,-455,"SwitchKnob", switchID)
It sets both the object parameter and cursor to the correct offset
I don't know why you're not seeing any circles?
does commenting out line 2795 to 2797 make any difference?
Code: Select all
;AVGAddPathCircle(*scene, circle1, 0, 0, 20)
; AVGVectorSourceColor(*scene, circle1, RGBA(128, 128, 255, 255),RGBA(255, 255, 0, 255))
; AVGFillPath(*scene, circle1)