mirror of
https://github.com/make-42/xyosc
synced 2024-11-22 17:20:09 +01:00
22 lines
471 B
Go
22 lines
471 B
Go
package fonts
|
|
|
|
import (
|
|
"os"
|
|
"xyosc/utils"
|
|
|
|
"github.com/flopp/go-findfont"
|
|
"github.com/hajimehoshi/ebiten/v2/text/v2"
|
|
)
|
|
|
|
var Font *text.GoTextFaceSource
|
|
|
|
func Init() {
|
|
// NOTE: Textures/Fonts MUST be loaded after Window initialization (OpenGL context is required)
|
|
fontPath, err := findfont.Find("SourceHanSansJP-Heavy.otf")
|
|
utils.CheckError(err)
|
|
f, err := os.Open(fontPath)
|
|
utils.CheckError(err)
|
|
Font, err = text.NewGoTextFaceSource(f)
|
|
utils.CheckError(err)
|
|
}
|