Search found 16 matches

by Raimond
October 26th, 2017, 11:23 am
Forum: Everything
Topic: Will chilli teach Unity or Unreal Engine?
Replies: 9
Views: 3989

Will chilli teach Unity or Unreal Engine?

The only reason i'm watching your tuts chills is to learn enough so i can learn unity and then make my own game (mobile game) to raise one million dollars that will be donated to chilli
by Raimond
October 26th, 2017, 10:57 am
Forum: Everything
Topic: Noob question
Replies: 3
Views: 1960

Noob question

Hello peeps, I'm at the snake tutorial right now, wish i had more time for tuts but for now i have one question. i see chilli did something i can't fully understand and i wish you could help me. when initializing the rng constructor rng(std::random_device()()) he used 2 of "()", my question is why. ...
by Raimond
October 5th, 2017, 2:49 pm
Forum: Everything
Topic: HELP --> noob questions :)
Replies: 3
Views: 1700

Re: HELP --> noob questions :)

flawless explanation, guess i should've drawn it, thanks
by Raimond
October 5th, 2017, 9:56 am
Forum: Everything
Topic: HELP --> noob questions :)
Replies: 3
Views: 1700

HELP --> noob questions :)

Hello lovely people, i have started the "Beginner C++ Game Programming DirectX" series with the hope i'll learn enough programming to make my long planned mobile game. i'm stuck at tutorial 8 having this question: 1) I can't understand why this part of the code works in the "bool IsColliding(int x0,...
by Raimond
April 18th, 2014, 2:27 pm
Forum: Everything
Topic: android games?
Replies: 1
Views: 1340

android games?

hello, i understood quite a lot from chili's tutorials and i'm just wondering becouse i have some great idea of making a game for android. is there any way of making an android or iphone game in c++? i googled how to make a touch system in c++ but didn't find anything usefull .
by Raimond
February 9th, 2014, 11:49 am
Forum: Everything
Topic: Image into pixel function?
Replies: 4
Views: 2099

Re: Image into pixel function?

LuisR14 wrote:in the meantime you could use this or this :)
now, that's what i'm looking for
by Raimond
February 8th, 2014, 10:15 pm
Forum: Everything
Topic: Image into pixel function?
Replies: 4
Views: 2099

Re: Image into pixel function?

Wouter-k-9 wrote:I don't know how far you are in the tutorials, but in lesson 20 or so of the beginner tutorials he teaches how to use sprites.
I'm at 15... believe me or not, these tutorials are golden to me, chili is really good in programming also in explaining it, anyways, cheers mate!
by Raimond
February 8th, 2014, 9:14 pm
Forum: Everything
Topic: Image into pixel function?
Replies: 4
Views: 2099

Image into pixel function?

Hello, i'd really like to know, how do i convert an image into pixel functions if possible becouse i want to start making my own games and i want to use different images that have nothing to do with poo or that face becouse i'm pretty sure he got tired of eating that much poo... and another reason i...
by Raimond
February 6th, 2014, 6:46 pm
Forum: Everything
Topic: [Solved] lesson 12 bug ?
Replies: 10
Views: 4224

Re: lesson 12 bug ?

Edit: Seriously Luis I was so close, can't believe you beat me by 1 minute! XD Here's the issue. Look at your function: Game::ComposeFrame() DrawCursor( baseX + cursorX + squareSize, baseY + cursorY + squareSize ); This is VERY close to correct. However it isn't. :'( The issue here, is you are doin...
by Raimond
February 6th, 2014, 6:17 pm
Forum: Everything
Topic: [Solved] lesson 12 bug ?
Replies: 10
Views: 4224

Re: lesson 12 bug ?

i dont have checked the whole code you pasted, but in the beginning i see a space between index and ++? it should be index++ instead of index ++ It also couls be something else, but then i have to dig further in your code, wich i only could do after my skiing :) the space makes no difference in my ...