Description
The Tick
method is a public, non-static method of the Editor.BaseDropObject
class. It is used to perform regular updates or checks on the object, typically called once per frame or at regular intervals. This method does not take any parameters and does not return a value.
Usage
To use the Tick
method, ensure that you have an instance of the BaseDropObject
class or a derived class. Call the Tick
method on this instance to perform the necessary updates or checks.
Example
// Example of using the Tick method
public class MyDropObject : Editor.BaseDropObject
{
public void Update()
{
// Call the Tick method to perform regular updates
this.Tick();
}
}