add default project files

This commit is contained in:
wintea 2024-05-08 18:35:03 +02:00
parent 8e8698513a
commit ac0434aef3
Signed by: in
GPG key ID: 120631A6E5AAE738
7 changed files with 95 additions and 0 deletions

6
.gitignore vendored Normal file
View file

@ -0,0 +1,6 @@
# Project place file
/fitter.rbxlx
# Roblox Studio lock files
/*.rbxlx.lock
/*.rbxl.lock

3
.vscode/settings.json vendored Normal file
View file

@ -0,0 +1,3 @@
{
"stylua.targetReleaseVersion": "latest"
}

9
aftman.toml Normal file
View file

@ -0,0 +1,9 @@
# This file lists tools managed by Aftman, a cross-platform toolchain manager.
# For more information, see https://github.com/LPGhatguy/aftman
# To add a new tool, add an entry to this table.
[tools]
rojo = "rojo-rbx/rojo@7.4.1"
wally = "UpliftGames/wally@0.3.2"
stylua = "johnnymorganz/stylua@0.14.2"
selene = "kampfkarren/selene@0.27.1"

72
default.project.json Normal file
View file

@ -0,0 +1,72 @@
{
"name": "fitter",
"tree": {
"$className": "DataModel",
"ReplicatedStorage": {
"Common": {
"$path": "src/shared"
}
},
"ServerScriptService": {
"Server": {
"$path": "src/server"
}
},
"StarterPlayer": {
"StarterPlayerScripts": {
"Client": {
"$path": "src/client"
}
}
},
"Workspace": {
"$properties": {
"FilteringEnabled": true
},
"Baseplate": {
"$className": "Part",
"$properties": {
"Anchored": true,
"Color": [
0.38823,
0.37254,
0.38823
],
"Locked": true,
"Position": [
0,
-10,
0
],
"Size": [
512,
20,
512
]
}
}
},
"Lighting": {
"$properties": {
"Ambient": [
0,
0,
0
],
"Brightness": 2,
"GlobalShadows": true,
"Outlines": false,
"Technology": "Voxel"
}
},
"SoundService": {
"$properties": {
"RespectFilteringEnabled": true
}
}
}
}

View file

@ -0,0 +1 @@
print("Hello world, from client!")

View file

@ -0,0 +1 @@
print("Hello world, from server!")

3
src/shared/Hello.lua Normal file
View file

@ -0,0 +1,3 @@
return function()
print("Hello, world!")
end