My original idea was to use some 'cricket' sounds, and have them play all around the player at random and preferably not-too-frequent intervals.
The first thing I tried was creating a special 'grass' ODF that played cricket sounds as its ambientSound
Code: Select all
[GameObjectClass]
geometryName = "mograss01.xsi"
classLabel = "i76building"
collisionRadius = 1.0
scrapCost = 0
scrapValue = 0
maxHealth = 1000
maxAmmo = 0
unitName = "i76building"
heatSignature = 0.1
imageSignature = 1.0
radarSignature = 0.2
explosionName = "xplnxpl"
canDetect = 0
canInteract = 0
canSnipe = 0
powerCost = 0
lightingType = 1
[BuildingClass]
soundAmbient = "vsenvcrickets.wav"
My second and likely better idea is to use a weaponMine that fires a 'null' ordnance with the cricket sound as it's shotSound. However, I would like the weaponMine to be visible in the editor, but invisible outside of the editor -- as well as being ignored by the AI. How would I accomplish that? Or is there a better way to do things?