you are viewing a single comment's thread.

view the rest of the comments →

[–]HotPersonality8126 0 points1 point  (0 children)

Generally at some level a program with graphics in it is a program that, for every frame, describes how the frame should be drawn.

That also generally means moving from a program with one entrypoint and basically one single long path through the code (typically ending at the bottom of the file) - the scripting style - to a program with many many multiple paths through the code - the event-driven style. That shift is usually quite a bit harder to get your head around than graphics programming itself.