Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Woreck

3
Posts
1
Topics
1
Followers
44
Following
A member registered Oct 09, 2019 · View creator page →

Recent community posts

public LateParticipant : MonoBehaviour {
    [Header("Properties")]
    [SerializeField]
    int _teamID;
    [SerializeField]
    bool _foundATeam => _teamID != -1;
    public UnityEvent<int> TeamAssigned;
    public void SetTeamID(int id){
        _teamID = id;
        TeamAssigned?.Invoke(_teamID);
    }
}
[CustomEditor(typeof(LateParticipant))]
public class LateParticipantEditor : Editor{
    int teamID = -1;
    public override OnInspectorGUI(){
        LateParticipant _lp = (LateParticipant)target;
        teamID = EditorGUILayout.IntField("TeamID",teamID);
        if(GUILayout.Button("SetTeam"){
            _lp.SetTeamID(teamID);
        }
    }
}
(2 edits)

Hello there, i am currently searching for a team.

This could be my first jam and i really want to participate so if you kind hearted people want an extra hand for giving life to gameobjects in Unity, you can count on me !

Kind regards,

Hello LYASeek, any chance that you take commissions ?