Skip to content

Checking whether an option has been selected before #2555

Discussion options

You must be logged in to vote

Hey @CoyanCardenas,
you can do this, however it requires a custom choice script. So if you haven't already, make your choice layer custom, create a custom choice button script and assign it to all the choice buttons in the layer.

Then you can use the _load_info() method to disable or hide (or do whatever) choices based on whether they have been visited (this requires the "Seen Events History" to be enabled in the dialogic settings):

extends DialogicNode_ChoiceButton


func _load_info(info:Dictionary) -> void:
	# Load text and visibility
	super(info)

	if info.get("visited_before", false):
		disabled = true

You could combine this with a custom extra data argument if you want this behaviour…

Replies: 2 comments

Comment options

You must be logged in to vote
0 replies
Answer selected by CoyanCardenas
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants