Discuss Scratch

lugga
Scratcher
500+ posts

Easiest way to make a 3d game?

amdcrash wrote:

i recommend roblox studio if you are beginning with 3d gaming
but go with the others if you are experienced
Roblox studio, correct me if I'm wrong, can only publish to Roblox and not in the format of exe
SkullPerson
Scratcher
7 posts

Easiest way to make a 3d game?

For all of my small Blender projects I have worked on, I've made the models myself in Blender.
Ottertamer
Scratcher
60 posts

Easiest way to make a 3d game?

amdcrash wrote:

i recommend roblox studio if you are beginning with 3d gaming
but go with the others if you are experienced
Do you mean “a beginner at 3d game development?” If so, I certainly fit into that category
Is Roblox Studio free or relatively cheap? Also, could you provide a link to where you got Roblox Studio from?
Thank you!
lugga
Scratcher
500+ posts

Easiest way to make a 3d game?

Ottertamer wrote:

amdcrash wrote:

i recommend roblox studio if you are beginning with 3d gaming
but go with the others if you are experienced
Do you mean “a beginner at 3d game development?” If so, I certainly fit into that category
Is Roblox Studio free or relatively cheap? Also, could you provide a link to where you got Roblox Studio from?
Thank you!
It's free but can only make “Roblox” games. Go to roblox.com to learn more.
Ottertamer
Scratcher
60 posts

Easiest way to make a 3d game?

SkullPerson wrote:

For all of my small Blender projects I have worked on, I've made the models myself in Blender.
I have blender on my computer, but I don't know how to use it. Are there any tutorials you can recommend?
SkullPerson
Scratcher
7 posts

Easiest way to make a 3d game?

I remember looking at the “Blender Game Tutorial” videos from a YouTube channel called Software Tutorials to learn how to get used to Blender's user interface, but other than that you can explore some of the unique tutorials for specific things (Keeping score, moving the camera, etc.) by just looking them up on YouTube.
Specter22
Scratcher
100+ posts

Easiest way to make a 3d game?

You could check out this - http://craftstud.io/
Ottertamer
Scratcher
60 posts

Easiest way to make a 3d game?

Derpybunneh wrote:

Unity game engine is a great engine for 3D. You do have to learn to program in C# or a Unity version of JS, though, but it is really awesome and its free!
Is C# similar to Python at all? It would be nice if I could find an engine that uses Python for scripting, since I'm already pretty fluent in making 2d games with Python and Pygame…

I downloaded Unity 5 last weekend, and I really like the interface. It's very intuitive, I downloaded some textures by googling grass.png, water.gif, etc., and I made a pretty nice level with hills and valleys. The only problem is that I'm not very fluent in JavaScript, and I have never worked with C# before.
CreeperCraft64
Scratcher
38 posts

Easiest way to make a 3d game?

Ottertamer wrote:

Derpybunneh wrote:

Unity game engine is a great engine for 3D. You do have to learn to program in C# or a Unity version of JS, though, but it is really awesome and its free!
Is C# similar to Python at all? It would be nice if I could find an engine that uses Python for scripting, since I'm already pretty fluent in making 2d games with Python and Pygame…

I downloaded Unity 5 last weekend, and I really like the interface. It's very intuitive, I downloaded some textures by googling grass.png, water.gif, etc., and I made a pretty nice level with hills and valleys. The only problem is that I'm not very fluent in JavaScript, and I have never worked with C# before.
Isn't Python a program for beginners, like Scratch?
Ottertamer
Scratcher
60 posts

Easiest way to make a 3d game?

CreeperCraft64 wrote:

Ottertamer wrote:

Derpybunneh wrote:

Unity game engine is a great engine for 3D. You do have to learn to program in C# or a Unity version of JS, though, but it is really awesome and its free!
Is C# similar to Python at all? It would be nice if I could find an engine that uses Python for scripting, since I'm already pretty fluent in making 2d games with Python and Pygame…

I downloaded Unity 5 last weekend, and I really like the interface. It's very intuitive, I downloaded some textures by googling grass.png, water.gif, etc., and I made a pretty nice level with hills and valleys. The only problem is that I'm not very fluent in JavaScript, and I have never worked with C# before.
Isn't Python a program for beginners, like Scratch?
Python is a typed, object-oriented programming language, unlike Scratch, and it is often taught to beginners because its syntax is simple and relatively consistent. For instance, you could set a variable to 10 like this: my_variable = 10
Or declare a function like this:
def my_func(argument1, argument2):
# code goes here
Or create a class (it's a type of inheritance system) like this:
class something():
# code goes here
You can create classes within classes which becomes useful with large projects.
Anyway, I wouldn't call Python a programming language that is just for beginners. After all, Industrial Light and Magic uses it for CGI and other special effects, and if they are beginners, then I'd like to know isn't a beginning programmer.

My point is, Python isn't a drag and drop language, it is typed and extremely capable.



Last edited by Ottertamer (Nov. 1, 2016 21:32:04)

-stache-
Scratcher
500+ posts

Easiest way to make a 3d game?

Ottertamer wrote:

CreeperCraft64 wrote:

Ottertamer wrote:

Derpybunneh wrote:

Unity game engine is a great engine for 3D. You do have to learn to program in C# or a Unity version of JS, though, but it is really awesome and its free!
Is C# similar to Python at all? It would be nice if I could find an engine that uses Python for scripting, since I'm already pretty fluent in making 2d games with Python and Pygame…

I downloaded Unity 5 last weekend, and I really like the interface. It's very intuitive, I downloaded some textures by googling grass.png, water.gif, etc., and I made a pretty nice level with hills and valleys. The only problem is that I'm not very fluent in JavaScript, and I have never worked with C# before.
Isn't Python a program for beginners, like Scratch?
Python is a typed, object-oriented programming language, unlike Scratch, and it is often taught to beginners because its syntax is simple and relatively consistent. For instance, you could set a variable to 10 like this: my_variable = 10
Or declare a function like this:
def my_func(argument1, argument2):
# code goes here
Or create a class (it's a type of inheritance system) like this:
class something():
# code goes here
You can create classes within classes which becomes useful with large projects.
Anyway, I wouldn't call Python a programming language that is just for beginners. After all, Industrial Light and Magic uses it for CGI and other special effects, and if they are beginners, then I'd like to know isn't a beginning programmer.

My point is, Python isn't a drag and drop language, it is typed and extremely capable.



AFAIK It is dynamically-typed… Normally when saying “x is typed”, you are implying it is statically-typed…
Gevaudan
Scratcher
24 posts

Easiest way to make a 3d game?

The most basic of 3D games could be done without coding in Unity but you should have some understanding of C# or Javascript before you want to do anything other than moving around. Looking at the documentation is always helpful with any programming.
CreeperCraft64
Scratcher
38 posts

Easiest way to make a 3d game?

Ottertamer wrote:

CreeperCraft64 wrote:

Ottertamer wrote:

Derpybunneh wrote:

Unity game engine is a great engine for 3D. You do have to learn to program in C# or a Unity version of JS, though, but it is really awesome and its free!
Is C# similar to Python at all? It would be nice if I could find an engine that uses Python for scripting, since I'm already pretty fluent in making 2d games with Python and Pygame…

I downloaded Unity 5 last weekend, and I really like the interface. It's very intuitive, I downloaded some textures by googling grass.png, water.gif, etc., and I made a pretty nice level with hills and valleys. The only problem is that I'm not very fluent in JavaScript, and I have never worked with C# before.
Isn't Python a program for beginners, like Scratch?
Python is a typed, object-oriented programming language, unlike Scratch, and it is often taught to beginners because its syntax is simple and relatively consistent. For instance, you could set a variable to 10 like this: my_variable = 10
Or declare a function like this:
def my_func(argument1, argument2):
# code goes here
Or create a class (it's a type of inheritance system) like this:
class something():
# code goes here
You can create classes within classes which becomes useful with large projects.
Anyway, I wouldn't call Python a programming language that is just for beginners. After all, Industrial Light and Magic uses it for CGI and other special effects, and if they are beginners, then I'd like to know isn't a beginning programmer.

My point is, Python isn't a drag and drop language, it is typed and extremely capable.



I didn't say I thought it uses blocks like Scratch.
fireincarnate
Scratcher
100+ posts

Easiest way to make a 3d game?

Ottertamer wrote:

You play trombone? Cool! I play piano and violin, but I only play violin at a beginning level.
can we stay on topic?
maverick78921
Scratcher
1000+ posts

Easiest way to make a 3d game?

fireincarnate wrote:

Ottertamer wrote:

You play trombone? Cool! I play piano and violin, but I only play violin at a beginning level.
can we stay on topic?
he got back on topic
way back in 2016
Scratch---Cat
Scratcher
1000+ posts

Easiest way to make a 3d game?

Ottertamer wrote:

Hi,
I've used scratch for a while to make 2d games, but I would like to visit the world of 3d game development. The problem is, I don't really want to try and learn C++, or C# or Java right now. Basically, I wish there were just a 3d version of scratch that I can make my 3rd person 3d platformer with. And I know about Scratch 3d, but I don't think it works because it won't run at all in my browser (Firefox.)
Thanks in advance!
l'm now studying Unity RoIIing Sky.
l don't know whether Unity is easy enough for you.

Powered by DjangoBB