so I was actually having these problems from the last month but since i spent most of it without even opening my project…but it’s really problematic now…
the problem is that -
- anchors (in the scene view) and anchor options(in the inspector) no longer show up
- attributes like header and range have stopped working although they did work before and i haven’t changed the scripts…an example
the script on this one is just
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class AttributesNotWorking : MonoBehaviour
{
[Header("test")]
public string test;
[Range(0, 5)]
public int testnum;
}
i have no idea why this is happening, and i basically can’t properly set anchors for the ui in my game
Any and all help is appreciated…Thank you!

whoops, that was the problem, i don't know how it accidentally switched to debug (since it's too much to accidentally happen), but it could have been me, since i sometimes use debug inspector to track private variables, so it was very stupid of me to not figure it out. Thank you so much!
– rage_co