So usually what you do is create a node, such as a Node2D and treat it like a layer in Photoshop. You can use the drawing functions on that Node2D, such as draw_line
or whatever. Then you rotate the Node2D as you would any object. For example:
var layer = get_node("MyDrawingLayer")
func _process(delta):
layer.rotation += delta