Voxels for hud - is it possible?
Moderator: GZDoom Developers
-
- Posts: 1749
- Joined: Mon Aug 11, 2008 12:59 pm
- Graphics Processor: nVidia with Vulkan support
- Location: Winchester, VA
Re: Voxels for hud - is it possible?
There's ways you can avoid the turning choppiness
-
- Posts: 1112
- Joined: Sat May 22, 2010 12:49 pm
Re: Voxels for hud - is it possible?
How?
Also, is there a way to make the voxel NOT turn, even though technically the enemy will? (So he can target player without looking at it)
Also, is there a way to make the voxel NOT turn, even though technically the enemy will? (So he can target player without looking at it)
-
- Posts: 1749
- Joined: Mon Aug 11, 2008 12:59 pm
- Graphics Processor: nVidia with Vulkan support
- Location: Winchester, VA
Re: Voxels for hud - is it possible?
A_FaceTarget only turns the actor, it doesn't target it. If you do a movement system that uses ThrustThing/A_Recoil and A_SetAngle you can have smooth movement and turning, but it takes a bit of work to get it to work nicely.
-
-
- Posts: 12328
- Joined: Tue Jul 21, 2009 12:04 pm
- Preferred Pronouns: He/Him
- Operating System Version (Optional): Windows 11
- Graphics Processor: nVidia with Vulkan support
- Location: capital N, capital S, no space
Re: Voxels for hud - is it possible?
[wiki=A_ChangeVelocity]Why are people even still using that?[/wiki]Demolisher wrote:ThrustThing/A_Recoil
-
- Posts: 1112
- Joined: Sat May 22, 2010 12:49 pm
Re: Voxels for hud - is it possible?
I meant, when actor attacks it turns to player. Is there a way to prevent that? (Flembrane)Demolisher wrote:A_FaceTarget only turns the actor, it doesn't target it. If you do a movement system that uses ThrustThing/A_Recoil and A_SetAngle you can have smooth movement and turning, but it takes a bit of work to get it to work nicely.
-
-
- Posts: 10773
- Joined: Sun Jul 20, 2003 12:15 pm
Re: Voxels for hud - is it possible?
At this point, you're best off suggesting a NOROTATE flag for voxels (in a separate thread of course) for that particular case.
-
- Posts: 1749
- Joined: Mon Aug 11, 2008 12:59 pm
- Graphics Processor: nVidia with Vulkan support
- Location: Winchester, VA
Re: Voxels for hud - is it possible?
Dammit. Lemme go edit my follow code...NeuralStunner wrote:[wiki=A_ChangeVelocity]Why are people even still using that?[/wiki]Demolisher wrote:ThrustThing/A_Recoil
A_FaceTarget's first parameter is an angle, so you can callmallo wrote:I meant, when actor attacks it turns to player. Is there a way to prevent that? (Flembrane)
Code: Select all
TNT1 AAAAA 1 A_FaceTarget(15)
Code: Select all
TNT1 A 5 A_FaceTarget
Note: Disables the blursphere random attack spray
-
- Posts: 486
- Joined: Tue Nov 29, 2005 2:15 pm
- Graphics Processor: nVidia with Vulkan support
Re: Voxels for hud - is it possible?
In regards to the HUD/View Voxels, It would look better if Weapon Drift were a possible feature to add.
Out of curiosity, doesn't most of the HUD stuff use Direct3D Now? (At least on the windows platform.) If that were the case, would 3D Viewmodels be much of a longshot?
Out of curiosity, doesn't most of the HUD stuff use Direct3D Now? (At least on the windows platform.) If that were the case, would 3D Viewmodels be much of a longshot?
-
-
- Posts: 17934
- Joined: Fri Jul 06, 2007 3:22 pm
Re: Voxels for hud - is it possible?
Regardless of what is used to render the HUD, it is still a 2D display.
-
- Global Moderator
- Posts: 2730
- Joined: Sun Jun 25, 2006 4:43 pm
- Preferred Pronouns: He/Him
- Operating System Version (Optional): Windows 11/Manjaro
- Graphics Processor: ATI/AMD with Vulkan/Metal Support
- Location: Citadel Station
Re: Voxels for hud - is it possible?
I'm pretty sure DirectDraw handles it for Windows Platforms. Linux (haven't thought about that one!) and other platforms have to use the other rendering method. (SDL wasn't it?)StrikerMan780 wrote:In regards to the HUD/View Voxels, It would look better if Weapon Drift were a possible feature to add.
Out of curiosity, doesn't most of the HUD stuff use Direct3D Now? (At least on the windows platform.) If that were the case, would 3D Viewmodels be much of a longshot?
-
-
- Posts: 17934
- Joined: Fri Jul 06, 2007 3:22 pm
Re: Voxels for hud - is it possible?
ZDoom does use [wiki]Direct3D[/wiki] when possible.
-
- Global Moderator
- Posts: 2730
- Joined: Sun Jun 25, 2006 4:43 pm
- Preferred Pronouns: He/Him
- Operating System Version (Optional): Windows 11/Manjaro
- Graphics Processor: ATI/AMD with Vulkan/Metal Support
- Location: Citadel Station
Re: Voxels for hud - is it possible?
Thanks for the clearing up there, Gez.Gez wrote:ZDoom does use [wiki]Direct3D[/wiki] when possible.
-
- Posts: 11
- Joined: Fri Feb 15, 2013 7:34 pm
- Location: Ukraine
Re: Voxels for hud - is it possible?
Crappy? I think not. I allready tested it and working on it. But creepy... May be)mallo wrote:Even monsters?conradrdw wrote:I make all the objects in my project voxels.
Voxel monsters look crappy when they change direction.
The question is still actual - why not voxels in hud? If hud bobs - voxel moves, so we have the perspective wiev of voxel model. i use left/right handed huds. I need this feature or you will see epileptical jumping of faked hud at the finish of project.
-
- Posts: 2100
- Joined: Sun Aug 18, 2013 9:41 am
- Location: Philadelphia, PA
Re: Voxels for hud - is it possible?
1.) No, it's probably like a 3D model in that we don't see the sides when it bobs, it faces us the same way all the time.conradrd wrote: If hud bobs - voxel moves, so we have the perspective wiev of voxel model. i use left/right handed huds. I need this feature or you will see epileptical jumping of faked hud at the finish of project.
2.) You do not need this feature, it is not a necessary feature for modding.
3.) Just use sprites for the HUD, voxels are basically 3D pixels, so it's not like they clash.
-
- Posts: 2599
- Joined: Tue Nov 29, 2005 4:37 am
Re: Voxels for hud - is it possible?
This argument could be made for a lot of the aesthetic features found in ZDoom and GZDoom, though.TheMightyHeracross wrote:2.) You do not need this feature, it is not a necessary feature for modding.