XML:BINA/PAR3: Difference between revisions

m
a little wording tweak under <DisplayType>, but we still need to answer these questions some day
m (→‎Notes on locklights: improving table for smaller resolution (laptop))
m (a little wording tweak under <DisplayType>, but we still need to answer these questions some day)
 
(11 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{XML_BINA_Header|prev=ONIE|type=PAR3|next=SABD|name=Particle v3}}
{{XML_BINA_Header|prev=ONIE|type=PAR3|next=SABD|name=Particles}}


===File structure===
===File structure===
Line 24: Line 24:
             [...]
             [...]
         </Attractor>
         </Attractor>
         '''[[#variable storage types|<Variables>]]'''
         '''[[#Variable storage types|<Variables>]]'''
             [...]
             [...]
         </Variables>
         </Variables>
Line 208: Line 208:
|valign=top| <DisplayType>
|valign=top| <DisplayType>
|valign=top| flag
|valign=top| flag
| How the particle is displayed. (Documentation Needed)
| How the particle is displayed. (Documentation needed.)
: Sprite
: Sprite - always faces screen (ignores <HasOrientation>)
: RotatedSprite
: RotatedSprite - always faces screen but can rotate on Z axis (the depth axis); needs <HasOrientation>true
: Beam - bullet textures and such
: Beam - rotates so it can be seen from all directions but not when origin's Z axis is identical to ''screen axis''?; needs <HasOrientation>true
: Arrow
: Arrow - fixed to one axis of the origin (forward?); needs <HasOrientation>true
: Flat
: Flat - fixed to one axis of the origin (side?); needs <HasOrientation>true
: OrientedContrail
: OrientedContrail - no standard, needs setup somewhere else; needs <HasOrientation>?
: Discuss
: Discuss - no standard, needs setup somewhere else; needs <HasOrientation>?
: Decal - sticks to a wall
: Decal - sticks to a wall
: Geometry - uses an M3GM
: Geometry - uses an M3GM; needs <HasOrientation>?
|-
|-
|valign=top| <TexGeom>
|valign=top| <TexGeom>
Line 276: Line 276:
|valign=top| <UseSpecialTint>
|valign=top| <UseSpecialTint>
|valign=top| flag
|valign=top| flag
| Research note: "true" can be found in BINA3RAPbarab_p02.xml
| Color is based on the health of the character who owns the particle (see the Barabas regeneration particle BINA3RAPbarab_p02 for an example). These colors are the same ones [[XML:ONGS#The_health_display_meter|specified for the health bar using ONGS]].
: true
: true
: false
: false
Line 346: Line 346:
| Degrees. Decal isn't cut off for any connecting planes which meet at an angle equal to or less than this value.
| Degrees. Decal isn't cut off for any connecting planes which meet at an angle equal to or less than this value.
|}
|}


===Attractor===
===Attractor===
Line 1,797: Line 1,796:
|}
|}


'''The vanilla BINA3RAPlocklight file doesn't allow new events because of its buggy behavior.''' Gumby solved the problem by putting the "SetVariable" code into the start and stop event. Additional testing discovered that particles identify doors as characters. A small vid can be seen [http://www.youtube.com/watch?v=kY8uH5vRt3Q here.]
'''The vanilla BINA3RAPlocklight file doesn't allow new events because of its buggy behavior.''' Gumby solved the problem by putting the "SetVariable" code into the start and stop event. Additional testing discovered that particles identify doors as characters. A small vid can be seen here (<nowiki>https://www.youtube.com/watch?v=kY8uH5vRt3Q</nowiki>, dead link).


{{divhide|See used code here > }}
{{divhide|See used code here > }}
Line 1,944: Line 1,943:
: They are used for additional level design and to show weapon damage on surroundings.
: They are used for additional level design and to show weapon damage on surroundings.
: The following steps will show you how to place a decorative texture (poster/warning sign/whatever) into a level.
: The following steps will show you how to place a decorative texture (poster/warning sign/whatever) into a level.


====Step 1 - extending the particle collection====
====Step 1 - extending the particle collection====
Line 1,951: Line 1,949:
: '''The maximum tolerance distance counts 10 units.''' Let's say the ground height (y) is 45 and the particle is spawned at 55: then this is the maximum tolerance; 56 wouldn't work.
: '''The maximum tolerance distance counts 10 units.''' Let's say the ground height (y) is 45 and the particle is spawned at 55: then this is the maximum tolerance; 56 wouldn't work.
: '''"chr_debug_characters = 1"''' helps you. But note that the y value is not the head or pelvis height -- it is at the lowest point of the feet.
: '''"chr_debug_characters = 1"''' helps you. But note that the y value is not the head or pelvis height -- it is at the lowest point of the feet.
* <Rotation> .. '''see [[#decal_facing|"decal facing"]]'''
* <Rotation> .. '''see [[#Decal_facing|"decal facing"]]'''
* <Class> .. this is your [[#step_2_-_creating_BINA3RAP_file|particle file]]
* <Class> .. this is your [[#Step_2_-_creating_BINA3RAP_file|particle file]]
* <Tag> .. optional; '''used when you want to activate or deactivate decals or other particle via BSL'''
* <Tag> .. optional; '''used when you want to activate or deactivate decals or other particle via BSL'''
* <Flags> .. "not initially created" flag (2) or nothing (1; 4; 8)
* <Flags> .. "not initially created" flag (2) or nothing (1; 4; 8)
Line 1,964: Line 1,962:
             </Header>
             </Header>
             <OSD>
             <OSD>
                 [[#step_2_-_creating_BINA3RAP_file|<Class>]]'''<font color="#00AA00">decal_particle_name</font>'''</Class>
                 [[#Step_2_-_creating_BINA3RAP_file|<Class>]]'''<font color="#00AA00">decal_particle_name</font>'''</Class>
                 [[#step_4_-_show_or_hide_decals_via_BSL|<Tag>]]'''<font color="#0000FF">decal_BSL_name</font>'''</Tag>
                 [[#Step_4_-_show_or_hide_decals_via_BSL|<Tag>]]'''<font color="#0000FF">decal_BSL_name</font>'''</Tag>
                 <Flags>8</Flags>
                 <Flags>8</Flags>
                 <Decal>
                 <Decal>
Line 1,980: Line 1,978:
: '''PPS:''' <DecalWrapAngle> (in BINA3RAP file) is usually set to 60. For hard edges you might want to increase the value.
: '''PPS:''' <DecalWrapAngle> (in BINA3RAP file) is usually set to 60. For hard edges you might want to increase the value.


[[Image:DecalWrapAngle.JPG|right|thumb|Test for a "hard edge".]]
[[Image:DecalWrapAngle.jpg|right|thumb|Test for a "hard edge".]]


'''wall decals'''
'''wall decals'''
Line 2,000: Line 1,998:
* <HasDecalState>true .. is needed
* <HasDecalState>true .. is needed
* <DisplayType>Decal .. is needed
* <DisplayType>Decal .. is needed
* <TexGeom> .. links to [[#step_3_-_creating_TXMP_file|TXMP file]]
* <TexGeom> .. links to [[#Step_3_-_creating_TXMP_file|TXMP file]]
* <font color="#777777"><Alpha> .. alpha level is ignored when TXMP has adaptiveAlpha flag</font>
* <font color="#777777"><Alpha> .. alpha level is ignored when TXMP has adaptiveAlpha flag</font>
* <font color="#777777"><Tint> .. is ignored by decals</font>
* <font color="#777777"><Tint> .. is ignored by decals</font>
Line 2,041: Line 2,039:
         <Appearance>
         <Appearance>
             '''<DisplayType>Decal</DisplayType>'''
             '''<DisplayType>Decal</DisplayType>'''
             [[#step_3_-_creating_TXMP_file|<TexGeom>]]'''<font color="#AA00AA">animated_texture</font>'''</TexGeom>
             [[#Step_3_-_creating_TXMP_file|<TexGeom>]]'''<font color="#AA00AA">animated_texture</font>'''</TexGeom>
             <Invisible>false</Invisible>
             <Invisible>false</Invisible>
             <IsContrailEmitter>false</IsContrailEmitter>
             <IsContrailEmitter>false</IsContrailEmitter>
Line 2,088: Line 2,086:
: Of course the particle file doesn't have to contain an animated image. It's just meant to remind you that this is an option.
: Of course the particle file doesn't have to contain an animated image. It's just meant to remind you that this is an option.


[[Image:animated_decal.JPG|right|thumb]]
[[Image:animated_decal.jpg|right|thumb]]


  <?xml version="1.0" encoding="utf-8"?>
  <?xml version="1.0" encoding="utf-8"?>
Line 2,220: Line 2,218:
====Extra demo====
====Extra demo====
''For all Gundam Seed fans out there: Phase Shift shades.'' ^_^
''For all Gundam Seed fans out there: Phase Shift shades.'' ^_^
Nope, the texture of an object cannot be replaced by another. But by using three different pairs of shades, we can create this illusion. There are blue shades. A ''pair'' that uses an animated texture. And a red pair. The animated pair is only temporarily used. [http://www.youtube.com/watch?v=XbOb0i5StDk Here's a vid.]
Nope, the texture of an object cannot be replaced by another. But by using three different pairs of shades, we can create this illusion. There are blue shades. A ''pair'' that uses an animated texture. And a red pair. The animated pair is only temporarily used.


  func spawn_karen {
  func spawn_karen {