johnatm / itween

Automatically exported from code.google.com/p/itween
1 stars 2 forks source link

iTween Method Not Found error #101

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Hello,

I'm trying to get iTween to work with Javascript. I have installed iTween.cs in 
a plugins folder at the root of my Assets folder. I have also created a folder 
for scripts at the root. My directories look like this:

Project/Assets/Plugins & Project/Assets/Scripts

I made a test script, and attach it to a cube.

function Start () {

iTween.moveTo(gameObject,{"x":1.7, "time":2});

}

and it compiles fine, but when play is pressed, nothing happens, and I get 
error:

MissingMethodException: Method not found: 'iTween.moveTo'.

I tried the same setup on two different win7 machines, and both have the error. 
The cs sample scripts play fine though.

What did I miss? Any help much appreciated!

Original issue reported on code.google.com by geofr...@googlemail.com on 28 Feb 2012 at 5:13