Author Topic: Unity and Javascript  (Read 3483 times)

Offline Elod-Hora

  • Ex-member
  • Republic Citizen
  • Posts: 1,140
  • Gender: Male
  • Not all are born to be heroes.
    • My studio!
Unity and Javascript
« on: February 27, 2013, 03:28 AM »
Hey peeps,

I've started using Unity again, yesterday... Hope it'll lead me somewhere :D

In the meantime, a small question:

How do I change constant force parameters of an object by user input?

For instance, I've got an object selected, how do I change its rotation speed?
Jedi Knight Elod-hora Faria

----------There's no try! Do! Or do not!----------
Once the choice is made, there's no return.

Offline *<JO>*Narretas

  • Grand Councillor
  • Jedi Order Resident
  • *
  • Posts: 5,233
  • Gender: Male
  • Long live the Jedi Order
Re: Unity and Javascript
« Reply #1 on: February 27, 2013, 03:43 AM »
Cool! Unity is pretty easy to pick up!

Here's some links:

Tutorial

Unity Script Reference

Here's your line of code, pressing a will result in rotation:

if (Input.GetKeyDown("a")) {transform.Rotate (Vector3.up, -120);}

If you want to add time, I'm not sure, probably add the delta time function somewhere, but I'm not really good at JS (or any code).

Changing it's rotation speed manually, sounds like you're already running a code and you just need to change some parameters, which you can do without closing it, unless you've hard-coded it into your script.
« Last Edit: February 27, 2013, 03:46 AM by *<JO>*Ek'obalo »

Offline Elod-Hora

  • Ex-member
  • Republic Citizen
  • Posts: 1,140
  • Gender: Male
  • Not all are born to be heroes.
    • My studio!
Re: Unity and Javascript
« Reply #2 on: February 27, 2013, 07:48 AM »
Thanks for the string, I'll try it at home :D

Well, basically I've put Unity's ConstantForce to get a textured ball rotating. You can easily modify the speed and the direction of rotation in Unity itself, but you have no control over it ingame.

And yep, I've completely forgot EVERYTHING I've studied about JavaScript, so it's a pain.
Jedi Knight Elod-hora Faria

----------There's no try! Do! Or do not!----------
Once the choice is made, there's no return.

Offline *<JO>*Lytali

  • Inactive Padawan Learner
  • Visitor
  • *
  • Posts: 388
  • Gender: Male
  • Friends don't grow on trees
Re: Unity and Javascript
« Reply #3 on: February 27, 2013, 12:20 PM »
I haven't really had a lot of practice with JS and I have never used unity (I do plan on doing some projects with JS and HTML5 just for experience probably during the summer when I have time )

But usually graphical applications follow this model
1. set everything up
2. present to the user
3. wait for an event
4. handle event and go back to 2

also you usually have background computations so the scene is alive even when user not clicking anything

I know JavaScript can monitor events such as mouseclicks
hope this helps if you want to take up something like directX I will be more useful to you :P

Offline Elod-Hora

  • Ex-member
  • Republic Citizen
  • Posts: 1,140
  • Gender: Male
  • Not all are born to be heroes.
    • My studio!
Re: Unity and Javascript
« Reply #4 on: March 01, 2013, 02:50 AM »
Instead of having a fixed camera, for the first build I actually opted for another solution. Will work on the that one later on.

Click me for testing!
Jedi Knight Elod-hora Faria

----------There's no try! Do! Or do not!----------
Once the choice is made, there's no return.

Offline *<JO>*Lytali

  • Inactive Padawan Learner
  • Visitor
  • *
  • Posts: 388
  • Gender: Male
  • Friends don't grow on trees
Re: Unity and Javascript
« Reply #5 on: March 01, 2013, 05:50 AM »
cool !
looks like its easier to move the camera in some directions than others though