Help with entity ModelAttributes.
Help with entity ModelAttributes.
The idea is to create an environment of lava, but still do not quite understand how.
At my level I have put an entity called ModelAttributes , I created a model called Lava.
What else do I have to do?
At my level I have put an entity called ModelAttributes , I created a model called Lava.
What else do I have to do?
http://www.iris3dgames.com Reality Factory Spanish
Re: Help with entity ModelAttributes.
If you want to move through it It has to be flagged as empty,and add a Model State modifier entity to do damage by collision.The EChaos can give some waving distortion to the lava texture to look like the lava is moving.
Re: Help with entity ModelAttributes.
Not understand the translator google does not help me much .
then what I mean is that no entity attributes using the model ( brush ) . ?
then what I mean is that no entity attributes using the model ( brush ) . ?
http://www.iris3dgames.com Reality Factory Spanish
Re: Help with entity ModelAttributes.
Do you mean the model attributes entity does nothing at all?You can also try look the brush properties.
It is supposed to tell the environment settings sounds that when you run on the lava a specific sound can be played.
This way you can have different sounds played as you run on different grounds.
;*********************************************************
;
; environment.ini
;
; defines player movement sounds when in different environments
;
;*********************************************************
[Default]
footsteps\footstep.wav
[Water]
footsteps\w1.wav
footsteps\w2.wav
footsteps\w3.wav
[Lava]
[ToxicGas]
[ZeroG]
[Frozen]
[Sludge]
[SlowMotion]
[FastMotion]
[Ladders]
footsteps\m1.wav
footsteps\m2.wav
[Unclimbable]
It is supposed to tell the environment settings sounds that when you run on the lava a specific sound can be played.
This way you can have different sounds played as you run on different grounds.
;*********************************************************
;
; environment.ini
;
; defines player movement sounds when in different environments
;
;*********************************************************
[Default]
footsteps\footstep.wav
[Water]
footsteps\w1.wav
footsteps\w2.wav
footsteps\w3.wav
[Lava]
[ToxicGas]
[ZeroG]
[Frozen]
[Sludge]
[SlowMotion]
[FastMotion]
[Ladders]
footsteps\m1.wav
footsteps\m2.wav
[Unclimbable]
Re: Help with entity ModelAttributes.
Ok, I get it. The attributes of the entity model is to establish sound where the player walks .
My question is that I can not run the company for a gap to establish it with sound wood model. I may be doing wrong?
My question is that I can not run the company for a gap to establish it with sound wood model. I may be doing wrong?
http://www.iris3dgames.com Reality Factory Spanish
Re: Help with entity ModelAttributes.
I am not sure what you are saying ,but no,although the wood sounds should be common,a wood floor attributes has not been added yet.
You can still try play wood sounds for a frozen -for example model attributes model (and tell me if it worked).
I too would like some more model attributes added as a feature request, like :
Wood , Stone, Mud, Acid, Foliage , Twigs, and some spooky like - Bones, Bugs.
It would be cool for the atmosphere if you can get the sounds.
You can still try play wood sounds for a frozen -for example model attributes model (and tell me if it worked).
I too would like some more model attributes added as a feature request, like :
Wood , Stone, Mud, Acid, Foliage , Twigs, and some spooky like - Bones, Bugs.
It would be cool for the atmosphere if you can get the sounds.
Re: Help with entity ModelAttributes.
In my tests of learning, I realize that the model ATTRIBUTES entity is only for hollow models. Where to put it so utomatica on stage and his property is set for example in "Water," the character to be walked in contact with the ground heard the steps, but if this character jump, the sound of water is heard.
No achievement yet understand this at all.
No achievement yet understand this at all.
http://www.iris3dgames.com Reality Factory Spanish
Re: Help with entity ModelAttributes.
Did you already try the liquid entity.which can play water sounds as you contact the water model brush?
Re: Help with entity ModelAttributes.
I can not make this work .
I need that when you stand above the lava, its attribute decienda health. What am I doing wrong?
http://www.iris3dgames.com Reality Factory Spanish
Re: Help with entity ModelAttributes.
No change health as soon as this player on lava. Modify attribute the entity does not work here .
http://www.iris3dgames.com Reality Factory Spanish
Re: Help with entity ModelAttributes.
Ok, no problem.
Now my concern , as I do to move the texture of a mild form of the model that represents Lava.
Code: Select all
// Orden de actualizacion.
Update[()
{
Jugador.SetAttribute("SaludPawn",Jugador.GetAttribute("SaludPawn","Jugador"),"Player");
Gorra.LuzLinterna(); // Encender y apagar linterna.
Jugador.RotacionPersonaje(); // Rotando personaje.
Jugador.MovimientoPersonaje(); // Movimiento personaje.
Jugador.AnimandoPersonaje(); // Animaciones personaje.
// Here pawn walk on Lava
if(GetEventState("LavaDanger"))
{
ModifyAttribute("SaludPawn", -1, "Jugador");
}
}]
http://www.iris3dgames.com Reality Factory Spanish
Re: Help with entity ModelAttributes.
Add the lava box world model to a liquid Entity and set the DamageIn = true yo make the model damage the player.
In other cases you use a modelstatemodifier which is that make a world model do damage to the player.
In other cases you use a modelstatemodifier which is that make a world model do damage to the player.