actor n background

Non-platform specific questions.

Re: actor n background

Postby master0500 » Fri Jun 08, 2012 8:07 am

it easier to make it you self or request it as you may not find what you need and you'll avoid problems with copywrite
master0500
 
Posts: 409
Joined: Sun Jun 26, 2011 9:42 pm
Score: 27 Give a positive score

Re: actor n background

Postby dzuncoi » Fri Jun 08, 2012 1:16 pm

what program do u use to creat animations guy ?
dzuncoi
 
Posts: 33
Joined: Tue Jun 05, 2012 11:15 am
Score: 0 Give a positive score

Re: actor n background

Postby MrJolteon » Fri Jun 08, 2012 1:35 pm

I use MS Paint.
Join us on Discord!
Game Editor 2
These are the best ways to reach me these days


Your local Community Janitor, always lurking in the shadows...
User avatar
MrJolteon
 
Posts: 2326
Joined: Sat Aug 09, 2008 3:25 pm
Location: Stranded under endless sky
Score: 105 Give a positive score

Re: actor n background

Postby dzuncoi » Fri Jun 08, 2012 1:42 pm

really :shock: let me try, thank u
dzuncoi
 
Posts: 33
Joined: Tue Jun 05, 2012 11:15 am
Score: 0 Give a positive score

Re: actor n background

Postby dzuncoi » Fri Jun 08, 2012 2:36 pm

hey guy, when i creat an animation, there is still a white background behind the animation, how can i delete this ?
dzuncoi
 
Posts: 33
Joined: Tue Jun 05, 2012 11:15 am
Score: 0 Give a positive score

Re: actor n background

Postby happyjustbecause » Fri Jun 08, 2012 3:44 pm

You have to have a transparent background, I'm not sure how to do it MS paint, I use a different program. I found these tutorials though:

http://www.ehow.com/how_5649617_make-im ... paint.html
http://www.youtube.com/watch?v=AKyHxp_QSiU
For small creatures such as we the vastness is bearable only through love.
-Carl Sagan

Night Knight Development Thread
User avatar
happyjustbecause
 
Posts: 267
Joined: Tue Jul 26, 2011 3:10 pm
Location: Frazier Park, Ca
Score: 15 Give a positive score

Re: actor n background

Postby MrJolteon » Fri Jun 08, 2012 6:43 pm

On Win7, the only way to remove the background in MS Paint is by saving as a space-wasting BMP.
I recommend Paint.NET to remove backgrounds.
Join us on Discord!
Game Editor 2
These are the best ways to reach me these days


Your local Community Janitor, always lurking in the shadows...
User avatar
MrJolteon
 
Posts: 2326
Joined: Sat Aug 09, 2008 3:25 pm
Location: Stranded under endless sky
Score: 105 Give a positive score

Re: actor n background

Postby master0500 » Sat Jun 09, 2012 2:32 am

i use graphics gale: http://www.humanbalance.net/gale/us/
or photoshop
master0500
 
Posts: 409
Joined: Sun Jun 26, 2011 9:42 pm
Score: 27 Give a positive score

Re: actor n background

Postby dzuncoi » Sat Jun 09, 2012 8:00 am

MrJolteon wrote:On Win7, the only way to remove the background in MS Paint is by saving as a space-wasting BMP.
I recommend Paint.NET to remove backgrounds.


yeah, i move from MS Paint to Paint.net recently, its more convenient :D
dzuncoi
 
Posts: 33
Joined: Tue Jun 05, 2012 11:15 am
Score: 0 Give a positive score

Re: actor n background

Postby dzuncoi » Sat Jun 09, 2012 8:11 am

hey guys, can u show me when we use draw actor event ? and the differences between yvelocity n y ? such as a code like this:
Code: Select all
y+ = 5
n
Code: Select all
yvelocity+ =5
dzuncoi
 
Posts: 33
Joined: Tue Jun 05, 2012 11:15 am
Score: 0 Give a positive score

Re: actor n background

Postby skydereign » Sat Jun 09, 2012 7:11 pm

You should be able to test that yourself. The results will be pretty obvious. If you type in y+=5 in draw, your actor will move at a constant speed of 5 pixels per frame. If you use yvelocity+=5 your actor will increase in speed by 5 pixels per frame (accelerating extremely fast). So, if you want to use constant movement (as in the first method) you can just use yvelocity=5 in the create actor event. That way the actor's speed will be 5, and you don't have to keep telling the actor to move 5 pixels down (like you would using the draw event). If you can avoid using the draw actor event you should (within reason) because the event triggers every frame of the game. This isn't too big a problem if only a couple of actors have it, but if you had 100 bullets on screen, you can see that it could easily get out of hand.

There are cases though you can't use simple setting of yvelocity to achieve the kind of movement you want, and in that case you can use the draw event. For instance, if the enemy needs to be able to move back and forth depending on the player's position, you can either use a timer or the draw event, since you need to check occasionally if the enemy needs to change direction.
User avatar
skydereign
 
Posts: 3510
Joined: Mon Jul 28, 2008 8:29 am
Score: 589 Give a positive score

Re: actor n background

Postby dzuncoi » Sun Jun 10, 2012 8:12 am

thank u, i tested it before but in 2 cases the actor moved out of the view actor so fast, i cant see the differences between 2 cases so i asked like that :) next time i will test carefully before asking a question :D
dzuncoi
 
Posts: 33
Joined: Tue Jun 05, 2012 11:15 am
Score: 0 Give a positive score

Re: actor n background

Postby dzuncoi » Mon Jun 11, 2012 2:12 am

hey guy, i have a picture like this Image how can i devide it to create animation :?
i can make some smaller pictures like Image but it doesnt work, i try but still dunno how to adjust horizontal/vertical frames for them :(
dzuncoi
 
Posts: 33
Joined: Tue Jun 05, 2012 11:15 am
Score: 0 Give a positive score

Re: actor n background

Postby MrJolteon » Mon Jun 11, 2012 6:15 am

Each frame must be exactly the same size for it to work.
Join us on Discord!
Game Editor 2
These are the best ways to reach me these days


Your local Community Janitor, always lurking in the shadows...
User avatar
MrJolteon
 
Posts: 2326
Joined: Sat Aug 09, 2008 3:25 pm
Location: Stranded under endless sky
Score: 105 Give a positive score

Re: actor n background

Postby dzuncoi » Mon Jun 11, 2012 9:33 am

can u explain more ? from this picture, how can i know what its size for each frame ?
dzuncoi
 
Posts: 33
Joined: Tue Jun 05, 2012 11:15 am
Score: 0 Give a positive score

PreviousNext

Return to General

Who is online

Users browsing this forum: No registered users and 1 guest