- AE2Unity(After Effects to Unity) https://www.assetstore.unity3d.com/en/#!/content/44618
- DOTween https://assetstore.unity.com/packages/tools/user-tools/animation/dotween-hotween-v2-27676
//Кирилл
| // Fill out your copyright notice in the Description page of Project Settings. | |
| #include "AI/Decorators/BTDecorator_LoopRandomCount.h" | |
| UBTDecorator_LoopRandomCount::UBTDecorator_LoopRandomCount(const FObjectInitializer& ObjectInitializer) | |
| : Super(ObjectInitializer) | |
| { | |
| NodeName = "Loop_RandomCount"; |
| using UnityEngine; | |
| using DG.Tweening; | |
| public class JumpController : MonoBehaviour | |
| { | |
| [SerializeField] private float _moveSpeed = 15f; | |
| [SerializeField] private float _jumpForce = 30f; | |
| [SerializeField] private Transform _cubeObjectTF; |
| // IDOTA2DPC (without any token needed) | |
| https://www.dota2.com/webapi/IDOTA2DPC/GetRealtimeMatchStats/v001?server_steam_id=90124322071664650 // calls in realtime match every 15 seconds | |
| https://www.dota2.com/webapi/IDOTA2DPC/GetPlayerInfo/v001?account_id=234699894 | |
| https://www.dota2.com/webapi/IDOTA2DPC/GetLeagueMatchMinimal/v001?league_id=10681&match_id=4535629696 | |
| https://www.dota2.com/webapi/IDOTA2DPC/GetSingleTeamInfo/v001?team_id=36&get_dpc_info=1 | |
| https://www.dota2.com/webapi/IDOTA2DPC/GetLeagueNodeData/v001?league_id=10681&node_id=186 | |
| https://www.dota2.com/webapi/IDOTA2DPC/GetLeagueInfoList/v001?start_timestamp=1535760000&min_tier=3 | |
| https://www.dota2.com/webapi/IDOTA2DPC/GetRecentAndUpcomingMatches/v001 | |
| // User specific feed, favourites (methods names at the end) |
//Кирилл
| using System; | |
| using System.Collections.Generic; | |
| using UnityEngine; | |
| public static class ExtensionMethods | |
| { | |
| public static int Round(this float value) | |
| { | |
| var decimalpoints = Math.Abs(value - Math.Floor(value)); | |
| return decimalpoints < 0.5 |