This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| float vision_cone = 0.35f; | |
| float sep_radius = 15.f; | |
| int neighbor_count = 0; | |
| float separation_weight = 8.5f; | |
| float alignment_weight = 3.f; | |
| float cohesion_weight = 2.f; | |
| float target_weight = 4.f; | |
| float3 separation_sum = {0}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| typedef struct Entity Entity; | |
| struct Entity | |
| { | |
| // NOTE(rjf): Properties/Generation | |
| u64 properties[(EntityProperty_MAX+63)/64]; | |
| u64 generation; | |
| String8 tag; | |
| // NOTE(rjf): Tree Data | |
| Entity *parent; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| " .ideavimrc is a configuration file for IdeaVim plugin. It uses | |
| " the same commands as the original .vimrc configuration. | |
| " You can find a list of commands here: https://jb.gg/h38q75 | |
| " Find more examples here: https://jb.gg/share-ideavimrc | |
| " --- Enable IdeaVim plugins https://jb.gg/ideavim-plugins | |
| " Highlight copied text | |
| Plug 'machakann/vim-highlightedyank' | |
| " Commentary plugin | |
| Plug 'tpope/vim-commentary' |