Talk:Adding Motion Blur: Difference between revisions
No edit summary |
(What about if I change map?) |
||
Line 52: | Line 52: | ||
== Bloom tutorial? == | == Bloom tutorial? == | ||
I'd love to see a similar tutorial on how you implemented bloom Garry :) | I'd love to see a similar tutorial on how you implemented bloom Garry :) | ||
== What about if I change map? == | |||
Dunno if anyone still reads his but anyway... I noticed some problems with the motion blur code when swapping levels. The blur won't behave very well untill the new map has been running for as long time as the last one. Wouldn't something like | |||
if( (fNextDrawTime+pp_motionblur_time.GetFloat()*2) > gpGlobals->curtime ) | |||
fNextDrawTime = gpGlobals->curtime + pp_motionblur_time.GetFloat(); | |||
right after | |||
if( gpGlobals->curtime >= fNextDrawTime ){...} | |||
inside | |||
void CViewRender::DoMotionBlur( void ) | |||
be kind of smart to put in? | |||
--[[User:Lorre|Lorre]] 17:19, 28 Jan 2006 (PST) |
Revision as of 18:19, 28 January 2006
view_scene.cpp \cl_dll\view_scene.cpp(1934) : error C2664: 'IMaterialVar::SetTextureValue' : cannot convert parameter 1 from 'IMaterial *' to 'ITexture *'
Types pointed to are unrelated; conversion requires reinterpret_cast, C-style cast or function-style cast
\cl_dll\view_scene.cpp(1939) : error C2065: 'pMatMBlur' : undeclared identifier :(
- With the fixes that were added, it should be working now. Make sure to get the latest code from here and try again. --Snakez
What am I doing wrong here?
I've followed the tutorial to the letter, but my poor C++ skills are letting me down, it seems :-(
Build errors: src\cl_dll\view_scene.cpp(71): error C2039: 'DoMotionBlur' : is not a member of 'CViewRender'
src\cl_dll\view_scene.cpp(73): error C2065: 'pp_motionblur' : undeclared identifier
src\cl_dll\view_scene.cpp(73): error C2228: left of '.GetInt' must have class/struct/union type type is unknown-type
.. and so and so forth.
Anyone know what i've done wrong? --JamesHarrison 05:59, 23 Aug 2005 (PDT)
I updated the tutorial.. add
#include "materialsystem/materialsystemutil.h"
--Garry Newman 11:55, 6 Nov 2005 (PST)
Bug? Or Just some sort of glitch?
Every thing works good, great tutorial! However there is some kinda weird thing going on. all the breakable crates and just the breakable crates are doing a HOM effect instead of having their textures drawn. Has anyone else come across this? I did the tutorial exactly as it was presented so I'm not sure why it's doing this.
Precache?
How would one go about doing a precace on this texture, seeing that it is not a real metrial?
I have done a PrecacheMaterial( "HUDoverlays/frontbuffer" ); but MB is still laging on the first load...
- Possibly because of this?: pMatScreen = materials->FindMaterial( "frontbuffer", TEXTURE_GROUP_OTHER, true );—ts2do (Talk | @) 20:52, 11 Nov 2005 (PST)
- that wont matter becuase my code has been changed to reflect the movement of the frontbuffer material
It isn't hitching when loading the material, it's hitching when creating the texture for some reason. Call the GetMoBlurTex0() function before it starts the game to create the texture there instead of in-game. --Garry Newman 03:28, 21 Nov 2005 (PST)
Velocity Sensitive Motion Blur?
How can this motion blur code be adjusted in accordance with the velocity of the player? In other words, how can the ferocity of the blur be increased or decreased when the player is accelerating or decelerating? --Adam Webb 09:55, 21 Dec 2005 (PST)
Bloom tutorial?
I'd love to see a similar tutorial on how you implemented bloom Garry :)
What about if I change map?
Dunno if anyone still reads his but anyway... I noticed some problems with the motion blur code when swapping levels. The blur won't behave very well untill the new map has been running for as long time as the last one. Wouldn't something like
if( (fNextDrawTime+pp_motionblur_time.GetFloat()*2) > gpGlobals->curtime ) fNextDrawTime = gpGlobals->curtime + pp_motionblur_time.GetFloat();
right after
if( gpGlobals->curtime >= fNextDrawTime ){...}
inside
void CViewRender::DoMotionBlur( void )
be kind of smart to put in?
--Lorre 17:19, 28 Jan 2006 (PST)