TutorialsUsing AI

Tutorial: Using AI

The editor assistant works best when you give it your current file, the behavior you want, and the constraints that matter.

Ask for a small change

Start with one request: movement, collision, asset loading, or a score rule. Review the diff before running it.

Give runtime context

Mention Conjure functions by name when you know them. Link the assistant to drawing, input, or platform docs when the task uses those areas.

Keep examples runnable

from conjure import *
 
init_window(360, 640, "AI Prompt Target")
 
while not window_should_close():
    begin_drawing()
    clear_background(WHITE)
    draw_text("Ask for one change at a time", 24, 300, 20, BLACK)
    end_drawing()

What next

Publish with the publishing guide and export code with GitHub integration.