Difference between revisions of "Pipeline Set (RW Section)"

From GTAMods Wiki
Jump to navigation Jump to search
(Added Information)
 
 
(9 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{RW Section|Pipeline Set|0x0253F2F3}}
+
{{RW Section
 +
| NAME = Pipeline Set
 +
| VENDORNAME = Rockstar Games
 +
| MODULENAME = Plug-In
 +
| MODULEID = 0253F2
 +
| IDENTIFIER = F3
 +
| PARENTS = [[Atomic (RW Section)|Atomic]] ''([[Extension (RW Section)|Extension]])''
 +
}}
  
A '''Pipeline Set''' is one of Rockstar's [[List of RW section IDs#Rockstar.27s_Custom_Sections|custom sections]]. It defines which of the Rockstar-made Rendering Pipeline to use. So for example it is possible to add Specular Materials to Buildings.
 
  
The typical location in a SA [[model file|dff]] section hierarchy is ''[[Clump (RW Section)|Clump]] > [[Geometry List (RW Section)|Geometry List]] > [[Geometry (RW Section)|Geometry]] > [[Material List (RW Section)|Material List]] > [[Material (RW Section)|Material]] > [[Extension (RW Section)|Extension]] > Pipeline Set.
+
A '''Pipeline Set''' is one of Rockstar's [[List of RW section IDs|custom sections]]. It is used by the Renderware engine to select a rendering pipeline that takes responsibility for drawing a atomic.
  
==Binary Structure==
+
==Binary structure==
  
The section only consists of an 4-byte integer. The interger can have 3 diffrent values. Those values define which rendering pipeline to use.
+
The section only consists of an 4-byte integer which can have one of three different values. This value will determine which of the engine's rendering pipeline to use for an [[Atomic (RW Section)|atomic]].
  
0x53F20098 - Unknown
+
* <code>0x53F20098</code> &ndash; Render pipeline used for buildings with [[Reflection_Material_(RW_Section)|reflective materials]].
0x53F2009A - Vehicle Upgrades/Cutscene Models
+
* <code>0x53F2009A</code> &ndash; Render pipeline used for vehicles.
0x53F2009C - Reflection Map
+
* <code>0x53F2009C</code> &ndash; Render pipeline used for [[Night_Vertex_Colors_(RW_Section)|night vertex colors]].
  
For example if the section is 0x53F2009C you can add the reflection map gta material to your object and it will be rendered.
+
For example if the data is 0x53F2009A a [[Specular_Material_(RW_Section)|specular material]] can be added to a non-vehicle object.  Primarily this is used for vehicle upgrade parts and some cutscene objects. Vehicles are using this rendering pipeline by default and do not need a ''pipeline set''. It is not possible to add ''specular'' or ''reflective'' materials to a player, pedestrian or other 'skinned' models.
  
 
==External Links==
 
==External Links==
  
* [http://www.gtaforums.com/index.php?showtopic=128451&st=60 RW Analyse Thread (With findings by DexX)]
+
* {{GTAF|post|128451|3905781|RW Analyse Thread}} &ndash; with findings by {{U|DexX}}
 +
 
 +
{{N|SA|VC|3}}

Latest revision as of 12:52, 11 September 2020

Pipeline Set
RenderWare Stream Section
Vendor Rockstar Games
Module Plug-In
Module ID 0x0253F2
Identifier 0xF3
Chunk ID 0x0253F2F3
Versions All
Hierarchy
Parents:
Atomic (Extension)
Children:
None
Extensions:
None
File Format


A Pipeline Set is one of Rockstar's custom sections. It is used by the Renderware engine to select a rendering pipeline that takes responsibility for drawing a atomic.

Binary structure

The section only consists of an 4-byte integer which can have one of three different values. This value will determine which of the engine's rendering pipeline to use for an atomic.

For example if the data is 0x53F2009A a specular material can be added to a non-vehicle object. Primarily this is used for vehicle upgrade parts and some cutscene objects. Vehicles are using this rendering pipeline by default and do not need a pipeline set. It is not possible to add specular or reflective materials to a player, pedestrian or other 'skinned' models.

External Links