© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
C#C
C#•2y ago•
10 replies
lemon

error CS0506. How to fix?

Im working on a 3D FPS shooter in Unity and the error says that
protected override void Interact()
protected override void Interact()
isn't marked as
override
override
but it is. Here is my script:
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class Keypad : Interactable
{
    // Start is called before the first frame update
    void Start()
    {
        
    }

    // Update is called once per frame
    void Update()
    {
        
    }
    protected override void Interact()
    {
        Debug.Log("Interacted with " + gameObject.name);
    }
}
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class Keypad : Interactable
{
    // Start is called before the first frame update
    void Start()
    {
        
    }

    // Update is called once per frame
    void Update()
    {
        
    }
    protected override void Interact()
    {
        Debug.Log("Interacted with " + gameObject.name);
    }
}
C# banner
C#Join
We are a programming server aimed at coders discussing everything related to C# (CSharp) and .NET.
61,871Members
Resources

Similar Threads

Was this page helpful?
Recent Announcements

Similar Threads

Error idk how to fix
C#CC# / help
3y ago
❔ Error idk how to fix
C#CC# / help
3y ago
How to fix System.ArgumentOutOfRangeException: error?
C#CC# / help
3y ago
1 Error idk how fixe it
C#CC# / help
15mo ago