< Summary

Class:UserMarkerObject
Assembly:GlobalUsersPositionMarker
File(s):/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/MapRenderer/GlobalUsersPositionMarker/UserMarkerObject.cs
Covered lines:0
Uncovered lines:3
Coverable lines:3
Total lines:20
Line coverage:0% (0 of 3)
Covered branches:0
Total branches:0

File(s)

/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/MapRenderer/GlobalUsersPositionMarker/UserMarkerObject.cs

#LineLine coverage
 1using UnityEngine;
 2using UnityEngine.UI;
 3
 4public class UserMarkerObject : MonoBehaviour
 5{
 6    [SerializeField] Image colorImage = null;
 7    [SerializeField] internal Color sameRealmColor;
 8    [SerializeField] internal Color otherRealmColor;
 9
 10    public Color color
 11    {
 12        set
 13        {
 014            if (colorImage)
 15            {
 016                colorImage.color = value;
 17            }
 018        }
 19    }
 20}

Methods/Properties

color(UnityEngine.Color)