mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-07-04 05:55:47 -07:00
To confirm, use svn diff -r 20355:20356 -x "-w --ignore-eol-style" --ignore-properties | less This was SVN commit r20356.
36 lines
1.1 KiB
Text
36 lines
1.1 KiB
Text
namespace a = "http://relaxng.org/ns/compatibility/annotations/1.0"
|
|
##
|
|
# NOTE: To modify this Relax NG grammar, edit the Relax NG Compact (.rnc) file
|
|
# and use a converter tool like trang to generate the Relax NG XML (.rng) file
|
|
##
|
|
|
|
##
|
|
# Types #
|
|
##
|
|
flag = "0" | "1"
|
|
|
|
start = SoundGroup
|
|
|
|
SoundGroup = element SoundGroup {
|
|
element Gain { xsd:float }? &
|
|
element Looping { flag }? &
|
|
element Omnipresent { flag }? &
|
|
element HeardBy { "owner" }? &
|
|
element Distanceless { flag }? &
|
|
element Pitch { xsd:float }? &
|
|
element Priority { xsd:float }? &
|
|
element RandOrder { flag }? &
|
|
element RandGain { flag }? &
|
|
element GainUpper { xsd:float }? &
|
|
element GainLower { xsd:float }? &
|
|
element RandPitch { flag }? &
|
|
element PitchUpper { xsd:float }? &
|
|
element PitchLower { xsd:float }? &
|
|
element ConeGain { xsd:float }? &
|
|
element ConeInner { xsd:float }? &
|
|
element ConeOuter { xsd:float }? &
|
|
element Threshold { xsd:float }? &
|
|
element Decay { xsd:float }? &
|
|
element Sound { text }+ &
|
|
element Path { text }
|
|
}
|