Skip to content
This repository was archived by the owner on Jul 4, 2026. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
50 commits
Select commit Hold shift + click to select a range
c4b5d01
Create LICENSE
Earu Nov 22, 2021
d496e4a
Ownership tweaks, and prevent gravgun pickup of the wheel and or seat…
Earu Nov 23, 2021
f048447
Stability tweaks and better exit of the vehicle
Earu Nov 23, 2021
98e1292
Add turbo
Earu Nov 23, 2021
325e87a
Stability tweaks, models, materials and WIP of hUD
Earu Nov 24, 2021
2f258f8
assets by henke, sounds etc
Earu Nov 26, 2021
5919a89
update spawnmenu pic
Earu Nov 26, 2021
923840e
even better thumbnail for spawnmenu
Earu Nov 26, 2021
ccba18b
Fix animations when sitting
Earu Nov 26, 2021
5c69e9c
workshop related changes
Earu Nov 26, 2021
e435abf
github workshop CI
Earu Nov 26, 2021
b112980
Add sci-fi dashboard screen
henkeswe Nov 26, 2021
b9fa33d
Allow changing the energy color, and add trails
Earu Nov 26, 2021
82d089a
fix screen uv being flipped
henkeswe Nov 26, 2021
c2ffb86
material improvements/fixes
henkeswe Nov 26, 2021
fd5cb84
faster engine sound
Earu Nov 26, 2021
a900c2c
disable coloring on screen material
henkeswe Nov 26, 2021
18bf28f
Merge branch 'master' of https://github.com/Earu/Crawler into master
henkeswe Nov 26, 2021
195a63d
gizmo model
henkeswe Nov 26, 2021
8d9fd5f
revert engine loop
Earu Nov 26, 2021
784c306
Dashboard
ukgamer Nov 26, 2021
9500c5f
Fix gizmo being drawn in world
ukgamer Nov 26, 2021
254b8ea
fix third person
Earu Nov 26, 2021
559aaa2
Merge branch 'master' of https://github.com/Earu/Crawler
Earu Nov 26, 2021
4260ece
make sitting easier, fix base mdl
Earu Nov 27, 2021
308efd4
Fix a weird problem where the spawner of the crawler could not get int
Earu Nov 27, 2021
54394c6
Stabilize the bike on walls a lot more, more controls while jumping, …
Earu Nov 30, 2021
9c8599e
Call CanProperty for the energy color property
Earu Nov 30, 2021
7a76ae2
move all the entity hooks to global ones
Earu Dec 2, 2021
750bca2
remove debug print
Earu Dec 2, 2021
c4e5f11
Recompiled the bike model to have attachment points for trails
unknao Aug 1, 2023
dd86ac3
Thank you Henke for giving the worst angles on the wheel.
unknao Aug 1, 2023
37c3cdb
Changed the name to be less conflicty, replaced most of the logic
unknao Aug 2, 2023
795e161
Readded sounds & leaning
unknao Aug 2, 2023
1a7a3d7
Partly removed look ahead on traces & added steering wheel animation
unknao Aug 2, 2023
a3e617c
Added a middle trace
unknao Aug 2, 2023
0dcb4e7
Fixed the energy color functionality
unknao Aug 2, 2023
edaef4f
Thrid person camera support & networking of energy colors improvements
unknao Aug 2, 2023
ba421c9
Cleanup
unknao Aug 2, 2023
716e440
Remove the unused base model
unknao Aug 2, 2023
f24f8f4
Merge pull request #1 from unknao/master
Earu Aug 2, 2023
acc398f
Fixed oversight on hover logic & added steering animations to the player
unknao Aug 3, 2023
b885b73
a
unknao Aug 3, 2023
a4c004b
Merge pull request #2 from unknao/master
Earu Aug 3, 2023
cac46fd
fix
Earu Aug 5, 2023
2b1cd6f
IsValid check on the wheel
unknao Aug 5, 2023
66ef8a5
Attempt to create a wheel if there isn't one
unknao Aug 5, 2023
9d51866
Merge pull request #3 from unknao/master
Earu Aug 8, 2023
1a0809d
Switch to using network variables and code cleanup
unknao Dec 29, 2023
40c41c2
Oversight?
unknao Dec 29, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 41 additions & 0 deletions .github/workflows/workshop.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Workshop

on:
push:
branches: [ master ]
workflow_dispatch:

jobs:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
linter:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2

- name: GLua Linter
uses: TASSIA710/action-glua-lint@v1.1.4
with:
lint_maxScopeDepth: 99
lint_deprecated: false
lint_emptyBlocks: false
lint_unusedParameters: false
lint_unusedLoopVars: false
lint_shadowing: false
lint_inconsistentVariableStyle: false

# Creates a GMA and publishes it to the Steam Workshop
workshop-publish:
needs: linter
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Publish to Steam Workshop
uses: Earu/GSW-action@V2.1
with:
account-name: ${{secrets.STEAM_NAME}}
account-password: ${{secrets.STEAM_PASSWORD}}
workshop-id: '2664712820'
addon-path: ${{env.GITHUB_WORKSPACE}}
489 changes: 489 additions & 0 deletions LICENSE.md

Large diffs are not rendered by default.

14 changes: 14 additions & 0 deletions addon.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"title" : "THE Crawler",
"type" : "Vehicle",
"tags" : [ "fun", "roleplay" ],
"ignore" :
[
"*.psd",
"*.vcproj",
"*.svn*",
".git/*",
"*.md",
"*.yml"
]
}
Loading