- Home /
Why i m not able to increase list by using append (boo)?
I m trying to create a list like i use in python but after creating it here i m not able to add more items in it, when i use checkNumber.append(3) its say error that " append is not a member of Boo.Lang.List" PLZ HELP
import UnityEngine
class book (MonoBehaviour):
def Update(): if Input.GetButtonDown('Fire1'): insert()
def insert(): checkNumber = [0,1,2,3] //is a list checkNumber.append(4) //adding more no.
Answer by Craxter · Apr 02, 2011 at 03:02 AM
hey do not worry now i figured it out.. i used checkNumber.Add(3) instead of checkNumber.append(3)
LOL! wish this will help others too :)
Your answer
Follow this Question
Related Questions
The name 'Joystick' does not denote a valid type ('not found') 2 Answers
BOO in Unity vs. Python in Blender 0 Answers
what are some simple tutorials to learn Boo script??? 1 Answer
iTween & Boo 1 Answer