Skip to content

Commit

Permalink
Version 2.0.1
Browse files Browse the repository at this point in the history
* Remove malfunctioning wirebox() helper from brushes
  • Loading branch information
TeamSpen210 committed Dec 12, 2019
2 parents 38bc56a + 29be898 commit d3bb1a1
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 32 deletions.
64 changes: 33 additions & 31 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,44 +1,46 @@
# Windows image file caches
Thumbs.db
ehthumbs.db

# Folder config file
Desktop.ini

# Recycle Bin used on file shares
$RECYCLE.BIN/

# Windows Installer files
*.cab
*.msi
*.msm
*.msp

# =========================
# Operating System Files
# =========================

# OSX
# =========================

# Windows image file caches
Thumbs.db
ehthumbs.db

# Folder config file
Desktop.ini

# Recycle Bin used on file shares
$RECYCLE.BIN/

# Windows Installer files
*.cab
*.msi
*.msm
*.msp

# =========================
# Operating System Files
# =========================

# OSX
# =========================

.DS_Store
.AppleDouble
.LSOverride

# Icon must ends with two \r.
Icon
Icon


# Thumbnails
._*

# Files that might appear on external disk
.Spotlight-V100
.Trashes

# Portal 2 stuff
*.vmx
*.log
*.prt
*.filelist.txt

# Portal 2 stuff
*.vmx
*.log
*.prt
*.filelist.txt
*.bsp
bin/bee2\.fgd

build/
11 changes: 11 additions & 0 deletions build.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
robocopy hammer build/hammer /S /PURGE
python unify_fgd.py exp p2 srctools -o "build/portal2.fgd"
python unify_fgd.py exp p1 srctools -o "build/portal.fgd"
python unify_fgd.py exp hl2 srctools -o "build/hl2.fgd"
python unify_fgd.py exp ep1 ep2 srctools -o "build/episodic.fgd"
python unify_fgd.py exp csgo srctools -o "build/csgo.fgd"
python unify_fgd.py exp tf2 srctools -o "build/tf2.fgd"
python unify_fgd.py exp asw srctools -o "build/asw.fgd"
python unify_fgd.py exp l4d srctools -o "build/l4d.fgd"
python unify_fgd.py exp l4d2 srctools -o "build/l4d2.fgd"
python unify_fgd.py exp infra srctools -o "build/infra.fgd"
4 changes: 3 additions & 1 deletion fgd/bases/BaseEntityBrush.fgd
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@BaseClass wirebox(mins, maxs) = BaseEntityBrush
@BaseClass = BaseEntityBrush
[
targetname(target_source) : "Name" : : "The name that other entities refer to this entity by."
globalname(string) : "Global Entity Name" : : "Name by which this entity is linked to another entity in a different map. " +
Expand All @@ -22,6 +22,8 @@

linedivider_base(string) readonly : "----------------------------------------------------------------------------------------------------------" : ""

// We could have wirebox() for these, but don't. That messes up if these are unset.
// This is a pretty advanced feature, so it's fine that it has no preview.
mins(vector) : "Minimum Bounding Box Size" : : "Co-ordinate of the minimum bounding box corner, relative to entity origin. " +
"The bounding box is drawn from this corner to the other one. " +
"Requires Bounding Box collisions (solid 2) to be used. " +
Expand Down

0 comments on commit d3bb1a1

Please sign in to comment.