일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- MAC
- 유니티
- gas
- Multiplay
- os
- gameplay tag
- gameplay effect
- 언리얼엔진
- stride
- gravity direction
- gameplay ability system
- CTF
- photon fusion2
- ability task
- dirty cow
- attribute
- 게임 개발
- map design
- ret2libc
- Aegis
- 게임개발
- unity
- local prediction
- rpc
- 언리얼 엔진
- animation
- 메카님
- Replication
- listen server
- Unreal Engine
- Today
- Total
목록unity (24)
Replicated

https://github.com/Lagooneng/DodgeGame GitHub - Lagooneng/DodgeGameContribute to Lagooneng/DodgeGame development by creating an account on GitHub.github.com2024-2학기 단국대학교 Aegis 동아리 알림제용 게임 엔진 : Unity 2022.03.19.f1 기획사방에 날아오는 장애물을 피해야 하고,버틴 시간에 기반하여 참여자 분들께 사탕을 드림

https://github.com/Lagooneng/PocketBall GitHub - Lagooneng/PocketBallContribute to Lagooneng/PocketBall development by creating an account on GitHub.github.com2024-2학기 단국대학교 Aegis 동아리 알림제용 게임 엔진 : Unity 2022.3.19.f1 기획줄무늬 공 +1점, 색깔공 -1점, 검은 공 -3점총 3번 공을 칠 수 있고, 3번 치고 나서 10초 간 기다리고 게임 종료얻은 스코어에 기반하여 알림제에 참여해주신 분들께 사탕을 보상으로 드림

5레벨 단위로 특별한 강화를 할 수 있는 시스템해당 강화는 3개 중 하나를 뽑을 수 있으며, 등급이 존재 등급증강 이름효과일반돈 주고도 못 사~경험치 +30일반배부르게 먹자체력 +100 골드 + 40일반수색조유닛 이동속도 10% 증가 유닛 공격속도 5% 감소일반월급날 발걸음유닛 이동속도 5% 증가 골드 + 40일반돈으로 해결유닛 공격속도 5% 증가 골드 + 20희귀사기증진유닛 공격속도 20% 증가희귀하체 단련유닛 이동속도 20% 증가희귀돈이 최고야!골드 +100일반어셈블유닛 10명 소환전설베테랑유닛 거대화 유닛 공격속도 25% 증가 유닛 이동속도 35% 증가전설재참전부활대기시간 80%감소 using System.Collections;using System.Collections.Generic;using U..

using System.Collections;using System.Collections.Generic;using UnityEngine;using Fusion;namespace Agit.FortressCraft{ public class MonsterSpawner : NetworkBehaviour { [SerializeField] NetworkObject Monster; [SerializeField] float spawnDelay = 10.0f; [SerializeField] int maxSpawnConut = 3; public int SpawnCount { get; set; } private TickTimer spawnTimer; ..

효과음은 애셋 쓰고, 배경음은 AI로 만들었음 1. FxSoundpublic void Attack() { if (attackInputTimer.Expired(Runner) && animState.fullPathHash != animAttack ) { if (Job == JobType.Archer) { archerFire.FireDirection = lastDir; archerFire.SetDamageByLevel(level, Job); if (!BuffAttackTimer.Expired(Runner)) { archerFire.BuffDamage(coefAttack); } Invoke("PlaySound1", 0.4f); } else if (Job == Job..

using Fusion;using UnityEngine;using UnityEngine.UI;using FusionHelpers;namespace Agit.FortressCraft{ public class UpgradeUnit : NetworkBehaviour { public string OwnType { get; set; } private NormalUnitSpawner[] spawners; private NormalUnitSpawner targetSpawner; private Button btnAttackUpgrade; private Button btnDefenseUpgrade; private Button btnTi..

using System.Collections;using System.Collections.Generic;using UnityEngine;namespace Agit.FortressCraft{ public enum MonsterType { NORMAL, SWORD, BOW, MAGIC, NON } public enum BuffType { NON, ATTACK, DEFENSE } [CreateAssetMenu( fileName = "MonsterData", menuName = "Scriptable Object/Monster Data" )] public class Mon..

Monster_FrostLizardMainMonster_FrostLizardController 두 가지 클래스를 통해 AI가 작동 Main : 다음에 어떤 행동을 할 지 정하는 클래스Controller : 실제 해당 행동에 대한 구체적인 구현 Main에서 다음 스테이트 결정하는 건 코루틴으로 구현Controller에서 AI 설정은 FIxedUpdateNetwork에서 구현됨 이유: 컨트롤러의 경우 해당 행동에서 속도 설정 같은 게 필요한 경우가 있음⇒ 한 번 스테이트 정하고 끝나지 않는 행동이 있어서 컨트롤러에서는 코루틴으로 구현 X using System.Collections;using System.Collections.Generic;using UnityEngine;using Fusion;namespa..