Symbianize Forum

Most of our features and services are available only to members, so we encourage you to login or register a new account. Registration is free, fast and simple. You only need to provide a valid email. Being a member you'll gain access to all member forums and features, post a message to ask question or provide answer, and share or find resources related to mobile phones, tablets, computers, game consoles, and multimedia.

All that and more, so what are you waiting for, click the register button and join us now! Ito ang website na ginawa ng pinoy para sa pinoy!

Pinoy Game Developer? Pasok!

@andrae

im still here alive and waiting hahaha, cant seem to find the support of our fellow filipinos just by joining us in this post conversation LOL.
If youre ready i could always setup the forum easily.
 
nag papractice ako ng unity3d!!! ano po bang program gamit nyo?
 
Kating kati na po ako. :dance: But then, it will just be a few of us who will be posting there + lurkers.

- - - Updated - - -

nag papractice ako ng unity3d!!! ano po bang program gamit nyo?

LÖVE + sublimetext2 - di naman kasi ako programmer kaya e'to lang kaya ko, libre pa.
 
Kating kati na po ako. :dance: But then, it will just be a few of us who will be posting there + lurkers.

- - - Updated - - -



LÖVE + sublimetext2 - di naman kasi ako programmer kaya e'to lang kaya ko, libre pa.


ako me forum (free forum), bago lang., pwede kayo magjoin if want nyo: megabot.cf haha..

First game ko with construct 2: http://apps.silentprojectsoftwares.com/games/tappyPlane/

Construct 2 muna ginamit ko since beginner ako sa game development, pero once na matutunan ko ung basic terms and logic baka lipat ako sa unity3d or libgdx for B4A.. haha..
 
@jhai_salvador

nice engine, i got a business license with construct 2 and thats a very good engine. Your game designs is from kenney diba?
 
@jhai_salvador

nice engine, i got a business license with construct 2 and thats a very good engine. Your game designs is from kenney diba?

yup :D kay kenney nga.. Free bundle sya site ng construct.. haha..
 
ah i see, yeah. i know that man. hes really good with game designs. just too busy
 
Kung mabilisan lang ok na ang "programmer's art". Alam ko may mga tips dyan ang ibang may experience na :)

48hr BaconGameJam next month https://bacongamejam.org/jams/bacongamejam-08/

Sige salamat, itry ko nga next time yan.

- - - Updated - - -

Kung mabilisan lang ok na ang "programmer's art". Alam ko may mga tips dyan ang ibang may experience na :)

48hr BaconGameJam next month https://bacongamejam.org/jams/bacongamejam-08/

Sige salamat, itry ko nga next time yan.
 
nag papractice ako ng unity!!! mas maganda sana kong meron kasama or group!!!! sino d2 meron group ng source coding? preferable unity!
 
@marshi21

we will be creating a forum where all aspiring game developers / programmers can join
 
meron akong ginagawang games eh problem ko is ung 3d architectural 3d animation!!!
 
Currently gumagamit ako ng sketchup 2013 or 2014 zbrush unity c sharp!!! para magawa ung game ko!!!
 
Java Game development with slick

morning guys. baka po may familiar dito sa java slick programming. may ginagawa kc akong game. Ito po ung scenario, sa single click po ng arrow up sa keyboard ko, gusto ko sana mag-increment for 0.2f pixel ung pictures sa Y direction nang hindi ko hinuhold ung arrow key up, like single click then automatically aakyat ung picture automatic pataas sa screen. ito po sample code ko:

public void update(GameContainer gc, StateBasedGame sbg, int delta) throws SlickException{
Input input = gc.getInput();

if(input.isKeyDown(Input.KEY_UP)){
boxY -= deltaY;
if(boxY <= 0){
boxY = 0;
}
}

if(input.isKeyDown(Input.KEY_RIGHT)){
boxX += deltaX;
if(boxX + width >= gc.getWidth() - 1){
boxX = gc.getWidth() - width;
}
}
}

thanks guys
 
Re: Java Game development with slick

D ako nagamit ng Java pero, code na iintindhan ko. un nga lang d ako marunong sa way ng pag gawa kaya kong me error paki ayos nalang!!!
Assuming na yang delta mo is multiplied sa deltatime (incrementing base on miliseconds at hindi by frame) itong code pwede na!!! nag iincrement sya aslong as d mo pindutin ung oposite key!

var Boolean:UpIncrement = false;
var Boolean:RightIncrement = false;

public void update(GameContainer gc, StateBasedGame sbg, int delta) throws SlickException{
Input input = gc.getInput();

if(input.isKeyDown(Input.KEY_UP)){
UpIncrement = true;
}

if(input.isKeyDown(Input.KEY_RIGHT)){
RightIncrement = true;
}

if(input.isKeyDown(Input.KEY_DOWN)){
UpIncrement = false;
}

if(input.isKeyDown(Input.KEY_LEFT)){
RightIncrement = false;
}

if(UpIncrement){
boxY += deltaY;
}

if(RightIncrement){
boxX += deltaX;
}
}
 
Re: Java Game development with slick

Hello po! :)

Narinig nyo na po ba ung programming language na Eqela?
http://www.eqela.com/

Programming language translator po sya, opo translator. . .
From Eqela, you can deploy your game on Android, Windows, Mac, Linux, and HTML5 (browser-based) na 100% native. ^check the site

And ito po ung na develop ko na game nung seminar na ni held nila saming school last week :))
http://blackout.biz.tm/game-space-defender-developed-using-eqela/

#share
 
Re: Java Game development with slick

How to become a game developer from scratch? Gusto ko po talaga matutong gumawa ng sarili kong game. Kung may Ebooks po kayo for starters like me, paki-share naman po. I prefer C++. Thanks and more powers po sa inyo.
 
Last edited:
Re: Java Game development with slick

ung unity po complete output na po sya depende nalang sa gusto nyong platform see hereView attachment 189540

xxbrix take unity! kong me background ka na sa coding (basics) hanap ka simple tutorial for beginners sa google madami yan dyan!!! basta dl mo lang ung unity!!!
 

Attachments

  • 1.png
    1.png
    257.1 KB · Views: 8
Re: Java Game development with slick

ung unity po complete output na po sya depende nalang sa gusto nyong platform see hereView attachment 973435

xxbrix take unity! kong me background ka na sa coding (basics) hanap ka simple tutorial for beginners sa google madami yan dyan!!! basta dl mo lang ung unity!!!


Got it sir. Try ko po maghanap ng tutorials using Unity.
 
Back
Top Bottom