Re: I want to create 3D game. What language to use?

2021-02-03 Thread AudioGames . net Forum — Developers room : magurp244 via Audiogames-reflector
Re: I want to create 3D game. What language to use? Don't know what state its in but the github's active, fairly recent activity, and a few commits just a few days ago. URL: https://forum.audiogames.net/post/612567/#p612567 -- Audiogames-reflector mailing list Audiogames-reflector

Re: I want to create 3D game. What language to use?

2021-02-03 Thread AudioGames . net Forum — Developers room : camlorn via Audiogames-reflector
Re: I want to create 3D game. What language to use? Wait, is Toga actually finished/stable now?  Looks like the last release was 2017, and I could have sworn it effectively died out. URL: https://forum.audiogames.net/post/612541/#p612541 -- Audiogames-reflector mailing list

Re: I want to create 3D game. What language to use?

2021-02-03 Thread AudioGames . net Forum — Developers room : magurp244 via Audiogames-reflector
Re: I want to create 3D game. What language to use? @30Ah, yeah your right. I recall they had some tickets about that with little progress on it. Hm, what was the accessibility like on PyQT5? That seems to support mobile, another one seems to be [Toga] with Native Widgets, might be worth

Re: I want to create 3D game. What language to use?

2021-02-03 Thread AudioGames . net Forum — Developers room : camlorn via Audiogames-reflector
Re: I want to create 3D game. What language to use? I feel like this topic is mostly missing the point though.  I'm not sure why language is relevant.  If the game is going to be 3D in the sense of having x, y, and z then you'd better start by building some sort of prototype because

Re: I want to create 3D game. What language to use?

2021-02-03 Thread AudioGames . net Forum — Developers room : amerikranian via Audiogames-reflector
Re: I want to create 3D game. What language to use? @29, Kivy is unusable, period. URL: https://forum.audiogames.net/post/612449/#p612449 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo

Re: I want to create 3D game. What language to use?

2021-02-02 Thread AudioGames . net Forum — Developers room : magurp244 via Audiogames-reflector
Re: I want to create 3D game. What language to use? @18Python can work on Android/iOS, using the Kivy Library for example. I'm not sure how good it is though for reliability/accessibility. URL: https://forum.audiogames.net/post/612258/#p612258 -- Audiogames-reflector mailing list

Re: I want to create 3D game. What language to use?

2021-02-02 Thread AudioGames . net Forum — Developers room : Ethin via Audiogames-reflector
Re: I want to create 3D game. What language to use? @jonikster, you've at least improved... A little.Now... Python isn't buggy -- and there's not a problem with detecting errors at runtime. Hell, even MOO does it, and you don't see anyone complaining about that. We've had dynamic typing

Re: I want to create 3D game. What language to use?

2021-02-02 Thread AudioGames . net Forum — Developers room : amerikranian via Audiogames-reflector
Re: I want to create 3D game. What language to use? @jonikster, Dynamic typing is not specific to Python. JS does it, C# has an option to make your variables dynamic, C++ has the auto keyword, and all of them will crash if you misuse a string as an integer. Well, not all (Silly

Re: I want to create 3D game. What language to use?

2021-02-02 Thread AudioGames . net Forum — Developers room : bgt lover via Audiogames-reflector
Re: I want to create 3D game. What language to use? @22: Yeah, c# is a good enough language for any kind of project nowadays, I am quite surprised how it evolved from a windows exclusive, proprietary thing, but then, so did swift.Anyway, to your second question, I am more than sure you

Re: I want to create 3D game. What language to use?

2021-02-02 Thread AudioGames . net Forum — Developers room : jonikster via Audiogames-reflector
Re: I want to create 3D game. What language to use? @JayJay,Errors due to interpreter and dynamic typing at runtime URL: https://forum.audiogames.net/post/612143/#p612143 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com https://sabahattin

Re: I want to create 3D game. What language to use?

2021-02-02 Thread AudioGames . net Forum — Developers room : mohamed via Audiogames-reflector
Re: I want to create 3D game. What language to use? think he means that your code breaks if an error for example, Calling hello="hi." and then doing something like hello.die() or something else, And then your code runs while there's an error already, I were annoyed my

Re: I want to create 3D game. What language to use?

2021-02-02 Thread AudioGames . net Forum — Developers room : JayJay via Audiogames-reflector
Re: I want to create 3D game. What language to use? @21, I'd still like you to clarify what you mean when you say buggy. URL: https://forum.audiogames.net/post/612137/#p612137 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com https://sabahattin

Re: I want to create 3D game. What language to use?

2021-02-02 Thread AudioGames . net Forum — Developers room : cyrmax_it via Audiogames-reflector
Re: I want to create 3D game. What language to use? bgt lover wrote:@5 I heartily agree, indeed such questions accomplish nothing in the end. Smart are those guys at stackoverflow, they can just cloze a question if they can motivate that it's too subjective/opinion based or whatever.Anyway

Re: I want to create 3D game. What language to use?

2021-02-02 Thread AudioGames . net Forum — Developers room : jonikster via Audiogames-reflector
Re: I want to create 3D game. What language to use? I think here we have already given enough information for the author of this topic, the rest will be holywar. URL: https://forum.audiogames.net/post/612118/#p612118 -- Audiogames-reflector mailing list Audiogames-reflector

Re: I want to create 3D game. What language to use?

2021-02-02 Thread AudioGames . net Forum — Developers room : mohamed via Audiogames-reflector
Re: I want to create 3D game. What language to use? as far as i know... Python never gave me a weird bugg from it self, Maybe from other libraries yes, Which is not python's fault, BtwAlso, Listing why is language x better than language y is not really something good to do, Because every

Re: I want to create 3D game. What language to use?

2021-02-02 Thread AudioGames . net Forum — Developers room : JayJay via Audiogames-reflector
Re: I want to create 3D game. What language to use? Again, not a complete expert, but, what is such a big deal about correcting errors at runtime? BGT does it, python does it, and alot of stuff does it. When you say, "Buggy", it gives off the impression that python is a bugg

Re: I want to create 3D game. What language to use?

2021-02-02 Thread AudioGames . net Forum — Developers room : jonikster via Audiogames-reflector
Re: I want to create 3D game. What language to use? @JayJay, @mohamed,Yes, Python is cross-platform when we talk about Windows/Linux/MacOS. But what about Android/IOS?And what about bug-free? Many bugs can only be detected at runtime with Python. URL: https://forum.audiogames.net/post

Re: I want to create 3D game. What language to use?

2021-02-02 Thread AudioGames . net Forum — Developers room : mohamed via Audiogames-reflector
Re: I want to create 3D game. What language to use? yes, Python is cross platform, I didn't know that c# is though... URL: https://forum.audiogames.net/post/612093/#p612093 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com https://sabahattin

Re: I want to create 3D game. What language to use?

2021-02-02 Thread AudioGames . net Forum — Developers room : JayJay via Audiogames-reflector
Re: I want to create 3D game. What language to use? @15, I'm not an expert, but doesn't Python also share that characteristic? Both, actually? URL: https://forum.audiogames.net/post/612092/#p612092 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com

Re: I want to create 3D game. What language to use?

2021-02-02 Thread AudioGames . net Forum — Developers room : jonikster via Audiogames-reflector
Re: I want to create 3D game. What language to use? Hello.My advice is to try both Python and C#. C# has the advantage of being cross-platform and bug-free, but since the advent of Lucia, Python is also an interesting option. URL: https://forum.audiogames.net/post/612079/#p612079

Re: I want to create 3D game. What language to use?

2021-02-02 Thread AudioGames . net Forum — Developers room : bgt lover via Audiogames-reflector
Re: I want to create 3D game. What language to use? @everyone saying c# doesn't have a game engine, can you go experiment a bit with monogame? I made some little demos with it, however I realised a long time ago that I can't make interesting enough audiogames just because I mostly only

Re: I want to create 3D game. What language to use?

2021-02-01 Thread AudioGames . net Forum — Developers room : amerikranian via Audiogames-reflector
Re: I want to create 3D game. What language to use? Again, those languages with your library’s? They are not the best. The best is a superlative, and by nature subjective. Also, most of those libraries possess few features beyond sound manipulation, a matter of simple mathematics

Re: I want to create 3D game. What language to use?

2021-02-01 Thread AudioGames . net Forum — Developers room : alisson via Audiogames-reflector
Re: I want to create 3D game. What language to use? and if you like to use c#, you have Thisit works with godot too, and it has hrtf bwilt in URL: https://forum.audiogames.net/post/611840/#p611840 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com

Re: I want to create 3D game. What language to use?

2021-02-01 Thread AudioGames . net Forum — Developers room : alisson via Audiogames-reflector
Re: I want to create 3D game. What language to use? and if you like to use c#, you have [this](https://github.com/sanslash332/exploudEngine). It works with godot too URL: https://forum.audiogames.net/post/611840/#p611840 -- Audiogames-reflector mailing list Audiogames-reflector

Re: I want to create 3D game. What language to use?

2021-02-01 Thread AudioGames . net Forum — Developers room : SkyLord via Audiogames-reflector
Re: I want to create 3D game. What language to use? use bass and that's it. Bass is better than IrrKlang. But you can use IrrKlang as well if you want to. For 3d sounds, you can make a synthizer wrapper, which i started to do and it even worked. URL: https://forum.audiogames.net/post

Re: I want to create 3D game. What language to use?

2021-02-01 Thread AudioGames . net Forum — Developers room : SkyLord via Audiogames-reflector
Re: I want to create 3D game. What language to use? use bass and that's it. Bass is better than IrrKlang. But you can use IrrKlang as well if you want to. URL: https://forum.audiogames.net/post/611813/#p611813 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin

Re: I want to create 3D game. What language to use?

2021-02-01 Thread AudioGames . net Forum — Developers room : mohamed via Audiogames-reflector
Re: I want to create 3D game. What language to use? well, From what i tried for like 2 weaks of deep serching, I for the starting point didn't even find a good audio manager that you could rely on to do for example, 2D sound controls or 3D, I don't think that others are hard, But an audio

Re: I want to create 3D game. What language to use?

2021-02-01 Thread AudioGames . net Forum — Developers room : SkyLord via Audiogames-reflector
Re: I want to create 3D game. What language to use? @7,Making a c# audiogame engine is easy enough if you want to do it. I had no problems with mine, hesitant to release it cause i'm afraid of possible tons of criticism poring on me, lol. Me and my friend have successfully made some small

Re: I want to create 3D game. What language to use?

2021-02-01 Thread AudioGames . net Forum — Developers room : SkyLord via Audiogames-reflector
Re: I want to create 3D game. What language to use? @7,Making a c# audiogame engine is easy enough if you want to do it. I had no problems with mine, hesitant to release it cause i'm afraid of tons of criticism poring on me, lol. Me and my friend have successfully made some small games

Re: I want to create 3D game. What language to use?

2021-02-01 Thread AudioGames . net Forum — Developers room : SkyLord via Audiogames-reflector
Re: I want to create 3D game. What language to use? @7,Making a c# audiogame engine is easy enough if you want to do it. I had no problems with mine, hesitant to release it cause i'm afraid of tons of criticism poring on me, lol. Me and my friend have successfully made some small games

Re: I want to create 3D game. What language to use?

2021-02-01 Thread AudioGames . net Forum — Developers room : alisson via Audiogames-reflector
Re: I want to create 3D game. What language to use? well, if you want a engine which have pretty much you said, and you want to start programing, you can try godot. Yea is not all accesible, but you cando most of the things in code URL: https://forum.audiogames.net/post/611804/#p611804

Re: I want to create 3D game. What language to use?

2021-02-01 Thread AudioGames . net Forum — Developers room : mohamed via Audiogames-reflector
Re: I want to create 3D game. What language to use? @3, Maybe there's no best language to do stuff in, But there's best languages with good libraries to start with and learn, For example i would never recommend someone going strate up into c++ just to make an audiogame as a starter, I may

Re: I want to create 3D game. What language to use?

2021-02-01 Thread AudioGames . net Forum — Developers room : mohamed via Audiogames-reflector
Re: I want to create 3D game. What language to use? @3, Maybe there's no best language to do stuff in, But there's best languages with good libraries to start with and learn, For example i would never recommend someone going strate up into c++ just to make an audiogame as a starter, I may

Re: I want to create 3D game. What language to use?

2021-02-01 Thread AudioGames . net Forum — Developers room : mohamed via Audiogames-reflector
Re: I want to create 3D game. What language to use? @3, Maybe there's no best language to do stuff in, But there's best languages with good libraries to start with and learn, For example i would never recommend someone going strate up into c++ just to make an audiogame as a starter, I may

Re: I want to create 3D game. What language to use?

2021-02-01 Thread AudioGames . net Forum — Developers room : mohamed via Audiogames-reflector
Re: I want to create 3D game. What language to use? @3, Maybe there's no best language to do stuff in, But there's best languages with good libraries to start with and learn, For example i would never recommend someone going strate up into c++ just to make an audiogame as a starter, I may

Re: I want to create 3D game. What language to use?

2021-02-01 Thread AudioGames . net Forum — Developers room : mohamed via Audiogames-reflector
Re: I want to create 3D game. What language to use? @3, Maybe there's no best language to do stuff in, But there's best languages with good libraries to start with and learn, For example i would never recommend someone going strate up into c++ just to make an audiogame as a starter, I may

Re: I want to create 3D game. What language to use?

2021-01-31 Thread AudioGames . net Forum — Developers room : magurp244 via Audiogames-reflector
Re: I want to create 3D game. What language to use? It would help to know which languages you already know or have worked with, as we may be able to point you towards resources and API's that may prove useful. My first impulse based on your requirements and experience with server

Re: I want to create 3D game. What language to use?

2021-01-31 Thread AudioGames . net Forum — Developers room : bgt lover via Audiogames-reflector
Re: I want to create 3D game. What language to use? @5 I heartily agree, indeed such questions accomplish nothing in the end. Smart are those guys at stackoverflow, they can just cloze a question if they can motivate that it's too subjective/opinion based or whatever.Anyway, to throw my

Re: I want to create 3D game. What language to use?

2021-01-31 Thread AudioGames . net Forum — Developers room : Ethin via Audiogames-reflector
Re: I want to create 3D game. What language to use? This is just not a good question to ask. I don't know why people continue to ask it. I think in beginner programmer courses and books we should hammer it home to never ask questions like this because your only going to get opinions

Re: I want to create 3D game. What language to use?

2021-01-31 Thread AudioGames . net Forum — Developers room : magurp244 via Audiogames-reflector
Re: I want to create 3D game. What language to use? It would help to know which languages you already know or have worked with, as we may be able to point you towards resources and API's that may prove useful. My first impulse based on your requirements and experience with server

Re: I want to create 3D game. What language to use?

2021-01-31 Thread AudioGames . net Forum — Developers room : amerikranian via Audiogames-reflector
Re: I want to create 3D game. What language to use? For audiogames, literally any language will work provided you use correct algorithms and practices. Asking on here will yield no useful results besides people going "Switch to Python because X, or use C# because Y, or do it in Pure

Re: I want to create 3D game. What language to use?

2021-01-31 Thread AudioGames . net Forum — Developers room : cyrmax_it via Audiogames-reflector
Re: I want to create 3D game. What language to use? Any help will be appreciated!You can E-mail me atbelousov@ya.ruOr contact me in Telegramt.me/cyrmax URL: https://forum.audiogames.net/post/611591/#p611591 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin

I want to create 3D game. What language to use?

2021-01-31 Thread AudioGames . net Forum — Developers room : cyrmax_it via Audiogames-reflector
I want to create 3D game. What language to use? Hello everyone!I am not a newbie programmer, but i know only about server programming and creating iOS apps.Now i want to develop a 3D game for windows (linux and macOS are optional).What programming language is the best for that?The language

I want to create 3D game. What language to use?

2021-01-31 Thread AudioGames . net Forum — Developers room : cyrmax_it via Audiogames-reflector
I want to create 3D game. What language to use? Hello everyone!I am not a newbie programmer, but i know only about server programming and creating iOS apps.Now i want to develop a 3D game for windows (linux and macOS are optional).What programming language is the best for that?The language