Skip to content

Commit

Permalink
Merge pull request #303 from kookmin-sw/feature/pages
Browse files Browse the repository at this point in the history
Feature/pages 업데이트
  • Loading branch information
bryanjang authored May 24, 2024
2 parents b9fd87c + f6838da commit c9bbbcd
Show file tree
Hide file tree
Showing 86 changed files with 4,876 additions and 870 deletions.
Binary file modified .DS_Store
Binary file not shown.
14 changes: 14 additions & 0 deletions Assets/MonsterCollider.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class MonsterCollider : MonoBehaviour
{
void OnCollisionEnter(Collision collision)
{
if (collision.gameObject.tag == "Player" || collision.gameObject.tag == "Monster")
{
Physics.IgnoreCollision(gameObject.GetComponent<Collider>(), collision.gameObject.GetComponent<Collider>());
}
}
}
11 changes: 11 additions & 0 deletions Assets/MonsterCollider.cs.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,15 @@ MonoBehaviour:
- EnableSpawnerWorkingRPC
- RpcGameOver
- RpcAllDie
- GameStart
- RPCEscapeWin
- RPCOnLightening
- RpcAbandonedItem
- AttackTrig
- SpawnItemAll
- SpawnItemSmall
- RpcAudio
- RpcHit
DisableAutoOpenWizard: 1
ShowSettings: 1
DevRegionSetOnce: 1
Loading

0 comments on commit c9bbbcd

Please sign in to comment.