Animated cartoon movie with PB?

Just starting out? Need help? Post your questions and find answers here.
PHP
User
User
Posts: 65
Joined: Sat Sep 10, 2005 5:38 pm

Animated cartoon movie with PB?

Post by PHP »

I'm planning to make short animated films, for example, The Simpsons or South Park.

There are, of course, various video tools for this, like After Effects, etc., but I enjoy programming and would rather try it in PB and simply record the final result using a screen recorder.

The characters are currently 2D, available as vectors, and can be exported as PNGs with a transparent background. They also have their individual body parts, various facial expressions, etc.

They don't need all sorts of facial expressions and gestures; it's enough if their eyes open/close from time to time and their mouth moves somewhat when spoken (.wav). Facial expressions should change depending on their mood. If the person moves, their legs should "walk."

So what's the right choice here? 2D, of course, but sprites or images?

Perhaps OOP? Have the character assembled on the fly as desired?

CreateImage("Mike","happy","blue_shirt")

The timing would then, of course, also need to be resolved: movements, i.e., when a person walks onto the stage, when they gesture, facial expressions changing, speech output, etc.

Perhaps this would be better done using a kind of JSON storyboard, rather than actually creating each movement with a line of code ;)

Do you have any ideas for this? I'm curious!

Thanks
NBG
User avatar
Demivec
Addict
Addict
Posts: 4260
Joined: Mon Jul 25, 2005 3:51 pm
Location: Utah, USA

Re: Animated cartoon movie with PB?

Post by Demivec »

There are some fine examples of this kind of animation that was done using tools created in PureBasic by one of the members of this forum. With the length of time you've been on the forum you've surely seen some of his posts.

[blendman] was the user. He passed away about a year ago but left a blog that gives some ideas of his tools functionality with you tube videos demonstrating their use and open source software as well. His forum posts give further information about these same things. I think his work describes something similar to what you want to do and should give you some ideas.

Here's a link to his blog: https://blendman.blogspot.com/

Here's a link more specifically to software he created or worked on: https://blendman.blogspot.com/2015/05/mes-logiciels.html?m=1

Here are links to some of his forum threads:
https://www.purebasic.fr/english/viewtopic.php?p=574454
https://www.purebasic.fr/english/viewtopic.php?p=356530
https://www.purebasic.fr/english/viewtopic.php?p=593323
https://www.purebasic.fr/english/viewtopic.php?p=566854
https://www.purebasic.fr/english/viewtopic.php?p=486839
User avatar
jacdelad
Addict
Addict
Posts: 1993
Joined: Wed Feb 03, 2021 12:46 pm
Location: Riesa

Re: Animated cartoon movie with PB?

Post by jacdelad »

Wrong subforum...
Good morning, that's a nice tnetennba!

PureBasic 6.21/Windows 11 x64/Ryzen 7900X/32GB RAM/3TB SSD
Synology DS1821+/DX517, 130.9TB+50.8TB+2TB SSD
miso
Enthusiast
Enthusiast
Posts: 410
Joined: Sat Oct 21, 2023 4:06 pm
Location: Hungary

Re: Animated cartoon movie with PB?

Post by miso »

So what's the right choice here? 2D, of course, but sprites or images?
Or 3D. Single planes can be used as sprites, but might give you special advantages later on. South Park is made with Maya that way.
Quin
Addict
Addict
Posts: 1127
Joined: Thu Mar 31, 2022 7:03 pm
Location: Colorado, United States
Contact:

Re: Animated cartoon movie with PB?

Post by Quin »

jacdelad wrote: Fri Jun 06, 2025 4:36 am Wrong subforum...
It's a question about how to code something in PB, posted in the coding questions section of the forum... :?: :?:
Fred
Administrator
Administrator
Posts: 18162
Joined: Fri May 17, 2002 4:39 pm
Location: France
Contact:

Re: Animated cartoon movie with PB?

Post by Fred »

It's been moved since :D
Quin
Addict
Addict
Posts: 1127
Joined: Thu Mar 31, 2022 7:03 pm
Location: Colorado, United States
Contact:

Re: Animated cartoon movie with PB?

Post by Quin »

Fred wrote: Fri Jun 06, 2025 2:04 pm It's been moved since :D
Ah, gotcha! I was bamboozled :mrgreen:
Post Reply