playMaker

Author Topic: Array: Delete all info  (Read 682 times)

Kaiowaios

  • Playmaker Newbie
  • *
  • Posts: 9
Array: Delete all info
« on: April 21, 2021, 11:20:22 PM »
Does anyone know of an action that can delete all information stored within an Array?

Thank you

djaydino

  • Administrator
  • Hero Member
  • *****
  • Posts: 7616
    • jinxtergames
Re: Array: Delete all info
« Reply #1 on: April 22, 2021, 07:37:48 AM »
Hi.
Array Resize (set to 0) will remove all elements.

Array Clear will only reset the content of the elements.
for example has 10 int values and you use Array Clear, it will set those int values to 0

Kaiowaios

  • Playmaker Newbie
  • *
  • Posts: 9
Re: Array: Delete all info
« Reply #2 on: April 22, 2021, 08:08:19 PM »
Thank you!