Frametime: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
Thunder4ik (talk | contribs) |
||
(4 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
== gpGlobals->frametime == | {{Multiple issues| | ||
Time spent on last server or client frame. This is ideal for calculating progress per frame | {{Dead end|date=January 2024}} | ||
{{Orphan|date=January 2024}} | |||
}} | |||
{{DISPLAYTITLE:frametime}} | |||
== gpGlobals->'''frametime''' == | |||
Time spent on last server or client frame. This is ideal for calculating progress per frame where it is unknown how many frames it should take. | |||
===Example=== | ===Example=== | ||
<pre> | <pre> | ||
#define ALPHA_FREQUENCY 255 / 1.0f // Alpha should reach 255 in 1 second. | |||
int alpha = 0; | int alpha = 0; | ||
void Think() | void Think() | ||
{ | { | ||
alpha += | alpha += ALPHA_FREQUENCY * gpGlobals->frametime; | ||
} | }</pre> | ||
</pre> | |||
[[Category:Programming]] | |||
[[Category:Glossary]] |
Latest revision as of 15:04, 7 January 2024

This article has multiple issues. Please help improve it or discuss these issues on the talk page. (Learn how and when to remove these template messages)

This article has no
links to other VDC articles. Please help improve this article by adding links
that are relevant to the context within the existing text.
January 2024


January 2024

This article is an orphan, meaning that few or no articles link to it.
You can help by
adding links to this article from other relevant articles.
January 2024
You can help by

January 2024
gpGlobals->frametime
Time spent on last server or client frame. This is ideal for calculating progress per frame where it is unknown how many frames it should take.
Example
#define ALPHA_FREQUENCY 255 / 1.0f // Alpha should reach 255 in 1 second. int alpha = 0; void Think() { alpha += ALPHA_FREQUENCY * gpGlobals->frametime; }