Search found 92 matches

by Noiecity
Tue Apr 23, 2024 8:08 pm
Forum: Off-topic
Topic: Gonna take a break for another project
Replies: 12
Views: 4268

Re: Gonna take a break for another project

It is not a bad game, if the graphic interface was improved, you added a system of levels and a time per level overcome, it would have been a game "Improve your mathematical and deduction ability to exceed levels and test your ability with each level"
by Noiecity
Fri Apr 19, 2024 3:57 pm
Forum: Code Snippets
Topic: Updated wxIrrlicht
Replies: 18
Views: 4633

Re: Updated wxIrrlicht

@Noiecity: Yeah - it's about Windows timer in general which are used for example in Windows sleep(). Irrlicht uses those for it's device->sleep(). Which I don't recommend using anymore therefore. Up to (including) Irrlicht 1.8 we also used sleep(1) for device->yield(), so that was just as bad. But ...
by Noiecity
Fri Apr 19, 2024 12:23 am
Forum: Code Snippets
Topic: Updated wxIrrlicht
Replies: 18
Views: 4633

Re: Updated wxIrrlicht

@Noiecity: Yeah - it's about Windows timer in general which are used for example in Windows sleep(). Irrlicht uses those for it's device->sleep(). Which I don't recommend using anymore therefore. Up to (including) Irrlicht 1.8 we also used sleep(1) for device->yield(), so that was just as bad. But ...
by Noiecity
Wed Apr 17, 2024 9:43 pm
Forum: Off-topic
Topic: Gonna take a break for another project
Replies: 12
Views: 4268

Re: Gonna take a break for another project

The game is fine, if you translate it into Japanese and add a ranking over time, it is likely that you will find a larger audience and it will go viral, or that it will be copied and the copy will go viral haha
by Noiecity
Sun Apr 07, 2024 2:57 am
Forum: Off-topic
Topic: Gonna take a break for another project
Replies: 12
Views: 4268

Re: Gonna take a break for another project

haha this man
by Noiecity
Tue Apr 02, 2024 2:37 am
Forum: Off-topic
Topic: Gonna take a break for another project
Replies: 12
Views: 4268

Re: Gonna take a break for another project

great
by Noiecity
Fri Mar 29, 2024 11:24 am
Forum: FAQs, Tutorials, Howtos, and external tool lists
Topic: How to add sprites like Doom or Quake
Replies: 2
Views: 3878

How to add sprites like Doom or Quake

https://i.ibb.co/kQN7F8Y/Sprites22024-03-2906-59-55-75-ezgif-com-video-to-gif-converter.gif I attach the link with the content (sprites and others), the code and an example executable(CC0). Download: https://www.mediafire.com/file/n1fbwcieh8n8bnk/sprites2.5d.rar/file It is necessary to add device->...
by Noiecity
Thu Mar 21, 2024 2:24 am
Forum: Code Snippets
Topic: Updated wxIrrlicht
Replies: 18
Views: 4633

Re: Updated wxIrrlicht

:D
by Noiecity
Wed Mar 20, 2024 4:07 am
Forum: Code Snippets
Topic: Updated wxIrrlicht
Replies: 18
Views: 4633

Re: Updated wxIrrlicht

@Noiecity: Yeah - it's about Windows timer in general which are used for example in Windows sleep(). Irrlicht uses those for it's device->sleep(). Which I don't recommend using anymore therefore. Up to (including) Irrlicht 1.8 we also used sleep(1) for device->yield(), so that was just as bad. But ...
by Noiecity
Tue Mar 19, 2024 4:49 am
Forum: FAQs, Tutorials, Howtos, and external tool lists
Topic: How to add fake reflections in irrEdit and irrlicht
Replies: 0
Views: 2707

How to add fake reflections in irrEdit and irrlicht

In this tutorial you will learn the basics of adding fake reflections using a HDRI (High dynamic range imaging) image in jpg format(320 kb). This tutorial will try to introduce you to the basic features of irrEdit. You can download irrlicht here: https://www.ambiera.at/downloads/irrEdit-1.5.zip You ...
by Noiecity
Mon Mar 18, 2024 3:34 am
Forum: Code Snippets
Topic: Updated wxIrrlicht
Replies: 18
Views: 4633

Re: Updated wxIrrlicht

Thanks, that is good to have. I recently learned something about using OnTimer to render on Windows. The resolution of the timer is only around 15ms which means the fps limit is around 66 FPS (actually more like 65 in my experience). Learned about that when I updated to a 144Hz screen. My old game ...
by Noiecity
Sun Mar 17, 2024 11:57 pm
Forum: Game Assets
Topic: Golem1 - Golem Fighter - Free download for commercial usage
Replies: 0
Views: 3862

Golem1 - Golem Fighter - Free download for commercial usage

https://i.ibb.co/JpHzxq5/092024-03-1719-27-16-12-ezgif-com-video-to-gif-converter.gif Download( updated in 18-03-2024 ): https://www.mediafire.com/file/el8tphcdca9clte/Golem1Example%2528update%252818-03-2024%2529%2529.rar/file The Golem1Example.rar archive contains: https://i.ibb.co/zxhY2gc/Golem1....
by Noiecity
Wed Mar 13, 2024 3:41 pm
Forum: Beginners Help
Topic: Simple question about parenting an object to a camera?
Replies: 7
Views: 1563

Re: Simple question about parenting an object to a camera?

I wouldn't worry too much about speed of camera calculations. You don't run many of those, so it's unlikely to ever be a bottleneck. I did it to understand how cameraNodeFPS works, at least I wanted to achieve something similar, and as I'm new to c++, understanding the irrlicht source code still se...