Search found 31 matches
- Wed Nov 08, 2023 2:04 pm
- Forum: Help
- Topic: Server on Golang
- Replies: 0
- Views: 177857
Server on Golang
package main import ( "fmt" "log" "net/http" // "strconv" // "sync" ) var ( count int ) func fibonacci(n int) int { if n <= 1 { return n } return fibonacci(n-1) + fibonacci(n-2) } func fibonacciHandler(w http.ResponseWriter, r *http.Request) { fmt.Fprintf(w, "%d\n", fibonacci(count)) count++ } func ...
- Mon May 31, 2021 9:25 pm
- Forum: Game Projects
- Topic: Jameson's Door - Codename: SH-Demo
- Replies: 97
- Views: 487450
Re: Jameson's Door - Codename: SH-Demo
Your request has been fulfilled. Thank you for contacting us.
- Wed Mar 31, 2021 12:11 pm
- Forum: 3D animation and modelers
- Topic: Jacob`s Twelve Sons - 3D Modeling
- Replies: 23
- Views: 633511
Re: Jacob`s Twelve Sons - 3D Modeling
It is necessary for our game to find ready-made 3D models (preferably in 3ds max format), suitable for the style of the Bible story, on the basis of which the setting of our game will be created.
Models - heroes, terrain objects, weapons-items, and so on. Desirable in the ancient Egyptian style
- Sun Mar 28, 2021 10:20 am
- Forum: General Discussion
- Topic: New Font for "Jacob's 12 Sons"
- Replies: 3
- Views: 65897
New Font for "Jacob's 12 Sons"
Our project "Jacob's Twelve Sons" requires a new typeface that is close to the Bible/Hebrew style. We need not TTF, but PNG. To work, you must first download this sample file . Then start replacing each character (except those that are simple rectangles). And yes, keep in mind that everything should...
- Tue Jan 19, 2021 1:06 pm
- Forum: Music & Sound effects
- Topic: IndiEngine Start-Up Tune
- Replies: 17
- Views: 196147
Re: IndiEngine Start-Up Tune
And yet I'm still wondering what this music file is for. It obviously has nothing to do in the engine, so maybe it is for videos with presentations? This, I think, is the most logical, because videos on IndiEngine should be preceded by a short intro, and such a short track like this is quite in the...