C# Класс GameClock, UnderworldExporter

Наследование: MonoBehaviour
Показать файл Открыть проект Примеры использования класса

Открытые свойства

Свойство Тип Описание
clockRate float
clockTime float
day int
hour int
minute int

Открытые методы

Метод Описание
AddNow ( int iDay, int iHour, int iMinute ) : int

Adds the now.

Advance ( ) : void

Move the clock forward 1 hour.

Convert ( int iDay, int iHour, int iMinute ) : int

Turns a day, hour and minute into a number.

ConvertNow ( ) : int

Turns the current day, hour and minute into a number.

DiffNow ( int iDay, int iHour, int iMinute ) : int

Compares the day,hour& minute passed with the current time

Приватные методы

Метод Описание
ClockTick ( ) : void

Clock tick. Activates regeneration, hunger and fatigue methods.

Update ( ) : void

Описание методов

AddNow() публичный статический Метод

Adds the now.
public static AddNow ( int iDay, int iHour, int iMinute ) : int
iDay int I day.
iHour int I hour.
iMinute int I minute.
Результат int

Advance() публичный статический Метод

Move the clock forward 1 hour.
public static Advance ( ) : void
Результат void

Convert() публичный статический Метод

Turns a day, hour and minute into a number.
public static Convert ( int iDay, int iHour, int iMinute ) : int
iDay int I day.
iHour int I hour.
iMinute int I minute.
Результат int

ConvertNow() публичный статический Метод

Turns the current day, hour and minute into a number.
public static ConvertNow ( ) : int
Результат int

DiffNow() публичный статический Метод

Compares the day,hour& minute passed with the current time
public static DiffNow ( int iDay, int iHour, int iMinute ) : int
iDay int I day.
iHour int I hour.
iMinute int I minute.
Результат int

Описание свойств

clockRate публичное свойство

The clock rate. How long is a minute relative to the clockTime
public float clockRate
Результат float

clockTime публичное свойство

How long has passed since the last clock tick
public float clockTime
Результат float

day публичное статическое свойство

What game day we are at.
public static int day
Результат int

hour публичное статическое свойство

What game hour we are at
public static int hour
Результат int

minute публичное статическое свойство

What game minute we are at.
public static int minute
Результат int