mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-07-01 17:41:15 +00:00
Upgraded func_godot to 2025.8.2
This commit is contained in:
parent
ecfd54f3e8
commit
5f4b8c5b4b
82 changed files with 3227 additions and 1939 deletions
|
|
@ -1,8 +1,14 @@
|
|||
@icon("res://addons/func_godot/icons/icon_quake_file.svg")
|
||||
class_name QuakeWadFile
|
||||
extends Resource
|
||||
class_name QuakeWadFile extends Resource
|
||||
## Texture container in the WAD2 or WAD3 format.
|
||||
##
|
||||
## Texture container in the Quake WAD2 or Valve WAD3 format.
|
||||
##
|
||||
## @tutorial(Quake Wiki WAD Article): https://quakewiki.org/wiki/Texture_Wad
|
||||
## @tutorial(Valve Developer Wiki WAD3 Article): https://developer.valvesoftware.com/wiki/WAD
|
||||
|
||||
@export var textures: Dictionary
|
||||
## Collection of [ImageTexture] imported from the WAD file.
|
||||
@export var textures: Dictionary[String, ImageTexture]
|
||||
|
||||
func _init(textures: Dictionary = Dictionary()):
|
||||
self.textures = textures
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue