This is a read-only archive of the old Scratch 1.x Forums.
Try searching the current Scratch discussion forums.

#1 2008-06-13 13:44:32

dingdong
Scratcher
Registered: 2007-08-09
Posts: 1000+

mushroom warfare (idea for outside of scratch)

should I make a flash series based off of super mario bros. Z, but with mario Vs. Luigi? I'd make up some story and they would fight each other for some reason, what do you think?


http://img851.imageshack.us/img851/2829/superanbanner.png
click the image for my music

Offline

 

#2 2008-06-13 13:46:20

dingdong
Scratcher
Registered: 2007-08-09
Posts: 1000+

Re: mushroom warfare (idea for outside of scratch)

or should I just make a all out crazy mario and Luigi game fighting off tons of mario enemies


http://img851.imageshack.us/img851/2829/superanbanner.png
click the image for my music

Offline

 

#3 2008-06-13 13:51:30

Bobby500
Scratcher
Registered: 2008-04-19
Posts: 1000+

Re: mushroom warfare (idea for outside of scratch)

I think that they should team up rather than fight each other. But it is up to you on what you want to do.

Offline

 

#4 2008-06-13 13:52:33

dingdong
Scratcher
Registered: 2007-08-09
Posts: 1000+

Re: mushroom warfare (idea for outside of scratch)

read the second comment


http://img851.imageshack.us/img851/2829/superanbanner.png
click the image for my music

Offline

 

#5 2008-06-13 13:53:32

Bluestribute
Scratcher
Registered: 2008-01-24
Posts: 1000+

Re: mushroom warfare (idea for outside of scratch)

Personally, I think you're getting ahead of yourself. Isn't it more like "Once I learn Python..." unless you're already pretty good at it


http://img247.imageshack.us/img247/1204/bluestributett4.jpg
That's my PSN ID. I know tons of COD4 glitches. Add me as your friend. Oh, and get a headset

Offline

 

#6 2008-06-13 13:53:58

Bobby500
Scratcher
Registered: 2008-04-19
Posts: 1000+

Re: mushroom warfare (idea for outside of scratch)

The second option.

Offline

 

#7 2008-06-13 14:25:47

S65
Scratcher
Registered: 2007-05-18
Posts: 100+

Re: mushroom warfare (idea for outside of scratch)

Bluestribute wrote:

Personally, I think you're getting ahead of yourself. Isn't it more like "Once I learn Python..." unless you're already pretty good at it

This. I don't think you'll be able to just dive into doing complex animations as soon as you encounter Flash. Flash is a much more advanced system than Scratch, and harder to master too. I don't actually work with Flash myself, but I've learnt to read ActionScript when I was translating these tutorials into Scratch, which later became my SpRiTeD 3D Projection Engine.

Here is an example of some ActionScript code, which was later converted into my Rotating 3D Cube project.

Code:

...
Transform3DPointsTo2DPoints = function(points, axisRotations){
    var TransformedPointsArray = [];
    var sx = Math.sin(axisRotations.x);
    var cx = Math.cos(axisRotations.x);
    var sy = Math.sin(axisRotations.y);
    var cy = Math.cos(axisRotations.y);
    var sz = Math.sin(axisRotations.z);
    var cz = Math.cos(axisRotations.z);
    var x,y,z, xy,xz, yx,yz, zx,zy, scaleFactor;

    var i = points.length;
    while (i--){
        x = points[i].x;
        y = points[i].y;
        z = points[i].z;

        // rotation around x
        xy = cx*y - sx*z;
        xz = sx*y + cx*z;
        // rotation around y
        yz = cy*xz - sy*x;
        yx = sy*xz + cy*x;
        // rotation around z
        zx = cz*yx - sz*xy;
        zy = sz*yx + cz*xy;
        
        scaleFactor = focalLength/(focalLength + yz);
        x = zx*scaleFactor;
        y = zy*scaleFactor;
        z = yz;

        TransformedPointsArray[i] = make2DPoint(x, y, -z, scaleFactor);
    }
    return TransformedPointsArray;
};
...
rotateCube = function(){
    cubeAxisRotations.y -= this._xmouse/3000;
    cubeAxisRotations.x += this._ymouse/3000;
    var screenPoints = Transform3DPointsTo2DPoints(pointsArray, cubeAxisRotations);
    for (i=0; i < pointsArray.length; i++){
        currBalloon = this["balloon"+i];
        currBalloon._x = screenPoints[i].x;
        currBalloon._y = screenPoints[i].y;
        currBalloon._xscale = currBalloon._yscale = 100 * screenPoints[i].scaleRatio;
        currBalloon.swapDepths(screenPoints[i].depth);
    }
};
theScene.onEnterFrame = rotateCube;

I've left out a lot of the supporting functions, but if you haven't learnt Flash yet, this code will look extremely confusing. I'm not trying to discourage you from learning Flash, but I think you should learn how it works and how to program in ActionScript before trying to make complex animations/fight scenes.

Last edited by S65 (2008-06-13 15:19:42)

Offline

 

#8 2008-06-13 14:46:12

archmage
Scratcher
Registered: 2007-05-18
Posts: 1000+

Re: mushroom warfare (idea for outside of scratch)

Do you even know how to use flash yet? Learn flash first, then plan out what you will make.


Hi, I am Archmage coder extraordinaire. I do Scratch,pascal,java,php,html, AS2 and AS3. Leave me a message if you want coding advice. Also check out my personal website, lots of good stuff about web development, Flash, and Scratch (v1 and v2) !

Offline

 

#9 2008-06-13 14:54:01

nicolasx
Scratcher
Registered: 2007-07-30
Posts: 500+

Re: mushroom warfare (idea for outside of scratch)

Hi i'm andresmh this is to unscratchy for me i'll have to take down this tread

Offline

 

#10 2008-06-13 15:01:27

Bobby500
Scratcher
Registered: 2008-04-19
Posts: 1000+

Re: mushroom warfare (idea for outside of scratch)

nicolasx wrote:

Hi i'm andresmh this is to unscratchy for me i'll have to take down this tread

No, you arn't Andremsh, Stop impersonating him, it could get you kicked off. 2ndly, Can you please make your banner smaller!!!!!

Offline

 

#11 2008-06-13 15:02:59

Bluestribute
Scratcher
Registered: 2008-01-24
Posts: 1000+

Re: mushroom warfare (idea for outside of scratch)

nicolasx wrote:

Hi i'm andresmh this is to unscratchy for me i'll have to take down this tread

Don't pretend to be a member of the Scratch Team at MIT, especially when we can see your name and your huge banner


http://img247.imageshack.us/img247/1204/bluestributett4.jpg
That's my PSN ID. I know tons of COD4 glitches. Add me as your friend. Oh, and get a headset

Offline

 

#12 2008-06-13 15:04:35

nicolasx
Scratcher
Registered: 2007-07-30
Posts: 500+

Re: mushroom warfare (idea for outside of scratch)

Bluestribute wrote:

nicolasx wrote:

Hi i'm andresmh this is to unscratchy for me i'll have to take down this tread

Don't pretend to be a member of the Scratch Team at MIT, especially when we can see your name and your huge banner

Bobby500 wrote:

nicolasx wrote:

Hi i'm andresmh this is to unscratchy for me i'll have to take down this tread

No, you arn't Andremsh, Stop impersonating him, it could get you kicked off. 2ndly, Can you please make your banner smaller!!!!!

It was a joke of coruse

Offline

 

#13 2008-06-13 15:05:36

nicolasx
Scratcher
Registered: 2007-07-30
Posts: 500+

Re: mushroom warfare (idea for outside of scratch)

nicolasx wrote:

Bluestribute wrote:

nicolasx wrote:

Hi i'm andresmh this is to unscratchy for me i'll have to take down this tread

Don't pretend to be a member of the Scratch Team at MIT, especially when we can see your name and your huge banner

Bobby500 wrote:

nicolasx wrote:

Hi i'm andresmh this is to unscratchy for me i'll have to take down this tread

No, you arn't Andremsh, Stop impersonating him, it could get you kicked off. 2ndly, Can you please make your banner smaller!!!!!

It was a joke of coruse

sorry if you didnt like that

Offline

 

#14 2008-06-13 15:06:18

Bluestribute
Scratcher
Registered: 2008-01-24
Posts: 1000+

Re: mushroom warfare (idea for outside of scratch)

nicolasx wrote:

Bluestribute wrote:

nicolasx wrote:

Hi i'm andresmh this is to unscratchy for me i'll have to take down this tread

Don't pretend to be a member of the Scratch Team at MIT, especially when we can see your name and your huge banner

Bobby500 wrote:

nicolasx wrote:

Hi i'm andresmh this is to unscratchy for me i'll have to take down this tread

No, you arn't Andremsh, Stop impersonating him, it could get you kicked off. 2ndly, Can you please make your banner smaller!!!!!

It was a joke of coruse

We know it is, but it's one that can (not saying it will) get you kicked off of Scratch. Were just looking out for you so you don't get kicked off


http://img247.imageshack.us/img247/1204/bluestributett4.jpg
That's my PSN ID. I know tons of COD4 glitches. Add me as your friend. Oh, and get a headset

Offline

 

#15 2008-06-13 15:10:40

S65
Scratcher
Registered: 2007-05-18
Posts: 100+

Re: mushroom warfare (idea for outside of scratch)

archmage wrote:

Do you even know how to use flash yet? Learn flash first, then plan out what you will make.

Whoops, I didn't read the part about the post being Flash. Fixed.

Offline

 

Board footer