Difference between revisions of "Centerprint"

From QuakeQEWiki
Jump to navigation Jump to search
(Created page with "Centerprint is a quake c function that allows the programmer to display some aligned to the center of the screen defs.qc declaration void(entity client, string s, optional string s1, optional string s2, optional string s3, optional string s4, optional string s5, optional string s6, optional string s7) centerprint = #73;    // sprint, but in middle")
 
Line 1: Line 1:
Centerprint is a quake c function that allows the programmer to display some aligned to the center of the screen
Centerprint is a [[quake c]] function that allows the programmer to display some aligned to the center of the screen




defs.qc declaration
defs.qc declaration
  void(entity client, string s, optional string s1, optional string s2, optional string s3, optional string s4, optional string s5, optional string s6, optional string s7) centerprint = #73;    // sprint, but in middle
  void(entity client, string s, optional string s1, optional string s2, optional string s3, optional string s4, optional string s5, optional string s6, optional string s7) centerprint = #73;    // sprint, but in middle

Revision as of 08:02, 16 February 2022

Centerprint is a quake c function that allows the programmer to display some aligned to the center of the screen


defs.qc declaration

void(entity client, string s, optional string s1, optional string s2, optional string s3, optional string s4, optional string s5, optional string s6, optional string s7) centerprint = #73;    // sprint, but in middle