You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi there, I was wondering if you are ok with people using this code in their projects?
I'm a developer learning Unreal and working on a game where I want to simulate flocks of sheep and this would be super helpful. It's a terrific implementation!
The only issue is that there's no license file in the repository -- and no license means no permission by default.
If you meant for it to be open source for anyone to use, adding a license file would give people permission to do so.
And if you're looking for a good open-source license, the MIT license is a standard license that a lot of open source projects use -- to use it just edit the year and your name, and commit it as ./LICENSE.md in the repo.
MIT License
Copyright (c) [year] [fullname]
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
The text was updated successfully, but these errors were encountered:
Hi there, I was wondering if you are ok with people using this code in their projects?
I'm a developer learning Unreal and working on a game where I want to simulate flocks of sheep and this would be super helpful. It's a terrific implementation!
The only issue is that there's no license file in the repository -- and no license means no permission by default.
If you meant for it to be open source for anyone to use, adding a license file would give people permission to do so.
Github has simple instructions on how to add a license to the repo (you just add a
LICENSE.md
file at the root)And if you're looking for a good open-source license, the MIT license is a standard license that a lot of open source projects use -- to use it just edit the year and your name, and commit it as
./LICENSE.md
in the repo.The text was updated successfully, but these errors were encountered: