HOME | DD | Gallery | Favourites | RSS
| Luari-Rabbit
# Statistics
Favourites: 26; Deviations: 77; Watchers: 5
Watching: 20; Pageviews: 8736; Comments Made: 559; Friends: 20
# Interests
Favorite visual artist: N/AFavorite movies: interstellar
Tools of the Trade: pens
# About me
meh
# Comments
Comments: 59
Luari-Rabbit [2009-07-21 11:10:19 +0000 UTC]
guys i'm off the internet for awhile cos my mum refuses to pay the phone bill. c'ya soon!
👍: 0 ⏩: 0
IrenePegasus [2009-05-29 07:28:12 +0000 UTC]
you have 14 too! i want to see your cat! you can take a photo for me?
👍: 0 ⏩: 1
Luari-Rabbit In reply to IrenePegasus [2009-05-31 21:43:15 +0000 UTC]
14 what? which cat? photo of what? O_o ?
👍: 0 ⏩: 1
IrenePegasus In reply to Luari-Rabbit [2009-05-31 22:13:42 +0000 UTC]
you are 14 years old like me, an i ask you to take a photo of your cat...^^
👍: 0 ⏩: 1
Luari-Rabbit In reply to IrenePegasus [2009-06-01 23:22:38 +0000 UTC]
read the description for the cat pic
but i do have other pics of her!
i shall make a collage! @_@
👍: 0 ⏩: 0
JAYSON17 In reply to Luari-Rabbit [2009-04-29 12:08:07 +0000 UTC]
i think think thing is scary
👍: 0 ⏩: 1
Luari-Rabbit In reply to Jagarnot [2009-03-25 16:42:40 +0000 UTC]
your welcome! portal is great
but its sad when companion cube has to go...the first time i reached that point, i was going to jump into the fire with him but he got caught on a ledge and lived as i died...
👍: 0 ⏩: 1
Jagarnot In reply to Luari-Rabbit [2009-03-25 20:08:50 +0000 UTC]
Wow, kinda sounds like the companion cube betrayed you!
👍: 0 ⏩: 1
Luari-Rabbit In reply to Jagarnot [2009-03-25 21:06:31 +0000 UTC]
*sniffs* i thought he was the only thing that would'nt try to kill me
👍: 0 ⏩: 1
Luari-Rabbit In reply to Jagarnot [2009-03-26 18:36:56 +0000 UTC]
have you tried the companion cube level on advanced? you use companion ball!
👍: 0 ⏩: 1
Luari-Rabbit In reply to Jagarnot [2009-03-26 20:00:08 +0000 UTC]
LOL!! he did'nt even have a heart.
👍: 0 ⏩: 0
veclock [2008-12-21 20:58:58 +0000 UTC]
Hi, I think I've fixed the bug now, thanks for telling me about it!
👍: 0 ⏩: 1
Luari-Rabbit In reply to veclock [2008-12-04 22:06:52 +0000 UTC]
dont mention it! im a newb flasher, and i find ragdoll physics amazing.
if you dont mind me asking, how do you make them?
👍: 0 ⏩: 1
veclock In reply to Luari-Rabbit [2008-12-05 13:11:13 +0000 UTC]
alot of math but not so hard.. google if you want to learn
👍: 0 ⏩: 1
Luari-Rabbit In reply to veclock [2008-12-05 15:29:33 +0000 UTC]
is there any vital codes for the gravity?
👍: 0 ⏩: 1
veclock In reply to Luari-Rabbit [2008-12-05 15:41:10 +0000 UTC]
gravity is very simple to do.
Just say:
ball.y += ball.yy;
ball.yy += 0.2;
👍: 0 ⏩: 1
Luari-Rabbit In reply to veclock [2008-12-05 16:05:33 +0000 UTC]
really thats it? does the code also make walls to stop it from falling for ever?
👍: 0 ⏩: 1
veclock In reply to Luari-Rabbit [2008-12-06 11:57:10 +0000 UTC]
no it doesn't, add this:
if (ball.y+ball.yy>floorY) {
ball.y = floorY;
ball.yy *= -0.5;
}
👍: 0 ⏩: 1
Luari-Rabbit In reply to veclock [2008-12-08 20:05:51 +0000 UTC]
for the gravity on the ball: i drew a circle and made it a symbol then added the code...it didnt work, is there somthing else i must first do?
for the floor code: do i just add this to the bottom of the same symbol or do i add this code to the slide.
👍: 0 ⏩: 1
veclock In reply to Luari-Rabbit [2008-12-08 20:24:04 +0000 UTC]
did you put it in an enterframe? Using AS2 or AS3?
👍: 0 ⏩: 1
Luari-Rabbit In reply to veclock [2008-12-08 20:52:01 +0000 UTC]
...err, i was supposed to use as2/3?
👍: 0 ⏩: 1
veclock In reply to Luari-Rabbit [2008-12-08 21:01:16 +0000 UTC]
No, both will work.. but did you use an enterFrame? Did you give the mc an instance_name?
👍: 0 ⏩: 1
Luari-Rabbit In reply to veclock [2008-12-08 21:12:16 +0000 UTC]
this is what it says:**Error** Scene=Scene 1, layer=Layer 1, frame=1:Line 1: Statement must appear within on/onClipEvent handler
ball.y += ball.yy;
**Error** Scene=Scene 1, layer=Layer 1, frame=1:Line 2: Statement must appear within on/onClipEvent handler
ball.yy += 0.2;
**Error** Scene=Scene 1, layer=Layer 1, frame=1:Line 3: Statement must appear within on/onClipEvent handler
if (ball.y+ball.yy>floorY) {
Total ActionScript Errors: 3 Reported Errors: 3
👍: 0 ⏩: 1
veclock In reply to Luari-Rabbit [2008-12-08 21:43:46 +0000 UTC]
onClipEvent(load) {
var yy = 0
var floorY = 300;
}
onClipEvent(enterFrame) {
y += yy;
yy += 0.2;
if (y+yy>floorY) {
yy = -yy*0.5;
y = floorY;
}
}
👍: 0 ⏩: 1
Luari-Rabbit In reply to veclock [2008-12-08 22:09:55 +0000 UTC]
when i test movie the ball stays still and nothing happens
👍: 0 ⏩: 1
veclock In reply to Luari-Rabbit [2008-12-09 13:13:25 +0000 UTC]
Be sure to place the ball over a y of 300. For example, place it at the very top. If that doesn't work, I can't help you
👍: 0 ⏩: 1
veclock In reply to Luari-Rabbit [2008-12-09 14:34:53 +0000 UTC]
yeah but haven't had so much time for it lately.. do you?
👍: 0 ⏩: 1
Luari-Rabbit In reply to veclock [2008-12-09 14:45:47 +0000 UTC]
i do loads of animating but its not very good.....infact im working on an animation called "jordans logic" based off of random quotes that my friend jordan says.....estimated release date 01/01/09
👍: 0 ⏩: 1
| Next =>