so i am trying to have an objects position be put into a list, but i want to save it without overwriting it (so essentially i save the position as if it was an animation/motion capture replay thing). i am trying to use the List Set Element and List Add chips but they dont do anything, presumably because i am wiring a List Create into them, so that may be the probjem, but my peanut sized brain cant really comprehend much or do complex things when i first wake up so that could also be a reason
#need help on adding input to a list repeatedly
7 messages · Page 1 of 1 (latest)
need help on adding input to a list repeatedlt
need help on adding input to a list repeatedly
doing this for a position replay system that definitely isnt based off the current messages in #circuits-show-off because i am unoriginal and rely on others to light a little part of my brain that says "i want to make this"
You have to first save the list create as a variable, then plug that into a list add which you can use to add positions to a list. I found this out the hard way 😔
"Initialize" the variable first by setting it to an empty list (This lets you modify it)
List Add will add a value to the end of the list
List Set Element will overwrite the value with the input value at the input index
List Insert will add an element at the input index, given that index is less than or equal to the number of items in the list
List Remove at Index will remove an element at the input index
List Remove at Last will remove the last element in a list
Remember that all of these chips only work up to adding 50 items total