Jump to content
Search In
  • More options...
Find results that contain...
Find results in...
  • Need help?

    Create a topic in the appropriate section
    Don't write everything in the chat!
  • Take a look at the marketplace

    There you can buy
    everything related to game servers
  • Don't want a ban?

    Please read our rules
    Don't disturb the order!
  • Sell or buy?

    Use services of the guarantor
    We will make your deal safe
  • 0
Sign in to follow this  
onemantooo

Анимация с наивысшим приоритетом

Привет. Есть кастомный симптом, инициализируется на сервере.
 

class PsiLightSymptom extends SymptomBase
{
    const int SYMPTOM_CUSTOM = 17;
	    
	override void OnInit()
	{
		super.OnInit();
		m_Priority = 100;
		m_DestroyOnAnimFinish = true;
		m_SyncToClient = false;
		m_MaxCount = 1;
		m_SymptomType = SymptomTypes.PRIMARY;
		m_ID = SYMPTOM_CUSTOM;
		m_Duration = 17;
	}

	override void OnGetActivatedClient(PlayerBase player) {
		player.GetItemAccessor().HideItemInHands(true);
	}

	override void OnGetDeactivatedClient(PlayerBase player) {
		player.GetItemAccessor().HideItemInHands(false);
	}		
	
    override void OnGetActivatedServer(PlayerBase player)
	{
		int stancemask = DayZPlayerConstants.ROTATION_DISABLE;

		PlayAnimationFB(MyEmote.CMD_MYCUSTOMEMOTE, stancemask, GetDuration());
	}

	override SmptAnimMetaBase SpawnAnimMetaObject()
	{
		return new SmptAnimMetaFB();
	}
}

И есть проблема - если игрок стоит в блоке или например целится из оружия, симптом стартует и мгновенно завершается, без анимации. Завершается понятно почему `m_DestroyOnAnimFinish = true`, непонятно почему не срабатывает анимация и как заставить её работать в любых ситуациях, подскажите пожалуйста. Закину на пиво за решение.

Edited by onemantooo (see edit history)

Share this post


Link to post
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  

×
×
  • Create New...

Important Information

By using this site, you automaticly agree to our Guidelines and Privacy Policy.
We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.