ds_priority_delete_value

Deletes the given value (along with its priority) from the priority queue.

Syntax:

ds_priority_delete_value(id,val);


Argument Description
id The id of the priority queue to use.
val The value to delete from the priority queue.


Returns: N/A


Description

This function will simply delete the given value, along with its priority, from the indexed priority queue.


Example:

if ai_move = false
   {
   ds_priority_delete_value(ai_priority, scr_AI_Move);
   }

The above code checks an instance variable and if it returns false it will remove the indexed script from the priority queue.


Back: DS Priority Queues
Next: ds_priority_find_max
© Copyright YoYo Games Ltd. 2018 All Rights Reserved