Retroblazer Is For Furfags By Furfags
#28907 posted by anonymous user on 2017/02/15 01:25:10
So DP Seems More Capable As An Engine That I Thought
#28908 posted by aDaya on 2017/02/15 13:14:10
after seeing those examples. I might use it afterall.
But one last thing just to be sure: is Quakespasm's way of filtering texture an usual one? Can it be replicated by DP? Can tyrustil's (and others) compilers be used for a commercial game?
Daya
#28909 posted by Jonas on 2017/02/15 13:22:46
in theory yes.
in practice, I'd use unity.
Jonas I'd Use It Too, But If Brush-based Map Cannot Be Done In It
#28910 posted by aDaya on 2017/02/15 18:46:01
then I'd settle with DP.
But then I've seen that TB2 can export map files into wavefront 3d models, meaning they can be used by Unity as a single model, meaning using Unity *and* TB2 is possible.
The downside I see with this is the back and forth with converting files and testing maps. If the map I test in Unity is wrong in the original map files, I have to edit in TB2 and then convert it.
Is brush-based maps in Unity that buggy? Because I'm wondering how the guys behind Dusk are doing it: https://www.youtube.com/watch?v=GqUiJpITMS0
Another thing I'm wondering about TB2: since my game won't have a palette limit, can TB2 use .wad files (or texture pack files rather) that doesn't hold a palette limit?
#28911 posted by muk on 2017/02/15 19:05:13
Try http://sabrecsg.com/ for brush building in Unity
.map In Unity
#28912 posted by Kinn on 2017/02/15 19:13:35
With a dumb conversion of .map to mesh, You'll have all sorts of lovely problems like sparklies everywhere because .map brushes -> mesh is just t-junction city.
Also, unless you caulk and automatically remove all the unseen brush faces in a conversion step, you'll be drawing all that too - which might not be a problem because it will be so low poly (I assume?)
If you want to go down the .map -> Unity route, I strongly suggest creating it as a Quake 3 .map, and then using q3map2 to process your brushwork into clean .ase meshes
You'll need to look into how you do collision. Are you going to just duplicate the visual mesh and use that as a collision mesh? Could be pretty unoptimal unless you are going for 1996 levels of geometric detail in the visual map. Manually creating optimal collision meshes will eat up a ton of your time.
You'll need to think about culling too - Unity has an occlusion culling system but you'll have to have a long hard look at that to see how it works so you know how to organise your map meshes - it's no good having the map as a single mesh, it has to be split into lots of seperate meshes so they can be culled independantly of each other.
#28913 posted by Kinn on 2017/02/15 19:22:17
IMO, the iteration time between changing something in a .map, and then going through all the different steps to see those changes in your Unity game, will be such an insanely convoluted waste of time that you will have an incredible new appreciation for how easy and quick quake-engine mapping is.
Unity plugins like that one mukor linked might be worth looking at before you discard the Unity idea though.
#28914 posted by dwere on 2017/02/15 19:46:47
What are the benefits of brush-based mapping compared to mesh anyway?
I'm asking because at some point in the future I'll have to decide what to start with, and right now my experience = 2.5D mapping + a little bit of low-poly 3D model creation in Blender.
Mukor And Dwere
#28915 posted by aDaya on 2017/02/15 20:49:56
Now that's what I'm talking about. I'll look into it and then decide between Unity and DP.
dwere -> brush-based mapping is by practice better to construct an environment faster, the downside being it won't look as organic as brush-based map, which is better fitted for natural terrain (plains and mountains to name a few), at least from my experience.
#28916 posted by Joel B on 2017/02/15 21:37:10
A couple of things about brush-based mapping:
https://www.youtube.com/watch?v=xOBEy-zIotE
https://www.youtube.com/watch?v=6ubu76gEvM8
Got these from the YouTube channel of the same guy that I saw discussing HammUEr (that I linked above).
Kinn
#28917 posted by starbuck on 2017/02/16 13:14:16
Are you using Unity for your job? Or for personal projects? Interested in what you're up to with it, as i've just been going through some tutorials
#28918 posted by Kinn on 2017/02/16 14:54:17
Are you using Unity for your job? Or for personal projects?
At work: Only started using it once all the decent games companies near where I live shut down and we all had to do skeevy pay-to-win shit for mobile. I am loathe to admit being involved in any of that horrible crap, but it brought the doughnuts in.
Personal stuff: All sorts...2d stuff, 3d stuff...A lot of proof-of-concept stuff that never really got finished, but some of it is interesting and I'd like to maybe do a write up at some point maybe but don't hold your breath.
American McGee Is Doing An AMA
#28918
#28920 posted by starbuck on 2017/02/16 16:03:23
Ha, ah thats a shame. Well you do what you have to, eh. Unfortunately those are the companies that make money!
Write up at some point would be very interesting to me at least. I'm getting into it now, really only with an eye to do some silly little games or proof-of-concepts. Any good tips for communities / resources / reading? It seems like finding a shit-needle in a shit-haystack at the moment.
#28921 posted by Kinn on 2017/02/16 16:36:50
Any good tips for communities / resources / reading? It seems like finding a shit-needle in a shit-haystack at the moment.
Any step-by-step guides out there are mostly going to be clusterfucks of irrelevant shit that don't really address the stuff that you specifically want to be doing with Unity.
Instead - break down what you want to know into very focused questions about one little aspect of Unity, and simply learn by Googling one question at a time. Somewhere, someone will have asked the exact same question as you, and there will be decent answers to that question scatted across a million different forums like stackoverflow, and even sometimes on the Unity forums, or on the official documentation pages.
Once you kind of know which systems of Unity and/or script functions you need to be dealing with to solve your problem, then its time to read about those systems on the official documentation.
Once you get deep into Unity you'll realise how a lot of its systems are poorly documented "black boxes", and your only "resource" is googling to find others trying to do the same thing as you.
#28915
#28922 posted by dwere on 2017/02/16 16:44:49
Thanks, it's more or less what I thought.
Terrains are exactly what I'm concerned about, as well as various tilted/broken structures of complex shapes.
#28916
#28923 posted by dwere on 2017/02/16 16:47:12
Thanks for those as well.
I like the way that guy talks. I couldn't understand most of it, but I think I got the main idea.
#28921
#28924 posted by starbuck on 2017/02/16 22:39:09
ha, maybe not exactly what i hoped to hear, but at least the "google your specific question" technique is reassuringly familiar. Pretty much anything i've ever coded is built upon stackOverflow ground, with varying degrees of shakiness.
Cheers for the advice!
#28925 posted by Joel B on 2017/02/17 02:09:30
Does anyone have a working link to the Quake Info Pool?
The discussion on the Mark V thread about Quake hackiness reminded me of it so I went to have a look. I can't get it to load from either inside3d.com or insideqc.com, or even archive.org. Seems to be a lot of interminable redirecting or reloading going on?
Maybe it's just my browser... (Chrome on macOS)
#28926 posted by ericw on 2017/02/17 03:07:54
Yeah, I get the same redirect loop in Firefox or Chrome for: http://www.insideqc.com/qip/home.shtml
Disabling javascript works around the problem though (I'm using this FF plugin)
Inside 3d
#28927 posted by madfox on 2017/02/17 05:42:04
wasn't it changed into InsideQc?
How The Internet Ruins Productivity (by Design)
#28928 posted by killpixel on 2017/02/17 19:58:31
New Q1SP By QuakeOne User 'MissBubbles'
#28929 posted by Breezeep_ on 2017/02/18 16:30:29
#28928
#28930 posted by Cocerello on 2017/02/18 19:09:45
That part about drugs sown as something necessary foe work reminded me on how crunch work is regarded the same.
#28928
#28931 posted by Kinn on 2017/02/18 19:22:24
I didn't have time to watch the whole video (quite appropriate given the subject matter!), but that stuff about the drugs is some fucked up shit.
|