Search found 47 matches

by Guilherme
May 14th, 2016, 12:30 pm
Forum: Everything
Topic: How to hide from google and web trackers
Replies: 4
Views: 2410

Re: How to hide from google and web trackers

Maybe use tor and the disconnect search engine?
by Guilherme
May 6th, 2016, 8:57 pm
Forum: Everything
Topic: 3D Poopface Game
Replies: 6
Views: 2889

Re: 3D Poopface Game

Sorry for the long wait... You will need to take the assets from above because the forum doesn't accept more than 12mb per file.(Just add it to the 3D PooFace folder)
by Guilherme
April 3rd, 2016, 10:24 am
Forum: Everything
Topic: Intermediate 21 White Screen [SOLVED]
Replies: 7
Views: 2980

Re: Intermediate 21 White Screen [SOLVED]

I'm sorry but I don't have the code for this lesson done, if you say what is your bug and add the file I can try and help you. I remember I also had a lot of problems with this part, you are right, sometimes is easy to miss something.
by Guilherme
February 7th, 2016, 9:35 am
Forum: Everything
Topic: Made First game
Replies: 1
Views: 2090

Re: Made First game

It's cool to see people make progress but next time zip the file and upload it directly to the forums. I find this Mega kinda insecure, maybe just me...
by Guilherme
January 28th, 2016, 6:51 pm
Forum: Everything
Topic: advanced 7 problem
Replies: 3
Views: 1775

Re: advanced 7 problem

No problem =).
by Guilherme
January 28th, 2016, 4:19 pm
Forum: Everything
Topic: advanced 7 problem
Replies: 3
Views: 1775

Re: advanced 7 problem

The problem is in your Transform function in your Drawable class, the function is like this: void Transform(const Mat3& mat) { trans = trans * mat; } Where it should be: void Transform(const Mat3& mat) { trans = mat * trans; } The problem is that in your Mat3 class the operator '*' is not correct an...
by Guilherme
January 27th, 2016, 1:35 pm
Forum: Everything
Topic: Chilli Sprite Code running slow
Replies: 3
Views: 1756

Re: Chilli Sprite Code running slow

Well, look like you are using an old version of the framework because your put pixel function is not optimized.
by Guilherme
January 25th, 2016, 5:17 pm
Forum: Everything
Topic: 3D Poopface Game
Replies: 6
Views: 2889

Re: 3D Poopface Game

Thanks I did it kinda fast not worrying about polishment and the idea was simple enough to end it. I've been procrastinating a lot, so sometimes is nice to do something simple that works and see the (bad)result that you actually imagined.
by Guilherme
January 25th, 2016, 1:35 pm
Forum: Everything
Topic: 3D Poopface Game
Replies: 6
Views: 2889

3D Poopface Game

I've been learning 3D for months and I didn't finished any 'gamish' type of 3D stuff so I decided to recreate(kinda) the pooface game with D3D11 + 3D. I don't know how to properly load models so I did it with the cubed fashion. Objective: Simply collect(eat) all the poo to see the end(lame yes). Con...