Discuss Scratch
- Discussion Forums
- » Help with Scripts
- » How Do I Make 3D?
- ham07
-
Scratcher
100+ posts
How Do I Make 3D?
I already know a bit about 3D like (FOV * ( (X or Y) / Z )), but it's not good as it can only produce wireframe games with a lot of coding involved
so I'd like to know how to make better 3D:
1. draw a triangle (thick line)
2. draw a dot in the middle of the triangle (varying size)
3. outline the first triangle with a 2nd triangle (thin line)
the best I've done is this:
https://scratch.mit.edu/projects/619556084/
it lags like crazy yet it's only one block, so the method described above is probably better to use than sprites that probably won't do.
if anyone has any projects or simple scripts to help out, that'd be great.
Thanks.
-Ham07
so I'd like to know how to make better 3D:
1. draw a triangle (thick line)
2. draw a dot in the middle of the triangle (varying size)
3. outline the first triangle with a 2nd triangle (thin line)
the best I've done is this:
https://scratch.mit.edu/projects/619556084/
it lags like crazy yet it's only one block, so the method described above is probably better to use than sprites that probably won't do.
if anyone has any projects or simple scripts to help out, that'd be great.
Thanks.
-Ham07
- Pixalperfect
-
Scratcher
500+ posts
How Do I Make 3D?
I already know a bit about 3D like (FOV * ( (X or Y) / Z )), but it's not good as it can only produce wireframe games with a lot of coding involvedHere's a project that can make a square and fill it in.
so I'd like to know how to make better 3D:
1. draw a triangle (thick line)
2. draw a dot in the middle of the triangle (varying size)
3. outline the first triangle with a 2nd triangle (thin line)
the best I've done is this:
https://scratch.mit.edu/projects/619556084/
it lags like crazy yet it's only one block, so the method described above is probably better to use than sprites that probably won't do.
if anyone has any projects or simple scripts to help out, that'd be great.
Thanks.
-Ham07
You can make triangles using this too
- ham07
-
Scratcher
100+ posts
How Do I Make 3D?
it'd take too long and slow the project,
thanks for trying to help out though.
thanks for trying to help out though.
- Pixalperfect
-
Scratcher
500+ posts
How Do I Make 3D?
it'd take too long and slow the project,Right Click and press edit on the define block and click run without screen refresh
thanks for trying to help out though.
- AdvancedSiuozl
-
Scratcher
19 posts
How Do I Make 3D?
when green flag clicked
forever
say [IDK]
clear
stamp
pen down
set pen color to [#391918]
when [h v] key pressed
say (pick random (1(join [8] [6])) to (10))
end
Pfffaahahaha
- helloworldbyeworld
-
Scratcher
1000+ posts
How Do I Make 3D?
That probably won’t work because all it does is say stuff and do random pen.when green flag clicked
forever
say [IDK]
clear
stamp
pen down
set pen color to [#391918]
when [h v] key pressed
say (pick random (1(join [8] [6])) to (10))
end
Pfffaahahaha
(It might also be just spam)
- Discussion Forums
- » Help with Scripts
-
» How Do I Make 3D?