blob: c6994b19bd47082da27ec7647e816834906291a9 (
plain) (
blame)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
 | extends "res://scripts/painting_eye.gd"
func _answer_correct():
	var apclient = global.get_node("Archipelago")
	if get_name() == "pilgrim_painting2":
		# When pilgrimage is enabled, the HOT CRUST panel should actually move the sun painting.
		if apclient._pilgrimage_enabled:
			movePainting()
	elif not apclient._door_shuffle or apclient.paintingIsVanilla(self.name):
		._answer_correct()
func movePainting():
	._answer_correct()
func _looked_at(var body, var painting):
	._looked_at(body, painting)
	if body.is_in_group("player") && (painting.get_name() == self.get_name()):
		var apclient = global.get_node("Archipelago")
		if !apclient._pilgrimage_allows_paintings:
			global.sunwarp = 1
			body.get_node("pivot/camera/sunwarp_background").visible = false
 |