Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
8 changes: 8 additions & 0 deletions public/data/networking.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"iceServers": [
{ "urls": "stun:stun.l.google.com:19302" },
{ "urls": "stun:stun1.l.google.com:19302" },
{ "urls": "stun:stun2.l.google.com:19302" },
{ "urls": "stun:stun3.l.google.com:19302" }
]
}
6 changes: 3 additions & 3 deletions src/assets/AssetManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -703,7 +703,7 @@ function cloneModel(original: THREE.Object3D, assetId: string): THREE.Object3D {

// Standard materials library
export const Materials = {
// Dominion (Terran-like) faction
// Dominion faction
dominion: {
metal: new THREE.MeshStandardMaterial({
color: 0x6080a0,
Expand Down Expand Up @@ -735,7 +735,7 @@ export const Materials = {
}),
},

// Synthesis (Protoss-like) faction
// Synthesis faction (placeholder)
synthesis: {
crystal: new THREE.MeshStandardMaterial({
color: 0x4080ff,
Expand All @@ -758,7 +758,7 @@ export const Materials = {
}),
},

// Swarm (Zerg-like) faction
// Swarm faction (placeholder)
swarm: {
chitin: new THREE.MeshStandardMaterial({
color: 0x4a3040,
Expand Down
Loading
Loading