Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

[Unity C#, Intermediate] [Fulltime available] [Timezone EU] [Woreck#0202]

A topic by Woreck created May 28, 2023 Views: 170 Replies: 2
Viewing posts 1 to 3
(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,

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);
        }
    }
}
Submitted

Have you found a team?